From ed7912129f8ac33001defd32d7953bc54709be50 Mon Sep 17 00:00:00 2001 From: Julio Cesar Date: Wed, 20 Aug 2025 08:13:18 +0200 Subject: [PATCH] Initial commit --- .gitignore | 3 + README.md | 39 + env.d.ts | 1 + eslint.config.ts | 24 + index.html | 13 + package.json | 47 + pnpm-lock.yaml | 3614 + public/favicon.ico | Bin 0 -> 4286 bytes src/App.vue | 9 + src/assets/base.css | 86 + src/assets/logo.svg | 1 + src/assets/main.css | 54 + src/components/icons/IconCommunity.vue | 12 + src/components/icons/IconDocumentation.vue | 12 + src/components/icons/IconEcosystem.vue | 12 + src/components/icons/IconSupport.vue | 12 + src/components/icons/IconTooling.vue | 19 + src/components/map/MapLibre.vue | 212 + src/components/map/RawMapLibre.vue | 288 + src/composables/useMeters.ts | 93 + src/main.ts | 11 + src/stores/counter.ts | 12 + src/views/MapView.vue | 67 + test-backend/README.md | 44 + test-backend/app.ts | 80 + test-backend/generate_meters.js | 266 + test-backend/package-lock.json | 1534 + test-backend/package.json | 25 + test-backend/pnpm-lock.yaml | 1001 + test-backend/sa.json | 9535 + test-backend/saudi_meters.json | 320005 ++++++++++++++++++ test-backend/tsconfig.json | 34 + tsconfig.app.json | 23 + tsconfig.json | 11 + tsconfig.node.json | 19 + types/index.ts | 6 + types/meters.ts | 28 + vite.config.ts | 16 + 38 files changed, 337268 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 env.d.ts create mode 100644 eslint.config.ts create mode 100644 index.html create mode 100644 package.json create mode 100644 pnpm-lock.yaml create mode 100644 public/favicon.ico create mode 100644 src/App.vue create mode 100644 src/assets/base.css create mode 100644 src/assets/logo.svg create mode 100644 src/assets/main.css create mode 100644 src/components/icons/IconCommunity.vue create mode 100644 src/components/icons/IconDocumentation.vue create mode 100644 src/components/icons/IconEcosystem.vue create mode 100644 src/components/icons/IconSupport.vue create mode 100644 src/components/icons/IconTooling.vue create mode 100644 src/components/map/MapLibre.vue create mode 100644 src/components/map/RawMapLibre.vue create mode 100644 src/composables/useMeters.ts create mode 100644 src/main.ts create mode 100644 src/stores/counter.ts create mode 100644 src/views/MapView.vue create mode 100644 test-backend/README.md create mode 100644 test-backend/app.ts create mode 100644 test-backend/generate_meters.js create mode 100644 test-backend/package-lock.json create mode 100644 test-backend/package.json create mode 100644 test-backend/pnpm-lock.yaml create mode 100644 test-backend/sa.json create mode 100644 test-backend/saudi_meters.json create mode 100644 test-backend/tsconfig.json create mode 100644 tsconfig.app.json create mode 100644 tsconfig.json create mode 100644 tsconfig.node.json create mode 100644 types/index.ts create mode 100644 types/meters.ts create mode 100644 vite.config.ts diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ba08339 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +**/node_modules +**/dist +**/build \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..6b0bd60 --- /dev/null +++ b/README.md @@ -0,0 +1,39 @@ +# vite-project + +This template should help get you started developing with Vue 3 in Vite. + +## Recommended IDE Setup + +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). + +## Type Support for `.vue` Imports in TS + +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. + +## Customize configuration + +See [Vite Configuration Reference](https://vite.dev/config/). + +## Project Setup + +```sh +pnpm install +``` + +### Compile and Hot-Reload for Development + +```sh +pnpm dev +``` + +### Type-Check, Compile and Minify for Production + +```sh +pnpm build +``` + +### Lint with [ESLint](https://eslint.org/) + +```sh +pnpm lint +``` diff --git a/env.d.ts b/env.d.ts new file mode 100644 index 0000000..11f02fe --- /dev/null +++ b/env.d.ts @@ -0,0 +1 @@ +/// diff --git a/eslint.config.ts b/eslint.config.ts new file mode 100644 index 0000000..1bbd212 --- /dev/null +++ b/eslint.config.ts @@ -0,0 +1,24 @@ +import { globalIgnores } from 'eslint/config' +import { defineConfigWithVueTs, vueTsConfigs } from '@vue/eslint-config-typescript' +import pluginVue from 'eslint-plugin-vue' +import pluginOxlint from 'eslint-plugin-oxlint' +import skipFormatting from '@vue/eslint-config-prettier/skip-formatting' + +// To allow more languages other than `ts` in `.vue` files, uncomment the following lines: +// import { configureVueProject } from '@vue/eslint-config-typescript' +// configureVueProject({ scriptLangs: ['ts', 'tsx'] }) +// More info at https://github.com/vuejs/eslint-config-typescript/#advanced-setup + +export default defineConfigWithVueTs( + { + name: 'app/files-to-lint', + files: ['**/*.{ts,mts,tsx,vue}'], + }, + + globalIgnores(['**/dist/**', '**/dist-ssr/**', '**/coverage/**']), + + pluginVue.configs['flat/essential'], + vueTsConfigs.recommended, + ...pluginOxlint.configs['flat/recommended'], + skipFormatting, +) diff --git a/index.html b/index.html new file mode 100644 index 0000000..9e5fc8f --- /dev/null +++ b/index.html @@ -0,0 +1,13 @@ + + + + + + + Vite App + + +
+ + + diff --git a/package.json b/package.json new file mode 100644 index 0000000..082a3bf --- /dev/null +++ b/package.json @@ -0,0 +1,47 @@ +{ + "name": "maplibre_map_poc", + "version": "0.0.1", + "private": true, + "type": "module", + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "scripts": { + "dev": "vite", + "build": "run-p type-check \"build-only {@}\" --", + "preview": "vite preview", + "build-only": "vite build", + "type-check": "vue-tsc --build", + "lint:oxlint": "oxlint . --fix -D correctness --ignore-path .gitignore", + "lint:eslint": "eslint . --fix", + "lint": "run-s lint:*", + "format": "prettier --write src/" + }, + "dependencies": { + "@indoorequal/vue-maplibre-gl": "8.4.1", + "maplibre-gl": "5.6.2", + "pinia": "3.0.3", + "vue": "3.5.18" + }, + "devDependencies": { + "@prettier/plugin-oxc": "0.0.4", + "@tsconfig/node22": "22.0.2", + "@types/maplibre-gl": "^1.14.0", + "@types/node": "24.2.1", + "@vitejs/plugin-vue": "6.0.1", + "@vue/eslint-config-prettier": "10.2.0", + "@vue/eslint-config-typescript": "14.6.0", + "@vue/tsconfig": "0.7.0", + "eslint": "9.33.0", + "eslint-plugin-oxlint": "1.11.1", + "eslint-plugin-vue": "10.4.0", + "jiti": "2.5.1", + "npm-run-all2": "8.0.4", + "oxlint": "1.11.1", + "prettier": "3.6.2", + "typescript": "5.9.2", + "vite": "npm:rolldown-vite@latest", + "vite-plugin-vue-devtools": "8.0.0", + "vue-tsc": "3.0.5" + } +} \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 0000000..3339bf7 --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,3614 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + '@indoorequal/vue-maplibre-gl': + specifier: 8.4.1 + version: 8.4.1(maplibre-gl@5.6.2)(vue@3.5.18(typescript@5.9.2)) + maplibre-gl: + specifier: 5.6.2 + version: 5.6.2 + pinia: + specifier: 3.0.3 + version: 3.0.3(typescript@5.9.2)(vue@3.5.18(typescript@5.9.2)) + vue: + specifier: 3.5.18 + version: 3.5.18(typescript@5.9.2) + devDependencies: + '@prettier/plugin-oxc': + specifier: 0.0.4 + version: 0.0.4 + '@tsconfig/node22': + specifier: 22.0.2 + version: 22.0.2 + '@types/maplibre-gl': + specifier: ^1.14.0 + version: 1.14.0 + '@types/node': + specifier: 24.2.1 + version: 24.2.1 + '@vitejs/plugin-vue': + specifier: 6.0.1 + version: 6.0.1(rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1))(vue@3.5.18(typescript@5.9.2)) + '@vue/eslint-config-prettier': + specifier: 10.2.0 + version: 10.2.0(eslint@9.33.0(jiti@2.5.1))(prettier@3.6.2) + '@vue/eslint-config-typescript': + specifier: 14.6.0 + version: 14.6.0(eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.39.1(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1))(vue-eslint-parser@10.2.0(eslint@9.33.0(jiti@2.5.1))))(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2) + '@vue/tsconfig': + specifier: 0.7.0 + version: 0.7.0(typescript@5.9.2)(vue@3.5.18(typescript@5.9.2)) + eslint: + specifier: 9.33.0 + version: 9.33.0(jiti@2.5.1) + eslint-plugin-oxlint: + specifier: 1.11.1 + version: 1.11.1 + eslint-plugin-vue: + specifier: 10.4.0 + version: 10.4.0(@typescript-eslint/parser@8.39.1(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1))(vue-eslint-parser@10.2.0(eslint@9.33.0(jiti@2.5.1))) + jiti: + specifier: 2.5.1 + version: 2.5.1 + npm-run-all2: + specifier: 8.0.4 + version: 8.0.4 + oxlint: + specifier: 1.11.1 + version: 1.11.1 + prettier: + specifier: 3.6.2 + version: 3.6.2 + typescript: + specifier: 5.9.2 + version: 5.9.2 + vite: + specifier: npm:rolldown-vite@latest + version: rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1) + vite-plugin-vue-devtools: + specifier: 8.0.0 + version: 8.0.0(rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1))(vue@3.5.18(typescript@5.9.2)) + vue-tsc: + specifier: 3.0.5 + version: 3.0.5(typescript@5.9.2) + +packages: + + '@ampproject/remapping@2.3.0': + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} + engines: {node: '>=6.0.0'} + + '@babel/code-frame@7.27.1': + resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} + engines: {node: '>=6.9.0'} + + '@babel/compat-data@7.28.0': + resolution: {integrity: sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==} + engines: {node: '>=6.9.0'} + + '@babel/core@7.28.0': + resolution: {integrity: sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==} + engines: {node: '>=6.9.0'} + + '@babel/generator@7.28.0': + resolution: {integrity: sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-annotate-as-pure@7.27.3': + resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-compilation-targets@7.27.2': + resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-create-class-features-plugin@7.27.1': + resolution: {integrity: sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-globals@7.28.0': + resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-member-expression-to-functions@7.27.1': + resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-imports@7.27.1': + resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-transforms@7.27.3': + resolution: {integrity: sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-optimise-call-expression@7.27.1': + resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-plugin-utils@7.27.1': + resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-replace-supers@7.27.1': + resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-skip-transparent-expression-wrappers@7.27.1': + resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-string-parser@7.27.1': + resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.27.1': + resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-option@7.27.1': + resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} + engines: {node: '>=6.9.0'} + + '@babel/helpers@7.28.2': + resolution: {integrity: sha512-/V9771t+EgXz62aCcyofnQhGM8DQACbRhvzKFsXKC9QM+5MadF8ZmIm0crDMaz3+o0h0zXfJnd4EhbYbxsrcFw==} + engines: {node: '>=6.9.0'} + + '@babel/parser@7.28.0': + resolution: {integrity: sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/plugin-proposal-decorators@7.28.0': + resolution: {integrity: sha512-zOiZqvANjWDUaUS9xMxbMcK/Zccztbe/6ikvUXaG9nsPH3w6qh5UaPGAnirI/WhIbZ8m3OHU0ReyPrknG+ZKeg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-decorators@7.27.1': + resolution: {integrity: sha512-YMq8Z87Lhl8EGkmb0MwYkt36QnxC+fzCgrl66ereamPlYToRpIk5nUjKUY3QKLWq8mwUB1BgbeXcTJhZOCDg5A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-attributes@7.27.1': + resolution: {integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-meta@7.10.4': + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-jsx@7.27.1': + resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-typescript@7.27.1': + resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-typescript@7.28.0': + resolution: {integrity: sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/template@7.27.2': + resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.28.0': + resolution: {integrity: sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.28.2': + resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==} + engines: {node: '>=6.9.0'} + + '@emnapi/core@1.4.5': + resolution: {integrity: sha512-XsLw1dEOpkSX/WucdqUhPWP7hDxSvZiY+fsUC14h+FtQ2Ifni4znbBt8punRX+Uj2JG/uDb8nEHVKvrVlvdZ5Q==} + + '@emnapi/runtime@1.4.5': + resolution: {integrity: sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==} + + '@emnapi/wasi-threads@1.0.4': + resolution: {integrity: sha512-PJR+bOmMOPH8AtcTGAyYNiuJ3/Fcoj2XN/gBEWzDIKh254XO+mM9XoXHk5GNEhodxeMznbg7BlRojVbKN+gC6g==} + + '@eslint-community/eslint-utils@4.7.0': + resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + + '@eslint-community/regexpp@4.12.1': + resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + '@eslint/config-array@0.21.0': + resolution: {integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/config-helpers@0.3.1': + resolution: {integrity: sha512-xR93k9WhrDYpXHORXpxVL5oHj3Era7wo6k/Wd8/IsQNnZUTzkGS29lyn3nAT05v6ltUuTFVCCYDEGfy2Or/sPA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.15.2': + resolution: {integrity: sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/eslintrc@3.3.1': + resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/js@9.33.0': + resolution: {integrity: sha512-5K1/mKhWaMfreBGJTwval43JJmkip0RmM+3+IuqupeSKNC/Th2Kc7ucaq5ovTSra/OOKB9c58CGSz3QMVbWt0A==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/object-schema@2.1.6': + resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/plugin-kit@0.3.5': + resolution: {integrity: sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@humanfs/core@0.19.1': + resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} + engines: {node: '>=18.18.0'} + + '@humanfs/node@0.16.6': + resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} + engines: {node: '>=18.18.0'} + + '@humanwhocodes/module-importer@1.0.1': + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + + '@humanwhocodes/retry@0.3.1': + resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} + engines: {node: '>=18.18'} + + '@humanwhocodes/retry@0.4.3': + resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} + engines: {node: '>=18.18'} + + '@indoorequal/vue-maplibre-gl@8.4.1': + resolution: {integrity: sha512-K8tu+/RuRH0XkwDMzPERsn34q0QwSE99BqR2fkPMq7k/HrXY9xp9nrjAHra+sDVAAVLV1hgk4l3bnh0/i6UPMA==} + engines: {node: '>=18'} + peerDependencies: + maplibre-gl: ^5.0.0 + vue: ^3.4.18 + + '@jridgewell/gen-mapping@0.3.12': + resolution: {integrity: sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/sourcemap-codec@1.5.4': + resolution: {integrity: sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==} + + '@jridgewell/trace-mapping@0.3.29': + resolution: {integrity: sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==} + + '@mapbox/geojson-rewind@0.5.2': + resolution: {integrity: sha512-tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA==} + hasBin: true + + '@mapbox/jsonlint-lines-primitives@2.0.2': + resolution: {integrity: sha512-rY0o9A5ECsTQRVhv7tL/OyDpGAoUB4tTvLiW1DSzQGq4bvTPhNw1VpSNjDJc5GFZ2XuyOtSWSVN05qOtcD71qQ==} + engines: {node: '>= 0.6'} + + '@mapbox/point-geometry@1.1.0': + resolution: {integrity: sha512-YGcBz1cg4ATXDCM/71L9xveh4dynfGmcLDqufR+nQQy3fKwsAZsWd/x4621/6uJaeB9mwOHE6hPeDgXz9uViUQ==} + + '@mapbox/tiny-sdf@2.0.7': + resolution: {integrity: sha512-25gQLQMcpivjOSA40g3gO6qgiFPDpWRoMfd+G/GoppPIeP6JDaMMkMrEJnMZhKyyS6iKwVt5YKu02vCUyJM3Ug==} + + '@mapbox/unitbezier@0.0.1': + resolution: {integrity: sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==} + + '@mapbox/vector-tile@2.0.4': + resolution: {integrity: sha512-AkOLcbgGTdXScosBWwmmD7cDlvOjkg/DetGva26pIRiZPdeJYjYKarIlb4uxVzi6bwHO6EWH82eZ5Nuv4T5DUg==} + + '@mapbox/whoots-js@3.1.0': + resolution: {integrity: sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q==} + engines: {node: '>=6.0.0'} + + '@maplibre/maplibre-gl-style-spec@23.3.0': + resolution: {integrity: sha512-IGJtuBbaGzOUgODdBRg66p8stnwj9iDXkgbYKoYcNiiQmaez5WVRfXm4b03MCDwmZyX93csbfHFWEJJYHnn5oA==} + hasBin: true + + '@maplibre/vt-pbf@4.0.3': + resolution: {integrity: sha512-YsW99BwnT+ukJRkseBcLuZHfITB4puJoxnqPVjo72rhW/TaawVYsgQHcqWLzTxqknttYoDpgyERzWSa/XrETdA==} + + '@napi-rs/wasm-runtime@0.2.12': + resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==} + + '@napi-rs/wasm-runtime@1.0.3': + resolution: {integrity: sha512-rZxtMsLwjdXkMUGC3WwsPwLNVqVqnTJT6MNIB6e+5fhMcSCPP0AOsNWuMQ5mdCq6HNjs/ZeWAEchpqeprqBD2Q==} + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@oxc-parser/binding-android-arm64@0.74.0': + resolution: {integrity: sha512-lgq8TJq22eyfojfa2jBFy2m66ckAo7iNRYDdyn9reXYA3I6Wx7tgGWVx1JAp1lO+aUiqdqP/uPlDaETL9tqRcg==} + engines: {node: '>=20.0.0'} + cpu: [arm64] + os: [android] + + '@oxc-parser/binding-darwin-arm64@0.74.0': + resolution: {integrity: sha512-xbY/io/hkARggbpYEMFX6CwFzb7f4iS6WuBoBeZtdqRWfIEi7sm/uYWXfyVeB8uqOATvJ07WRFC2upI8PSI83g==} + engines: {node: '>=20.0.0'} + cpu: [arm64] + os: [darwin] + + '@oxc-parser/binding-darwin-x64@0.74.0': + resolution: {integrity: sha512-FIj2gAGtFaW0Zk+TnGyenMUoRu1ju+kJ/h71D77xc1owOItbFZFGa+4WSVck1H8rTtceeJlK+kux+vCjGFCl9Q==} + engines: {node: '>=20.0.0'} + cpu: [x64] + os: [darwin] + + '@oxc-parser/binding-freebsd-x64@0.74.0': + resolution: {integrity: sha512-W1I+g5TJg0TRRMHgEWNWsTIfe782V3QuaPgZxnfPNmDMywYdtlzllzclBgaDq6qzvZCCQc/UhvNb37KWTCTj8A==} + engines: {node: '>=20.0.0'} + cpu: [x64] + os: [freebsd] + + '@oxc-parser/binding-linux-arm-gnueabihf@0.74.0': + resolution: {integrity: sha512-gxqkyRGApeVI8dgvJ19SYe59XASW3uVxF1YUgkE7peW/XIg5QRAOVTFKyTjI9acYuK1MF6OJHqx30cmxmZLtiQ==} + engines: {node: '>=20.0.0'} + cpu: [arm] + os: [linux] + + '@oxc-parser/binding-linux-arm-musleabihf@0.74.0': + resolution: {integrity: sha512-jpnAUP4Fa93VdPPDzxxBguJmldj/Gpz7wTXKFzpAueqBMfZsy9KNC+0qT2uZ9HGUDMzNuKw0Se3bPCpL/gfD2Q==} + engines: {node: '>=20.0.0'} + cpu: [arm] + os: [linux] + + '@oxc-parser/binding-linux-arm64-gnu@0.74.0': + resolution: {integrity: sha512-fcWyM7BNfCkHqIf3kll8fJctbR/PseL4RnS2isD9Y3FFBhp4efGAzhDaxIUK5GK7kIcFh1P+puIRig8WJ6IMVQ==} + engines: {node: '>=20.0.0'} + cpu: [arm64] + os: [linux] + + '@oxc-parser/binding-linux-arm64-musl@0.74.0': + resolution: {integrity: sha512-AMY30z/C77HgiRRJX7YtVUaelKq1ex0aaj28XoJu4SCezdS8i0IftUNTtGS1UzGjGZB8zQz5SFwVy4dRu4GLwg==} + engines: {node: '>=20.0.0'} + cpu: [arm64] + os: [linux] + + '@oxc-parser/binding-linux-riscv64-gnu@0.74.0': + resolution: {integrity: sha512-/RZAP24TgZo4vV/01TBlzRqs0R7E6xvatww4LnmZEBBulQBU/SkypDywfriFqWuFoa61WFXPV7sLcTjJGjim/w==} + engines: {node: '>=20.0.0'} + cpu: [riscv64] + os: [linux] + + '@oxc-parser/binding-linux-s390x-gnu@0.74.0': + resolution: {integrity: sha512-620J1beNAlGSPBD+Msb3ptvrwxu04B8iULCH03zlf0JSLy/5sqlD6qBs0XUVkUJv1vbakUw1gfVnUQqv0UTuEg==} + engines: {node: '>=20.0.0'} + cpu: [s390x] + os: [linux] + + '@oxc-parser/binding-linux-x64-gnu@0.74.0': + resolution: {integrity: sha512-WBFgQmGtFnPNzHyLKbC1wkYGaRIBxXGofO0+hz1xrrkPgbxbJS1Ukva1EB8sPaVBBQ52Bdc2GjLSp721NWRvww==} + engines: {node: '>=20.0.0'} + cpu: [x64] + os: [linux] + + '@oxc-parser/binding-linux-x64-musl@0.74.0': + resolution: {integrity: sha512-y4mapxi0RGqlp3t6Sm+knJlAEqdKDYrEue2LlXOka/F2i4sRN0XhEMPiSOB3ppHmvK4I2zY2XBYTsX1Fel0fAg==} + engines: {node: '>=20.0.0'} + cpu: [x64] + os: [linux] + + '@oxc-parser/binding-wasm32-wasi@0.74.0': + resolution: {integrity: sha512-yDS9bRDh5ymobiS2xBmjlrGdUuU61IZoJBaJC5fELdYT5LJNBXlbr3Yc6m2PWfRJwkH6Aq5fRvxAZ4wCbkGa8w==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + + '@oxc-parser/binding-win32-arm64-msvc@0.74.0': + resolution: {integrity: sha512-XFWY52Rfb4N5wEbMCTSBMxRkDLGbAI9CBSL24BIDywwDJMl31gHEVlmHdCDRoXAmanCI6gwbXYTrWe0HvXJ7Aw==} + engines: {node: '>=20.0.0'} + cpu: [arm64] + os: [win32] + + '@oxc-parser/binding-win32-x64-msvc@0.74.0': + resolution: {integrity: sha512-1D3x6iU2apLyfTQHygbdaNbX3nZaHu4yaXpD7ilYpoLo7f0MX0tUuoDrqJyJrVGqvyXgc0uz4yXz9tH9ZZhvvg==} + engines: {node: '>=20.0.0'} + cpu: [x64] + os: [win32] + + '@oxc-project/runtime@0.81.0': + resolution: {integrity: sha512-zm/LDVOq9FEmHiuM8zO4DWirv0VP2Tv2VsgaiHby9nvpq+FVrcqNYgv+TysLKOITQXWZj/roluTxFvpkHP0Iuw==} + engines: {node: '>=6.9.0'} + + '@oxc-project/types@0.74.0': + resolution: {integrity: sha512-KOw/RZrVlHGhCXh1RufBFF7Nuo7HdY5w1lRJukM/igIl6x9qtz8QycDvZdzb4qnHO7znrPyo2sJrFJK2eKHgfQ==} + + '@oxc-project/types@0.81.0': + resolution: {integrity: sha512-CnOqkybZK8z6Gx7Wb1qF7AEnSzbol1WwcIzxYOr8e91LytGOjo0wCpgoYWZo8sdbpqX+X+TJayIzo4Pv0R/KjA==} + + '@oxlint-tsgolint/darwin-arm64@0.0.1': + resolution: {integrity: sha512-DhPovgw2MVvQhU4uyrrgBUqRkmh6V66zItbpWu352B0f9LW0tFm2cXcTDR1QkDo1m9B6YV7qR9IPI2/q7gLDeA==} + os: [darwin] + + '@oxlint-tsgolint/darwin-x64@0.0.1': + resolution: {integrity: sha512-/T+STn40ebdHM7Cz6bVITynBHNWnRGKyz8CcbUDdiehhD0CTlwwNeKCKA4beQ1t/Dvc3JG6pV8dwv/2cmd+DYg==} + os: [darwin] + + '@oxlint-tsgolint/linux-arm64@0.0.1': + resolution: {integrity: sha512-xp8KdgxyqLB31ISPep0LDJgyE3ucxcLc8LdlqjO+Z9k2RR0MkFs1bgpXROn5KX1eZGO5OYRdbgVX+s43TI7Dhw==} + os: [linux] + + '@oxlint-tsgolint/linux-x64@0.0.1': + resolution: {integrity: sha512-6OG1DFbg1xP5UmuWynUnVkay5WbH44aiwDhIAIR8+V50Ijzzyx87CGxKbn1k0YsfaQIji5SgZi0WMiJQ5LTR2A==} + os: [linux] + + '@oxlint-tsgolint/win32-arm64@0.0.1': + resolution: {integrity: sha512-szngA1G3b9DyO6NZ7qUBl8EXBt+9F6cLQ4/kdiIUwk+5LELCjFbpg2s7eGPYZaCJjf30Vo9GlTqe5HFjddvrXg==} + os: [win32] + + '@oxlint-tsgolint/win32-x64@0.0.1': + resolution: {integrity: sha512-anzDRE1w3Vl/aSBLiOwnwzz17GJaXJr+X3OTWwwV9cHg+TWEhLpUDo+d2pAoulCHoZTjN/k8A9wHg0IGuqnOfA==} + os: [win32] + + '@oxlint/darwin-arm64@1.11.1': + resolution: {integrity: sha512-/9ohoWJoPHLXDBRQqPn3jIwB2QXt+Pv6dR1r6fmrcm5RiTyqf40zK10gMDl8rbw8ONmzgrevdxweV0iRuC9pcQ==} + cpu: [arm64] + os: [darwin] + + '@oxlint/darwin-x64@1.11.1': + resolution: {integrity: sha512-snwKjdJO+mGwp2xYBxdwJorad4ZVeZDq2FV3ZcgvqCmf6pg+eJdm/jtlfXb44KfEDlBCvMa0zV48bjY+tg31rA==} + cpu: [x64] + os: [darwin] + + '@oxlint/linux-arm64-gnu@1.11.1': + resolution: {integrity: sha512-WI3LcUlowzlu2wQb0XRIq1Zv1AMkQDrU7+zHVtiokFbjyioUcSOomwN+ntlZozPwFRbuLUXL+wq5qePnLhE90Q==} + cpu: [arm64] + os: [linux] + + '@oxlint/linux-arm64-musl@1.11.1': + resolution: {integrity: sha512-Fc4gW7nf8dGOvsvTqIJDCvWiDCxQtnX3KDM69G+0d23ljiXdi2/EEcWNcvobBwi0CqlpO+TdQiRYDLHEJxSRfA==} + cpu: [arm64] + os: [linux] + + '@oxlint/linux-x64-gnu@1.11.1': + resolution: {integrity: sha512-3UNP5PAE/IHWMSfrwybMbjppQXMveFzLMMZjGk8tEAm9aj4yeX6Z3O+ns6fQHStbb6PyrDMncAyNl/qxUfmp7A==} + cpu: [x64] + os: [linux] + + '@oxlint/linux-x64-musl@1.11.1': + resolution: {integrity: sha512-CmRm8rFT6MwKvcpcw1IM+QHtyh3iOKRewJn3VOHYlRzw+VKQuvUbUnWHgROtr6V8UOiRkrSy3Mvo/d5Fc+r/lw==} + cpu: [x64] + os: [linux] + + '@oxlint/win32-arm64@1.11.1': + resolution: {integrity: sha512-htSR1NHMnRV5qXDoZJcFxKObgLyBvA4g9eIhzDTsTyw7e2ZDR/SVOli2IZB31ghCwEYcSV7yoZgfOgjNbgvDJA==} + cpu: [arm64] + os: [win32] + + '@oxlint/win32-x64@1.11.1': + resolution: {integrity: sha512-yjWjx0kf6+osvXdqdkLmSwPxvN9bJ+0sr+KLEgxCAZxfqy9nNTuflIwk6x5sm6lS4+qzCY7RrMYcksQ6Ky+0CA==} + cpu: [x64] + os: [win32] + + '@pkgr/core@0.2.9': + resolution: {integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + + '@polka/url@1.0.0-next.29': + resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==} + + '@prettier/plugin-oxc@0.0.4': + resolution: {integrity: sha512-UGXe+g/rSRbglL0FOJiar+a+nUrst7KaFmsg05wYbKiInGWP6eAj/f8A2Uobgo5KxEtb2X10zeflNH6RK2xeIQ==} + engines: {node: '>=14'} + + '@rolldown/binding-android-arm64@1.0.0-beta.32': + resolution: {integrity: sha512-Gs+313LfR4Ka3hvifdag9r44WrdKQaohya7ZXUXzARF7yx0atzFlVZjsvxtKAw1Vmtr4hB/RjUD1jf73SW7zDw==} + cpu: [arm64] + os: [android] + + '@rolldown/binding-darwin-arm64@1.0.0-beta.32': + resolution: {integrity: sha512-W8oMqzGcI7wKPXUtS3WJNXzbghHfNiuM1UBAGpVb+XlUCgYRQJd2PRGP7D3WGql3rR3QEhUvSyAuCBAftPQw6Q==} + cpu: [arm64] + os: [darwin] + + '@rolldown/binding-darwin-x64@1.0.0-beta.32': + resolution: {integrity: sha512-pM4c4sKUk37noJrnnDkJknLhCsfZu7aWyfe67bD0GQHfzAPjV16wPeD9CmQg4/0vv+5IfHYaa4VE536xbA+W0Q==} + cpu: [x64] + os: [darwin] + + '@rolldown/binding-freebsd-x64@1.0.0-beta.32': + resolution: {integrity: sha512-M8SUgFlYb5kJJWcFC8gUMRiX4WLFxPKMed3SJ2YrxontgIrEcpizPU8nLNVsRYEStoSfKHKExpQw3OP6fm+5bw==} + cpu: [x64] + os: [freebsd] + + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.32': + resolution: {integrity: sha512-FuQpbNC/hE//bvv29PFnk0AtpJzdPdYl5CMhlWPovd9g3Kc3lw9TrEPIbL7gRPUdhKAiq6rVaaGvOnXxsa0eww==} + cpu: [arm] + os: [linux] + + '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.32': + resolution: {integrity: sha512-hRZygRlaGCjcNTNY9GV7dDI18sG1dK3cc7ujHq72LoDad23zFDUGMQjiSxHWK+/r92iMV+j2MiHbvzayxqynsg==} + cpu: [arm64] + os: [linux] + + '@rolldown/binding-linux-arm64-musl@1.0.0-beta.32': + resolution: {integrity: sha512-HzgT6h+CXLs+GKAU0Wvkt3rvcv0CmDBsDjlPhh4GHysOKbG9NjpKYX2zvjx671E9pGbTvcPpwy7gGsy7xpu+8g==} + cpu: [arm64] + os: [linux] + + '@rolldown/binding-linux-x64-gnu@1.0.0-beta.32': + resolution: {integrity: sha512-Ab/wbf6gdzphDbsg51UaxsC93foQ7wxhtg0SVCXd25BrV4MAJ1HoDtKN/f4h0maFmJobkqYub2DlmoasUzkvBg==} + cpu: [x64] + os: [linux] + + '@rolldown/binding-linux-x64-musl@1.0.0-beta.32': + resolution: {integrity: sha512-VoxqGEfh5A1Yx+zBp/FR5QwAbtzbuvky2SVc+ii4g1gLD4zww6mt/hPi5zG+b88zYPFBKHpxMtsz9cWqXU5V5Q==} + cpu: [x64] + os: [linux] + + '@rolldown/binding-openharmony-arm64@1.0.0-beta.32': + resolution: {integrity: sha512-qZ1ViyOUDGbiZrSAJ/FIAhYUElDfVxxFW6DLT/w4KeoZN3HsF4jmRP95mXtl51/oGrqzU9l9Q2f7/P4O/o2ZZA==} + cpu: [arm64] + os: [openharmony] + + '@rolldown/binding-wasm32-wasi@1.0.0-beta.32': + resolution: {integrity: sha512-hEkG3wD+f3wytV0lqwb/uCrXc4r4Ny/DWJFJPfQR3VeMWplhWGgSHNwZc2Q7k86Yi36f9NNzzWmrIuvHI9lCVw==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + + '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.32': + resolution: {integrity: sha512-k3MvDf8SiA7uP2ikP0unNouJ2YCrnwi7xcVW+RDgMp5YXVr3Xu6svmT3HGn0tkCKUuPmf+uy8I5uiHt5qWQbew==} + cpu: [arm64] + os: [win32] + + '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.32': + resolution: {integrity: sha512-wAi/FxGh7arDOUG45UmnXE1sZUa0hY4cXAO2qWAjFa3f7bTgz/BqwJ7XN5SUezvAJPNkME4fEpInfnBvM25a0w==} + cpu: [ia32] + os: [win32] + + '@rolldown/binding-win32-x64-msvc@1.0.0-beta.32': + resolution: {integrity: sha512-Ej0i4PZk8ltblZtzVK8ouaGUacUtxRmTm5S9794mdyU/tYxXjAJNseOfxrnHpMWKjMDrOKbqkPqJ52T9NR4LQQ==} + cpu: [x64] + os: [win32] + + '@rolldown/pluginutils@1.0.0-beta.29': + resolution: {integrity: sha512-NIJgOsMjbxAXvoGq/X0gD7VPMQ8j9g0BiDaNjVNVjvl+iKXxL3Jre0v31RmBYeLEmkbj2s02v8vFTbUXi5XS2Q==} + + '@rolldown/pluginutils@1.0.0-beta.32': + resolution: {integrity: sha512-QReCdvxiUZAPkvp1xpAg62IeNzykOFA6syH2CnClif4YmALN1XKpB39XneL80008UbtMShthSVDKmrx05N1q/g==} + + '@sec-ant/readable-stream@0.4.1': + resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==} + + '@sindresorhus/merge-streams@4.0.0': + resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==} + engines: {node: '>=18'} + + '@tsconfig/node22@22.0.2': + resolution: {integrity: sha512-Kmwj4u8sDRDrMYRoN9FDEcXD8UpBSaPQQ24Gz+Gamqfm7xxn+GBR7ge/Z7pK8OXNGyUzbSwJj+TH6B+DS/epyA==} + + '@tybys/wasm-util@0.10.0': + resolution: {integrity: sha512-VyyPYFlOMNylG45GoAe0xDoLwWuowvf92F9kySqzYh8vmYm7D2u4iUJKa1tOUpS70Ku13ASrOkS4ScXFsTaCNQ==} + + '@types/estree@1.0.8': + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + + '@types/geojson-vt@3.2.5': + resolution: {integrity: sha512-qDO7wqtprzlpe8FfQ//ClPV9xiuoh2nkIgiouIptON9w5jvD/fA4szvP9GBlDVdJ5dldAl0kX/sy3URbWwLx0g==} + + '@types/geojson@7946.0.16': + resolution: {integrity: sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==} + + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + + '@types/maplibre-gl@1.14.0': + resolution: {integrity: sha512-I6ibscT7UdL1oOqqCz9s1gjcolLaUPkHIIfMLusczTvlsMhjORyS6sE1g4V/NESAOL5KhNQX3/31LJH+OCGjkg==} + deprecated: This is a stub types definition. maplibre-gl provides its own type definitions, so you do not need this installed. + + '@types/node@24.2.1': + resolution: {integrity: sha512-DRh5K+ka5eJic8CjH7td8QpYEV6Zo10gfRkjHCO3weqZHWDtAaSTFtl4+VMqOJ4N5jcuhZ9/l+yy8rVgw7BQeQ==} + + '@types/supercluster@7.1.3': + resolution: {integrity: sha512-Z0pOY34GDFl3Q6hUFYf3HkTwKEE02e7QgtJppBt+beEAxnyOpJua+voGFvxINBHa06GwLFFym7gRPY2SiKIfIA==} + + '@typescript-eslint/eslint-plugin@8.39.1': + resolution: {integrity: sha512-yYegZ5n3Yr6eOcqgj2nJH8cH/ZZgF+l0YIdKILSDjYFRjgYQMgv/lRjV5Z7Up04b9VYUondt8EPMqg7kTWgJ2g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@typescript-eslint/parser': ^8.39.1 + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/parser@8.39.1': + resolution: {integrity: sha512-pUXGCuHnnKw6PyYq93lLRiZm3vjuslIy7tus1lIQTYVK9bL8XBgJnCWm8a0KcTtHC84Yya1Q6rtll+duSMj0dg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/project-service@8.39.1': + resolution: {integrity: sha512-8fZxek3ONTwBu9ptw5nCKqZOSkXshZB7uAxuFF0J/wTMkKydjXCzqqga7MlFMpHi9DoG4BadhmTkITBcg8Aybw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/scope-manager@8.39.1': + resolution: {integrity: sha512-RkBKGBrjgskFGWuyUGz/EtD8AF/GW49S21J8dvMzpJitOF1slLEbbHnNEtAHtnDAnx8qDEdRrULRnWVx27wGBw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/tsconfig-utils@8.39.1': + resolution: {integrity: sha512-ePUPGVtTMR8XMU2Hee8kD0Pu4NDE1CN9Q1sxGSGd/mbOtGZDM7pnhXNJnzW63zk/q+Z54zVzj44HtwXln5CvHA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/type-utils@8.39.1': + resolution: {integrity: sha512-gu9/ahyatyAdQbKeHnhT4R+y3YLtqqHyvkfDxaBYk97EcbfChSJXyaJnIL3ygUv7OuZatePHmQvuH5ru0lnVeA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/types@8.39.1': + resolution: {integrity: sha512-7sPDKQQp+S11laqTrhHqeAbsCfMkwJMrV7oTDvtDds4mEofJYir414bYKUEb8YPUm9QL3U+8f6L6YExSoAGdQw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/typescript-estree@8.39.1': + resolution: {integrity: sha512-EKkpcPuIux48dddVDXyQBlKdeTPMmALqBUbEk38McWv0qVEZwOpVJBi7ugK5qVNgeuYjGNQxrrnoM/5+TI/BPw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/utils@8.39.1': + resolution: {integrity: sha512-VF5tZ2XnUSTuiqZFXCZfZs1cgkdd3O/sSYmdo2EpSyDlC86UM/8YytTmKnehOW3TGAlivqTDT6bS87B/GQ/jyg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/visitor-keys@8.39.1': + resolution: {integrity: sha512-W8FQi6kEh2e8zVhQ0eeRnxdvIoOkAp/CPAahcNio6nO9dsIwb9b34z90KOlheoyuVf6LSOEdjlkxSkapNEc+4A==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@vitejs/plugin-vue@6.0.1': + resolution: {integrity: sha512-+MaE752hU0wfPFJEUAIxqw18+20euHHdxVtMvbFcOEpjEyfqXH/5DCoTHiVJ0J29EhTJdoTkjEv5YBKU9dnoTw==} + engines: {node: ^20.19.0 || >=22.12.0} + peerDependencies: + vite: ^5.0.0 || ^6.0.0 || ^7.0.0 + vue: ^3.2.25 + + '@volar/language-core@2.4.22': + resolution: {integrity: sha512-gp4M7Di5KgNyIyO903wTClYBavRt6UyFNpc5LWfyZr1lBsTUY+QrVZfmbNF2aCyfklBOVk9YC4p+zkwoyT7ECg==} + + '@volar/source-map@2.4.22': + resolution: {integrity: sha512-L2nVr/1vei0xKRgO2tYVXtJYd09HTRjaZi418e85Q+QdbbqA8h7bBjfNyPPSsjnrOO4l4kaAo78c8SQUAdHvgA==} + + '@volar/typescript@2.4.22': + resolution: {integrity: sha512-6ZczlJW1/GWTrNnkmZxJp4qyBt/SGVlcTuCWpI5zLrdPdCZsj66Aff9ZsfFaT3TyjG8zVYgBMYPuCm/eRkpcpQ==} + + '@vue/babel-helper-vue-transform-on@1.5.0': + resolution: {integrity: sha512-0dAYkerNhhHutHZ34JtTl2czVQHUNWv6xEbkdF5W+Yrv5pCWsqjeORdOgbtW2I9gWlt+wBmVn+ttqN9ZxR5tzA==} + + '@vue/babel-plugin-jsx@1.5.0': + resolution: {integrity: sha512-mneBhw1oOqCd2247O0Yw/mRwC9jIGACAJUlawkmMBiNmL4dGA2eMzuNZVNqOUfYTa6vqmND4CtOPzmEEEqLKFw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + peerDependenciesMeta: + '@babel/core': + optional: true + + '@vue/babel-plugin-resolve-type@1.5.0': + resolution: {integrity: sha512-Wm/60o+53JwJODm4Knz47dxJnLDJ9FnKnGZJbUUf8nQRAtt6P+undLUAVU3Ha33LxOJe6IPoifRQ6F/0RrU31w==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@vue/compiler-core@3.5.18': + resolution: {integrity: sha512-3slwjQrrV1TO8MoXgy3aynDQ7lslj5UqDxuHnrzHtpON5CBinhWjJETciPngpin/T3OuW3tXUf86tEurusnztw==} + + '@vue/compiler-dom@3.5.18': + resolution: {integrity: sha512-RMbU6NTU70++B1JyVJbNbeFkK+A+Q7y9XKE2EM4NLGm2WFR8x9MbAtWxPPLdm0wUkuZv9trpwfSlL6tjdIa1+A==} + + '@vue/compiler-sfc@3.5.18': + resolution: {integrity: sha512-5aBjvGqsWs+MoxswZPoTB9nSDb3dhd1x30xrrltKujlCxo48j8HGDNj3QPhF4VIS0VQDUrA1xUfp2hEa+FNyXA==} + + '@vue/compiler-ssr@3.5.18': + resolution: {integrity: sha512-xM16Ak7rSWHkM3m22NlmcdIM+K4BMyFARAfV9hYFl+SFuRzrZ3uGMNW05kA5pmeMa0X9X963Kgou7ufdbpOP9g==} + + '@vue/compiler-vue2@2.7.16': + resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==} + + '@vue/devtools-api@7.7.7': + resolution: {integrity: sha512-lwOnNBH2e7x1fIIbVT7yF5D+YWhqELm55/4ZKf45R9T8r9dE2AIOy8HKjfqzGsoTHFbWbr337O4E0A0QADnjBg==} + + '@vue/devtools-core@8.0.0': + resolution: {integrity: sha512-5bPtF0jAFnaGs4C/4+3vGRR5U+cf6Y8UWK0nJflutEDGepHxl5L9JRaPdHQYCUgrzUaf4cY4waNBEEGXrfcs3A==} + peerDependencies: + vue: ^3.0.0 + + '@vue/devtools-kit@7.7.7': + resolution: {integrity: sha512-wgoZtxcTta65cnZ1Q6MbAfePVFxfM+gq0saaeytoph7nEa7yMXoi6sCPy4ufO111B9msnw0VOWjPEFCXuAKRHA==} + + '@vue/devtools-kit@8.0.0': + resolution: {integrity: sha512-b11OeQODkE0bctdT0RhL684pEV2DPXJ80bjpywVCbFn1PxuL3bmMPDoJKjbMnnoWbrnUYXYzFfmMWBZAMhORkQ==} + + '@vue/devtools-shared@7.7.7': + resolution: {integrity: sha512-+udSj47aRl5aKb0memBvcUG9koarqnxNM5yjuREvqwK6T3ap4mn3Zqqc17QrBFTqSMjr3HK1cvStEZpMDpfdyw==} + + '@vue/devtools-shared@8.0.0': + resolution: {integrity: sha512-jrKnbjshQCiOAJanoeJjTU7WaCg0Dz2BUal6SaR6VM/P3hiFdX5Q6Pxl73ZMnrhCxNK9nAg5hvvRGqs+6dtU1g==} + + '@vue/eslint-config-prettier@10.2.0': + resolution: {integrity: sha512-GL3YBLwv/+b86yHcNNfPJxOTtVFJ4Mbc9UU3zR+KVoG7SwGTjPT+32fXamscNumElhcpXW3mT0DgzS9w32S7Bw==} + peerDependencies: + eslint: '>= 8.21.0' + prettier: '>= 3.0.0' + + '@vue/eslint-config-typescript@14.6.0': + resolution: {integrity: sha512-UpiRY/7go4Yps4mYCjkvlIbVWmn9YvPGQDxTAlcKLphyaD77LjIu3plH4Y9zNT0GB4f3K5tMmhhtRhPOgrQ/bQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^9.10.0 + eslint-plugin-vue: ^9.28.0 || ^10.0.0 + typescript: '>=4.8.4' + peerDependenciesMeta: + typescript: + optional: true + + '@vue/language-core@3.0.5': + resolution: {integrity: sha512-gCEjn9Ik7I/seHVNIEipOm8W+f3/kg60e8s1IgIkMYma2wu9ZGUTMv3mSL2bX+Md2L8fslceJ4SU8j1fgSRoiw==} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@vue/reactivity@3.5.18': + resolution: {integrity: sha512-x0vPO5Imw+3sChLM5Y+B6G1zPjwdOri9e8V21NnTnlEvkxatHEH5B5KEAJcjuzQ7BsjGrKtfzuQ5eQwXh8HXBg==} + + '@vue/runtime-core@3.5.18': + resolution: {integrity: sha512-DUpHa1HpeOQEt6+3nheUfqVXRog2kivkXHUhoqJiKR33SO4x+a5uNOMkV487WPerQkL0vUuRvq/7JhRgLW3S+w==} + + '@vue/runtime-dom@3.5.18': + resolution: {integrity: sha512-YwDj71iV05j4RnzZnZtGaXwPoUWeRsqinblgVJwR8XTXYZ9D5PbahHQgsbmzUvCWNF6x7siQ89HgnX5eWkr3mw==} + + '@vue/server-renderer@3.5.18': + resolution: {integrity: sha512-PvIHLUoWgSbDG7zLHqSqaCoZvHi6NNmfVFOqO+OnwvqMz/tqQr3FuGWS8ufluNddk7ZLBJYMrjcw1c6XzR12mA==} + peerDependencies: + vue: 3.5.18 + + '@vue/shared@3.5.18': + resolution: {integrity: sha512-cZy8Dq+uuIXbxCZpuLd2GJdeSO/lIzIspC2WtkqIpje5QyFbvLaI5wZtdUjLHjGZrlVX6GilejatWwVYYRc8tA==} + + '@vue/tsconfig@0.7.0': + resolution: {integrity: sha512-ku2uNz5MaZ9IerPPUyOHzyjhXoX2kVJaVf7hL315DC17vS6IiZRmmCPfggNbU16QTvM80+uYYy3eYJB59WCtvg==} + peerDependencies: + typescript: 5.x + vue: ^3.4.0 + peerDependenciesMeta: + typescript: + optional: true + vue: + optional: true + + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + acorn@8.15.0: + resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} + engines: {node: '>=0.4.0'} + hasBin: true + + ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + + alien-signals@2.0.6: + resolution: {integrity: sha512-P3TxJSe31bUHBiblg59oU1PpaWPtmxF9GhJ/cB7OkgJ0qN/ifFSKUI25/v8ZhsT+lIG6ac8DpTOplXxORX6F3Q==} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + + ansis@4.1.0: + resolution: {integrity: sha512-BGcItUBWSMRgOCe+SVZJ+S7yTRG0eGt9cXAHev72yuGcY23hnLA7Bky5L/xLyPINoSN95geovfBkqoTlNZYa7w==} + engines: {node: '>=14'} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + birpc@2.5.0: + resolution: {integrity: sha512-VSWO/W6nNQdyP520F1mhf+Lc2f8pjGQOtoHHm7Ze8Go1kX7akpVIrtTa0fn+HB0QJEDVacl6aO08YE0PgXfdnQ==} + + boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + + brace-expansion@1.1.12: + resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==} + + brace-expansion@2.0.2: + resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + browserslist@4.25.2: + resolution: {integrity: sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + bundle-name@4.1.0: + resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==} + engines: {node: '>=18'} + + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + caniuse-lite@1.0.30001734: + resolution: {integrity: sha512-uhE1Ye5vgqju6OI71HTQqcBCZrvHugk0MjLak7Q+HfoBgoq5Bi+5YnwjP4fjDgrtYr/l8MVRBvzz9dPD4KyK0A==} + + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + + copy-anything@3.0.5: + resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==} + engines: {node: '>=12.13'} + + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} + + cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + + csstype@3.1.3: + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + + de-indent@1.0.2: + resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} + + debug@4.4.1: + resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + + default-browser-id@5.0.0: + resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==} + engines: {node: '>=18'} + + default-browser@5.2.1: + resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==} + engines: {node: '>=18'} + + define-lazy-prop@3.0.0: + resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} + engines: {node: '>=12'} + + detect-libc@2.0.4: + resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==} + engines: {node: '>=8'} + + earcut@3.0.2: + resolution: {integrity: sha512-X7hshQbLyMJ/3RPhyObLARM2sNxxmRALLKx1+NVFFnQ9gKzmCrxm9+uLIAdBcvc8FNLpctqlQ2V6AE92Ol9UDQ==} + + electron-to-chromium@1.5.200: + resolution: {integrity: sha512-rFCxROw7aOe4uPTfIAx+rXv9cEcGx+buAF4npnhtTqCJk5KDFRnh3+KYj7rdVh6lsFt5/aPs+Irj9rZ33WMA7w==} + + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + error-stack-parser-es@1.0.5: + resolution: {integrity: sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==} + + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + + escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + eslint-config-prettier@10.1.8: + resolution: {integrity: sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + + eslint-plugin-oxlint@1.11.1: + resolution: {integrity: sha512-Qz59xG78oXqv87bWgiY+U+Bp8zQgr8UfI9gHxhha+2VCevYpHYoUQv3GA/7Cn/LyNo9sFDGocuvB5LB3i7yhYQ==} + + eslint-plugin-prettier@5.5.4: + resolution: {integrity: sha512-swNtI95SToIz05YINMA6Ox5R057IMAmWZ26GqPxusAp1TZzj+IdY9tXNWWD3vkF/wEqydCONcwjTFpxybBqZsg==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + '@types/eslint': '>=8.0.0' + eslint: '>=8.0.0' + eslint-config-prettier: '>= 7.0.0 <10.0.0 || >=10.1.0' + prettier: '>=3.0.0' + peerDependenciesMeta: + '@types/eslint': + optional: true + eslint-config-prettier: + optional: true + + eslint-plugin-vue@10.4.0: + resolution: {integrity: sha512-K6tP0dW8FJVZLQxa2S7LcE1lLw3X8VvB3t887Q6CLrFVxHYBXGANbXvwNzYIu6Ughx1bSJ5BDT0YB3ybPT39lw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@typescript-eslint/parser': ^7.0.0 || ^8.0.0 + eslint: ^8.57.0 || ^9.0.0 + vue-eslint-parser: ^10.0.0 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + + eslint-scope@8.4.0: + resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-visitor-keys@4.2.1: + resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint@9.33.0: + resolution: {integrity: sha512-TS9bTNIryDzStCpJN93aC5VRSW3uTx9sClUn4B87pwiCaJh220otoI0X8mJKr+VcPtniMdN8GKjlwgWGUv5ZKA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true + + espree@10.4.0: + resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + esquery@1.6.0: + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} + engines: {node: '>=0.10'} + + esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + + estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + + estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + + execa@9.6.0: + resolution: {integrity: sha512-jpWzZ1ZhwUmeWRhS7Qv3mhpOhLfwI+uAX4e5fOcXqwMR7EcJ0pj2kV1CVzHVMX/LphnKWD3LObjZCoJ71lKpHw==} + engines: {node: ^18.19.0 || >=20.5.0} + + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fast-diff@1.3.0: + resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} + + fast-glob@3.3.3: + resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} + engines: {node: '>=8.6.0'} + + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + + fastq@1.19.1: + resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} + + fdir@6.4.6: + resolution: {integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + + figures@6.1.0: + resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==} + engines: {node: '>=18'} + + file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + + flat-cache@4.0.1: + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} + + flatted@3.3.3: + resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + + geojson-vt@4.0.2: + resolution: {integrity: sha512-AV9ROqlNqoZEIJGfm1ncNjEXfkz2hdFlZf0qkVfmkwdKa8vj7H16YUOT81rJw1rdFhyEDlN2Tds91p/glzbl5A==} + + get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + + get-stream@9.0.1: + resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==} + engines: {node: '>=18'} + + gl-matrix@3.4.4: + resolution: {integrity: sha512-latSnyDNt/8zYUB6VIJ6PCh2jBjJX6gnDsoCZ7LyW7GkqrD51EWwa9qCoGixj8YqBtETQK/xY7OmpTF8xz1DdQ==} + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + + globals@14.0.0: + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} + engines: {node: '>=18'} + + graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + he@1.2.0: + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + hasBin: true + + hookable@5.5.3: + resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} + + human-signals@8.0.1: + resolution: {integrity: sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==} + engines: {node: '>=18.18.0'} + + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + + ignore@7.0.5: + resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==} + engines: {node: '>= 4'} + + import-fresh@3.3.1: + resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} + engines: {node: '>=6'} + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + is-docker@3.0.0: + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + hasBin: true + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-inside-container@1.0.0: + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} + engines: {node: '>=14.16'} + hasBin: true + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-plain-obj@4.1.0: + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} + + is-stream@4.0.1: + resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==} + engines: {node: '>=18'} + + is-unicode-supported@2.1.0: + resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} + engines: {node: '>=18'} + + is-what@4.1.16: + resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==} + engines: {node: '>=12.13'} + + is-wsl@3.1.0: + resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} + engines: {node: '>=16'} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + isexe@3.1.1: + resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==} + engines: {node: '>=16'} + + jiti@2.5.1: + resolution: {integrity: sha512-twQoecYPiVA5K/h6SxtORw/Bs3ar+mLUtoPSc7iMXzQzK8d7eJ/R09wmTwAjiamETn1cXYPGfNnu7DMoHgu12w==} + hasBin: true + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + + jsesc@3.1.0: + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} + engines: {node: '>=6'} + hasBin: true + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-parse-even-better-errors@4.0.0: + resolution: {integrity: sha512-lR4MXjGNgkJc7tkQ97kb2nuEMnNCyU//XYVH0MKTGcXEiSudQ5MKGKen3C5QubYy0vmq+JGitUg92uuywGEwIA==} + engines: {node: ^18.17.0 || >=20.5.0} + + json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + + json-stringify-pretty-compact@4.0.0: + resolution: {integrity: sha512-3CNZ2DnrpByG9Nqj6Xo8vqbjT4F6N+tb4Gb28ESAZjYZ5yqvmc56J+/kuIwkaAMOyblTQhUW7PxMkUb8Q36N3Q==} + + json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + + jsonc-parser@3.3.1: + resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==} + + kdbush@4.0.2: + resolution: {integrity: sha512-WbCVYJ27Sz8zi9Q7Q0xHC+05iwkm3Znipc2XTlrnJbsHMYktW4hPhXUE8Ys1engBrvffoSCqbil1JQAa7clRpA==} + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + kolorist@1.8.0: + resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==} + + levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + + lightningcss-darwin-arm64@1.30.1: + resolution: {integrity: sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [darwin] + + lightningcss-darwin-x64@1.30.1: + resolution: {integrity: sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [darwin] + + lightningcss-freebsd-x64@1.30.1: + resolution: {integrity: sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [freebsd] + + lightningcss-linux-arm-gnueabihf@1.30.1: + resolution: {integrity: sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==} + engines: {node: '>= 12.0.0'} + cpu: [arm] + os: [linux] + + lightningcss-linux-arm64-gnu@1.30.1: + resolution: {integrity: sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + + lightningcss-linux-arm64-musl@1.30.1: + resolution: {integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + + lightningcss-linux-x64-gnu@1.30.1: + resolution: {integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + + lightningcss-linux-x64-musl@1.30.1: + resolution: {integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + + lightningcss-win32-arm64-msvc@1.30.1: + resolution: {integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [win32] + + lightningcss-win32-x64-msvc@1.30.1: + resolution: {integrity: sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [win32] + + lightningcss@1.30.1: + resolution: {integrity: sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==} + engines: {node: '>= 12.0.0'} + + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + + lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + + lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + + magic-string@0.30.17: + resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} + + maplibre-gl@5.6.2: + resolution: {integrity: sha512-SEqYThhUCFf6Lm0TckpgpKnto5u4JsdPYdFJb6g12VtuaFsm3nYdBO+fOmnUYddc8dXihgoGnuXvPPooUcRv5w==} + engines: {node: '>=16.14.0', npm: '>=8.1.0'} + + memorystream@0.3.1: + resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} + engines: {node: '>= 0.10.0'} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + mitt@3.0.1: + resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==} + + mrmime@2.0.1: + resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} + engines: {node: '>=10'} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + muggle-string@0.4.1: + resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==} + + murmurhash-js@1.0.0: + resolution: {integrity: sha512-TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw==} + + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + nanoid@5.1.5: + resolution: {integrity: sha512-Ir/+ZpE9fDsNH0hQ3C68uyThDXzYcim2EqcZ8zn8Chtt1iylPT9xXJB0kPCnqzgcEGikO9RxSrh63MsmVCU7Fw==} + engines: {node: ^18 || >=20} + hasBin: true + + natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + + node-releases@2.0.19: + resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} + + npm-normalize-package-bin@4.0.0: + resolution: {integrity: sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w==} + engines: {node: ^18.17.0 || >=20.5.0} + + npm-run-all2@8.0.4: + resolution: {integrity: sha512-wdbB5My48XKp2ZfJUlhnLVihzeuA1hgBnqB2J9ahV77wLS+/YAJAlN8I+X3DIFIPZ3m5L7nplmlbhNiFDmXRDA==} + engines: {node: ^20.5.0 || >=22.0.0, npm: '>= 10'} + hasBin: true + + npm-run-path@6.0.0: + resolution: {integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==} + engines: {node: '>=18'} + + nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + + ohash@2.0.11: + resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==} + + open@10.2.0: + resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==} + engines: {node: '>=18'} + + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} + + oxc-parser@0.74.0: + resolution: {integrity: sha512-2tDN/ttU8WE6oFh8EzKNam7KE7ZXSG5uXmvX85iNzxdJfMssDWcj3gpYzZi1E04XuE7m3v1dVWl/8BE886vPGw==} + engines: {node: '>=20.0.0'} + + oxlint-tsgolint@0.0.1: + resolution: {integrity: sha512-gH6EpIr2oBVperOONVzTTNYmOu6pYPipVyzWB+CfYO13vH+6O9kINUyG4rr3RXDaKdTx8UvxgRORXdSGH1iydA==} + hasBin: true + + oxlint@1.11.1: + resolution: {integrity: sha512-24c8BHX2deW0H7GAjkHP28+W4P3qO+2l0R/wz8jj+D4Sq/eC+K2Zyu6uN3bVXeHfG3z4U8shWD5hE+yPMisPDA==} + engines: {node: '>=8.*'} + hasBin: true + + p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + + p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + parse-ms@4.0.0: + resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==} + engines: {node: '>=18'} + + path-browserify@1.0.1: + resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} + + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-key@4.0.0: + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} + + pathe@2.0.3: + resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} + + pbf@4.0.1: + resolution: {integrity: sha512-SuLdBvS42z33m8ejRbInMapQe8n0D3vN/Xd5fmWM3tufNgRQFBpaW2YVJxQZV4iPNqb0vEFvssMEo5w9c6BTIA==} + hasBin: true + + perfect-debounce@1.0.0: + resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + picomatch@4.0.3: + resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} + engines: {node: '>=12'} + + pidtree@0.6.0: + resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} + engines: {node: '>=0.10'} + hasBin: true + + pinia@3.0.3: + resolution: {integrity: sha512-ttXO/InUULUXkMHpTdp9Fj4hLpD/2AoJdmAbAeW2yu1iy1k+pkFekQXw5VpC0/5p51IOR/jDaDRfRWRnMMsGOA==} + peerDependencies: + typescript: '>=4.4.4' + vue: ^2.7.0 || ^3.5.11 + peerDependenciesMeta: + typescript: + optional: true + + postcss-selector-parser@6.1.2: + resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} + engines: {node: '>=4'} + + postcss@8.5.6: + resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} + engines: {node: ^10 || ^12 || >=14} + + potpack@2.1.0: + resolution: {integrity: sha512-pcaShQc1Shq0y+E7GqJqvZj8DTthWV1KeHGdi0Z6IAin2Oi3JnLCOfwnCo84qc+HAp52wT9nK9H7FAJp5a44GQ==} + + prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + + prettier-linter-helpers@1.0.0: + resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} + engines: {node: '>=6.0.0'} + + prettier@3.6.2: + resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==} + engines: {node: '>=14'} + hasBin: true + + pretty-ms@9.2.0: + resolution: {integrity: sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==} + engines: {node: '>=18'} + + protocol-buffers-schema@3.6.0: + resolution: {integrity: sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + quickselect@3.0.0: + resolution: {integrity: sha512-XdjUArbK4Bm5fLLvlm5KpTFOiOThgfWWI4axAZDWg4E/0mKdZyI9tNEfds27qCi1ze/vwTR16kvmmGhRra3c2g==} + + read-package-json-fast@4.0.0: + resolution: {integrity: sha512-qpt8EwugBWDw2cgE2W+/3oxC+KTez2uSVR8JU9Q36TXPAGCaozfQUs59v4j4GFpWTaw0i6hAZSvOmu1J0uOEUg==} + engines: {node: ^18.17.0 || >=20.5.0} + + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + resolve-protobuf-schema@2.1.0: + resolution: {integrity: sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==} + + reusify@1.1.0: + resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rfdc@1.4.1: + resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} + + rolldown-vite@7.1.1: + resolution: {integrity: sha512-5aLF5FjaMQuwi3d8xK8HrL4cmN5LGaDrpm9TxdLf6iEGtT1EIBLz8lnRVnTcgsU6wbQuOsptK1Vi4OCHYD08TA==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + peerDependencies: + '@types/node': ^20.19.0 || >=22.12.0 + esbuild: ^0.25.0 + jiti: '>=1.21.0' + less: ^4.0.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + esbuild: + optional: true + jiti: + optional: true + less: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + + rolldown@1.0.0-beta.32: + resolution: {integrity: sha512-vxI2sPN07MMaoYKlFrVva5qZ1Y7DAZkgp7MQwTnyHt4FUMz9Sh+YeCzNFV9JYHI6ZNwoGWLCfCViE3XVsRC1cg==} + hasBin: true + + run-applescript@7.0.0: + resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==} + engines: {node: '>=18'} + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + rw@1.3.3: + resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==} + + semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + + semver@7.7.2: + resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} + engines: {node: '>=10'} + hasBin: true + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + shell-quote@1.8.3: + resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==} + engines: {node: '>= 0.4'} + + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + + sirv@3.0.1: + resolution: {integrity: sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==} + engines: {node: '>=18'} + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + speakingurl@14.0.1: + resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==} + engines: {node: '>=0.10.0'} + + strip-final-newline@4.0.0: + resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==} + engines: {node: '>=18'} + + strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + + supercluster@8.0.1: + resolution: {integrity: sha512-IiOea5kJ9iqzD2t7QJq/cREyLHTtSmUT6gQsweojg9WH2sYJqZK9SswTu6jrscO6D1G5v5vYZ9ru/eq85lXeZQ==} + + superjson@2.2.2: + resolution: {integrity: sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==} + engines: {node: '>=16'} + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + synckit@0.11.11: + resolution: {integrity: sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==} + engines: {node: ^14.18.0 || >=16.0.0} + + tinyglobby@0.2.14: + resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} + engines: {node: '>=12.0.0'} + + tinyqueue@3.0.0: + resolution: {integrity: sha512-gRa9gwYU3ECmQYv3lslts5hxuIa90veaEcxDYuu3QGOIAEM2mOZkVHp48ANJuu1CURtRdHKUBY5Lm1tHV+sD4g==} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + totalist@3.0.1: + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} + engines: {node: '>=6'} + + ts-api-utils@2.1.0: + resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==} + engines: {node: '>=18.12'} + peerDependencies: + typescript: '>=4.8.4' + + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + + type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + + typescript-eslint@8.39.1: + resolution: {integrity: sha512-GDUv6/NDYngUlNvwaHM1RamYftxf782IyEDbdj3SeaIHHv8fNQVRC++fITT7kUJV/5rIA/tkoRSSskt6osEfqg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + + typescript@5.9.2: + resolution: {integrity: sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==} + engines: {node: '>=14.17'} + hasBin: true + + undici-types@7.10.0: + resolution: {integrity: sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==} + + unicorn-magic@0.3.0: + resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==} + engines: {node: '>=18'} + + unplugin-utils@0.2.5: + resolution: {integrity: sha512-gwXJnPRewT4rT7sBi/IvxKTjsms7jX7QIDLOClApuZwR49SXbrB1z2NLUZ+vDHyqCj/n58OzRRqaW+B8OZi8vg==} + engines: {node: '>=18.12.0'} + + update-browserslist-db@1.1.3: + resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + vite-dev-rpc@1.1.0: + resolution: {integrity: sha512-pKXZlgoXGoE8sEKiKJSng4hI1sQ4wi5YT24FCrwrLt6opmkjlqPPVmiPWWJn8M8byMxRGzp1CrFuqQs4M/Z39A==} + peerDependencies: + vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.1 || ^7.0.0-0 + + vite-hot-client@2.1.0: + resolution: {integrity: sha512-7SpgZmU7R+dDnSmvXE1mfDtnHLHQSisdySVR7lO8ceAXvM0otZeuQQ6C8LrS5d/aYyP/QZ0hI0L+dIPrm4YlFQ==} + peerDependencies: + vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0 + + vite-plugin-inspect@11.3.2: + resolution: {integrity: sha512-nzwvyFQg58XSMAmKVLr2uekAxNYvAbz1lyPmCAFVIBncCgN9S/HPM+2UM9Q9cvc4JEbC5ZBgwLAdaE2onmQuKg==} + engines: {node: '>=14'} + peerDependencies: + '@nuxt/kit': '*' + vite: ^6.0.0 || ^7.0.0-0 + peerDependenciesMeta: + '@nuxt/kit': + optional: true + + vite-plugin-vue-devtools@8.0.0: + resolution: {integrity: sha512-9bWQig8UMu3nPbxX86NJv56aelpFYoBHxB5+pxuQz3pa3Tajc1ezRidj/0dnADA4/UHuVIfwIVYHOvMXYcPshg==} + engines: {node: '>=v14.21.3'} + peerDependencies: + vite: ^6.0.0 || ^7.0.0-0 + + vite-plugin-vue-inspector@5.3.2: + resolution: {integrity: sha512-YvEKooQcSiBTAs0DoYLfefNja9bLgkFM7NI2b07bE2SruuvX0MEa9cMaxjKVMkeCp5Nz9FRIdcN1rOdFVBeL6Q==} + peerDependencies: + vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0 + + vscode-uri@3.1.0: + resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==} + + vue-eslint-parser@10.2.0: + resolution: {integrity: sha512-CydUvFOQKD928UzZhTp4pr2vWz1L+H99t7Pkln2QSPdvmURT0MoC4wUccfCnuEaihNsu9aYYyk+bep8rlfkUXw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + + vue-tsc@3.0.5: + resolution: {integrity: sha512-PsTFN9lo1HJCrZw9NoqjYcAbYDXY0cOKyuW2E7naX5jcaVyWpqEsZOHN9Dws5890E8e5SDAD4L4Zam3dxG3/Cw==} + hasBin: true + peerDependencies: + typescript: '>=5.0.0' + + vue@3.5.18: + resolution: {integrity: sha512-7W4Y4ZbMiQ3SEo+m9lnoNpV9xG7QVMLa+/0RFwwiAVkeYoyGXqWE85jabU4pllJNUzqfLShJ5YLptewhCWUgNA==} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + which@5.0.0: + resolution: {integrity: sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==} + engines: {node: ^18.17.0 || >=20.5.0} + hasBin: true + + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + + wsl-utils@0.1.0: + resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==} + engines: {node: '>=18'} + + xml-name-validator@4.0.0: + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + engines: {node: '>=12'} + + yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + + yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + + yoctocolors@2.1.1: + resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==} + engines: {node: '>=18'} + +snapshots: + + '@ampproject/remapping@2.3.0': + dependencies: + '@jridgewell/gen-mapping': 0.3.12 + '@jridgewell/trace-mapping': 0.3.29 + + '@babel/code-frame@7.27.1': + dependencies: + '@babel/helper-validator-identifier': 7.27.1 + js-tokens: 4.0.0 + picocolors: 1.1.1 + + '@babel/compat-data@7.28.0': {} + + '@babel/core@7.28.0': + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.0 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0) + '@babel/helpers': 7.28.2 + '@babel/parser': 7.28.0 + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.0 + '@babel/types': 7.28.2 + convert-source-map: 2.0.0 + debug: 4.4.1 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/generator@7.28.0': + dependencies: + '@babel/parser': 7.28.0 + '@babel/types': 7.28.2 + '@jridgewell/gen-mapping': 0.3.12 + '@jridgewell/trace-mapping': 0.3.29 + jsesc: 3.1.0 + + '@babel/helper-annotate-as-pure@7.27.3': + dependencies: + '@babel/types': 7.28.2 + + '@babel/helper-compilation-targets@7.27.2': + dependencies: + '@babel/compat-data': 7.28.0 + '@babel/helper-validator-option': 7.27.1 + browserslist: 4.25.2 + lru-cache: 5.1.1 + semver: 6.3.1 + + '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.0) + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/traverse': 7.28.0 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-globals@7.28.0': {} + + '@babel/helper-member-expression-to-functions@7.27.1': + dependencies: + '@babel/traverse': 7.28.0 + '@babel/types': 7.28.2 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-imports@7.27.1': + dependencies: + '@babel/traverse': 7.28.0 + '@babel/types': 7.28.2 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.27.3(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/helper-optimise-call-expression@7.27.1': + dependencies: + '@babel/types': 7.28.2 + + '@babel/helper-plugin-utils@7.27.1': {} + + '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/helper-skip-transparent-expression-wrappers@7.27.1': + dependencies: + '@babel/traverse': 7.28.0 + '@babel/types': 7.28.2 + transitivePeerDependencies: + - supports-color + + '@babel/helper-string-parser@7.27.1': {} + + '@babel/helper-validator-identifier@7.27.1': {} + + '@babel/helper-validator-option@7.27.1': {} + + '@babel/helpers@7.28.2': + dependencies: + '@babel/template': 7.27.2 + '@babel/types': 7.28.2 + + '@babel/parser@7.28.0': + dependencies: + '@babel/types': 7.28.2 + + '@babel/plugin-proposal-decorators@7.28.0(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.28.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-typescript@7.28.0(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.0) + transitivePeerDependencies: + - supports-color + + '@babel/template@7.27.2': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/parser': 7.28.0 + '@babel/types': 7.28.2 + + '@babel/traverse@7.28.0': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.0 + '@babel/helper-globals': 7.28.0 + '@babel/parser': 7.28.0 + '@babel/template': 7.27.2 + '@babel/types': 7.28.2 + debug: 4.4.1 + transitivePeerDependencies: + - supports-color + + '@babel/types@7.28.2': + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + + '@emnapi/core@1.4.5': + dependencies: + '@emnapi/wasi-threads': 1.0.4 + tslib: 2.8.1 + optional: true + + '@emnapi/runtime@1.4.5': + dependencies: + tslib: 2.8.1 + optional: true + + '@emnapi/wasi-threads@1.0.4': + dependencies: + tslib: 2.8.1 + optional: true + + '@eslint-community/eslint-utils@4.7.0(eslint@9.33.0(jiti@2.5.1))': + dependencies: + eslint: 9.33.0(jiti@2.5.1) + eslint-visitor-keys: 3.4.3 + + '@eslint-community/regexpp@4.12.1': {} + + '@eslint/config-array@0.21.0': + dependencies: + '@eslint/object-schema': 2.1.6 + debug: 4.4.1 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@eslint/config-helpers@0.3.1': {} + + '@eslint/core@0.15.2': + dependencies: + '@types/json-schema': 7.0.15 + + '@eslint/eslintrc@3.3.1': + dependencies: + ajv: 6.12.6 + debug: 4.4.1 + espree: 10.4.0 + globals: 14.0.0 + ignore: 5.3.2 + import-fresh: 3.3.1 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + + '@eslint/js@9.33.0': {} + + '@eslint/object-schema@2.1.6': {} + + '@eslint/plugin-kit@0.3.5': + dependencies: + '@eslint/core': 0.15.2 + levn: 0.4.1 + + '@humanfs/core@0.19.1': {} + + '@humanfs/node@0.16.6': + dependencies: + '@humanfs/core': 0.19.1 + '@humanwhocodes/retry': 0.3.1 + + '@humanwhocodes/module-importer@1.0.1': {} + + '@humanwhocodes/retry@0.3.1': {} + + '@humanwhocodes/retry@0.4.3': {} + + '@indoorequal/vue-maplibre-gl@8.4.1(maplibre-gl@5.6.2)(vue@3.5.18(typescript@5.9.2))': + dependencies: + maplibre-gl: 5.6.2 + vue: 3.5.18(typescript@5.9.2) + + '@jridgewell/gen-mapping@0.3.12': + dependencies: + '@jridgewell/sourcemap-codec': 1.5.4 + '@jridgewell/trace-mapping': 0.3.29 + + '@jridgewell/resolve-uri@3.1.2': {} + + '@jridgewell/sourcemap-codec@1.5.4': {} + + '@jridgewell/trace-mapping@0.3.29': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.4 + + '@mapbox/geojson-rewind@0.5.2': + dependencies: + get-stream: 6.0.1 + minimist: 1.2.8 + + '@mapbox/jsonlint-lines-primitives@2.0.2': {} + + '@mapbox/point-geometry@1.1.0': {} + + '@mapbox/tiny-sdf@2.0.7': {} + + '@mapbox/unitbezier@0.0.1': {} + + '@mapbox/vector-tile@2.0.4': + dependencies: + '@mapbox/point-geometry': 1.1.0 + '@types/geojson': 7946.0.16 + pbf: 4.0.1 + + '@mapbox/whoots-js@3.1.0': {} + + '@maplibre/maplibre-gl-style-spec@23.3.0': + dependencies: + '@mapbox/jsonlint-lines-primitives': 2.0.2 + '@mapbox/unitbezier': 0.0.1 + json-stringify-pretty-compact: 4.0.0 + minimist: 1.2.8 + quickselect: 3.0.0 + rw: 1.3.3 + tinyqueue: 3.0.0 + + '@maplibre/vt-pbf@4.0.3': + dependencies: + '@mapbox/point-geometry': 1.1.0 + '@mapbox/vector-tile': 2.0.4 + '@types/geojson-vt': 3.2.5 + '@types/supercluster': 7.1.3 + geojson-vt: 4.0.2 + pbf: 4.0.1 + supercluster: 8.0.1 + + '@napi-rs/wasm-runtime@0.2.12': + dependencies: + '@emnapi/core': 1.4.5 + '@emnapi/runtime': 1.4.5 + '@tybys/wasm-util': 0.10.0 + optional: true + + '@napi-rs/wasm-runtime@1.0.3': + dependencies: + '@emnapi/core': 1.4.5 + '@emnapi/runtime': 1.4.5 + '@tybys/wasm-util': 0.10.0 + optional: true + + '@nodelib/fs.scandir@2.1.5': + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + '@nodelib/fs.stat@2.0.5': {} + + '@nodelib/fs.walk@1.2.8': + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.19.1 + + '@oxc-parser/binding-android-arm64@0.74.0': + optional: true + + '@oxc-parser/binding-darwin-arm64@0.74.0': + optional: true + + '@oxc-parser/binding-darwin-x64@0.74.0': + optional: true + + '@oxc-parser/binding-freebsd-x64@0.74.0': + optional: true + + '@oxc-parser/binding-linux-arm-gnueabihf@0.74.0': + optional: true + + '@oxc-parser/binding-linux-arm-musleabihf@0.74.0': + optional: true + + '@oxc-parser/binding-linux-arm64-gnu@0.74.0': + optional: true + + '@oxc-parser/binding-linux-arm64-musl@0.74.0': + optional: true + + '@oxc-parser/binding-linux-riscv64-gnu@0.74.0': + optional: true + + '@oxc-parser/binding-linux-s390x-gnu@0.74.0': + optional: true + + '@oxc-parser/binding-linux-x64-gnu@0.74.0': + optional: true + + '@oxc-parser/binding-linux-x64-musl@0.74.0': + optional: true + + '@oxc-parser/binding-wasm32-wasi@0.74.0': + dependencies: + '@napi-rs/wasm-runtime': 0.2.12 + optional: true + + '@oxc-parser/binding-win32-arm64-msvc@0.74.0': + optional: true + + '@oxc-parser/binding-win32-x64-msvc@0.74.0': + optional: true + + '@oxc-project/runtime@0.81.0': {} + + '@oxc-project/types@0.74.0': {} + + '@oxc-project/types@0.81.0': {} + + '@oxlint-tsgolint/darwin-arm64@0.0.1': + optional: true + + '@oxlint-tsgolint/darwin-x64@0.0.1': + optional: true + + '@oxlint-tsgolint/linux-arm64@0.0.1': + optional: true + + '@oxlint-tsgolint/linux-x64@0.0.1': + optional: true + + '@oxlint-tsgolint/win32-arm64@0.0.1': + optional: true + + '@oxlint-tsgolint/win32-x64@0.0.1': + optional: true + + '@oxlint/darwin-arm64@1.11.1': + optional: true + + '@oxlint/darwin-x64@1.11.1': + optional: true + + '@oxlint/linux-arm64-gnu@1.11.1': + optional: true + + '@oxlint/linux-arm64-musl@1.11.1': + optional: true + + '@oxlint/linux-x64-gnu@1.11.1': + optional: true + + '@oxlint/linux-x64-musl@1.11.1': + optional: true + + '@oxlint/win32-arm64@1.11.1': + optional: true + + '@oxlint/win32-x64@1.11.1': + optional: true + + '@pkgr/core@0.2.9': {} + + '@polka/url@1.0.0-next.29': {} + + '@prettier/plugin-oxc@0.0.4': + dependencies: + oxc-parser: 0.74.0 + + '@rolldown/binding-android-arm64@1.0.0-beta.32': + optional: true + + '@rolldown/binding-darwin-arm64@1.0.0-beta.32': + optional: true + + '@rolldown/binding-darwin-x64@1.0.0-beta.32': + optional: true + + '@rolldown/binding-freebsd-x64@1.0.0-beta.32': + optional: true + + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.32': + optional: true + + '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.32': + optional: true + + '@rolldown/binding-linux-arm64-musl@1.0.0-beta.32': + optional: true + + '@rolldown/binding-linux-x64-gnu@1.0.0-beta.32': + optional: true + + '@rolldown/binding-linux-x64-musl@1.0.0-beta.32': + optional: true + + '@rolldown/binding-openharmony-arm64@1.0.0-beta.32': + optional: true + + '@rolldown/binding-wasm32-wasi@1.0.0-beta.32': + dependencies: + '@napi-rs/wasm-runtime': 1.0.3 + optional: true + + '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.32': + optional: true + + '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.32': + optional: true + + '@rolldown/binding-win32-x64-msvc@1.0.0-beta.32': + optional: true + + '@rolldown/pluginutils@1.0.0-beta.29': {} + + '@rolldown/pluginutils@1.0.0-beta.32': {} + + '@sec-ant/readable-stream@0.4.1': {} + + '@sindresorhus/merge-streams@4.0.0': {} + + '@tsconfig/node22@22.0.2': {} + + '@tybys/wasm-util@0.10.0': + dependencies: + tslib: 2.8.1 + optional: true + + '@types/estree@1.0.8': {} + + '@types/geojson-vt@3.2.5': + dependencies: + '@types/geojson': 7946.0.16 + + '@types/geojson@7946.0.16': {} + + '@types/json-schema@7.0.15': {} + + '@types/maplibre-gl@1.14.0': + dependencies: + maplibre-gl: 5.6.2 + + '@types/node@24.2.1': + dependencies: + undici-types: 7.10.0 + + '@types/supercluster@7.1.3': + dependencies: + '@types/geojson': 7946.0.16 + + '@typescript-eslint/eslint-plugin@8.39.1(@typescript-eslint/parser@8.39.1(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)': + dependencies: + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 8.39.1(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2) + '@typescript-eslint/scope-manager': 8.39.1 + '@typescript-eslint/type-utils': 8.39.1(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2) + '@typescript-eslint/utils': 8.39.1(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2) + '@typescript-eslint/visitor-keys': 8.39.1 + eslint: 9.33.0(jiti@2.5.1) + graphemer: 1.4.0 + ignore: 7.0.5 + natural-compare: 1.4.0 + ts-api-utils: 2.1.0(typescript@5.9.2) + typescript: 5.9.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@8.39.1(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)': + dependencies: + '@typescript-eslint/scope-manager': 8.39.1 + '@typescript-eslint/types': 8.39.1 + '@typescript-eslint/typescript-estree': 8.39.1(typescript@5.9.2) + '@typescript-eslint/visitor-keys': 8.39.1 + debug: 4.4.1 + eslint: 9.33.0(jiti@2.5.1) + typescript: 5.9.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/project-service@8.39.1(typescript@5.9.2)': + dependencies: + '@typescript-eslint/tsconfig-utils': 8.39.1(typescript@5.9.2) + '@typescript-eslint/types': 8.39.1 + debug: 4.4.1 + typescript: 5.9.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/scope-manager@8.39.1': + dependencies: + '@typescript-eslint/types': 8.39.1 + '@typescript-eslint/visitor-keys': 8.39.1 + + '@typescript-eslint/tsconfig-utils@8.39.1(typescript@5.9.2)': + dependencies: + typescript: 5.9.2 + + '@typescript-eslint/type-utils@8.39.1(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)': + dependencies: + '@typescript-eslint/types': 8.39.1 + '@typescript-eslint/typescript-estree': 8.39.1(typescript@5.9.2) + '@typescript-eslint/utils': 8.39.1(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2) + debug: 4.4.1 + eslint: 9.33.0(jiti@2.5.1) + ts-api-utils: 2.1.0(typescript@5.9.2) + typescript: 5.9.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/types@8.39.1': {} + + '@typescript-eslint/typescript-estree@8.39.1(typescript@5.9.2)': + dependencies: + '@typescript-eslint/project-service': 8.39.1(typescript@5.9.2) + '@typescript-eslint/tsconfig-utils': 8.39.1(typescript@5.9.2) + '@typescript-eslint/types': 8.39.1 + '@typescript-eslint/visitor-keys': 8.39.1 + debug: 4.4.1 + fast-glob: 3.3.3 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.7.2 + ts-api-utils: 2.1.0(typescript@5.9.2) + typescript: 5.9.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/utils@8.39.1(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)': + dependencies: + '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.5.1)) + '@typescript-eslint/scope-manager': 8.39.1 + '@typescript-eslint/types': 8.39.1 + '@typescript-eslint/typescript-estree': 8.39.1(typescript@5.9.2) + eslint: 9.33.0(jiti@2.5.1) + typescript: 5.9.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/visitor-keys@8.39.1': + dependencies: + '@typescript-eslint/types': 8.39.1 + eslint-visitor-keys: 4.2.1 + + '@vitejs/plugin-vue@6.0.1(rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1))(vue@3.5.18(typescript@5.9.2))': + dependencies: + '@rolldown/pluginutils': 1.0.0-beta.29 + vite: rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1) + vue: 3.5.18(typescript@5.9.2) + + '@volar/language-core@2.4.22': + dependencies: + '@volar/source-map': 2.4.22 + + '@volar/source-map@2.4.22': {} + + '@volar/typescript@2.4.22': + dependencies: + '@volar/language-core': 2.4.22 + path-browserify: 1.0.1 + vscode-uri: 3.1.0 + + '@vue/babel-helper-vue-transform-on@1.5.0': {} + + '@vue/babel-plugin-jsx@1.5.0(@babel/core@7.28.0)': + dependencies: + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.0) + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.0 + '@babel/types': 7.28.2 + '@vue/babel-helper-vue-transform-on': 1.5.0 + '@vue/babel-plugin-resolve-type': 1.5.0(@babel/core@7.28.0) + '@vue/shared': 3.5.18 + optionalDependencies: + '@babel/core': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@vue/babel-plugin-resolve-type@1.5.0(@babel/core@7.28.0)': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/core': 7.28.0 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/parser': 7.28.0 + '@vue/compiler-sfc': 3.5.18 + transitivePeerDependencies: + - supports-color + + '@vue/compiler-core@3.5.18': + dependencies: + '@babel/parser': 7.28.0 + '@vue/shared': 3.5.18 + entities: 4.5.0 + estree-walker: 2.0.2 + source-map-js: 1.2.1 + + '@vue/compiler-dom@3.5.18': + dependencies: + '@vue/compiler-core': 3.5.18 + '@vue/shared': 3.5.18 + + '@vue/compiler-sfc@3.5.18': + dependencies: + '@babel/parser': 7.28.0 + '@vue/compiler-core': 3.5.18 + '@vue/compiler-dom': 3.5.18 + '@vue/compiler-ssr': 3.5.18 + '@vue/shared': 3.5.18 + estree-walker: 2.0.2 + magic-string: 0.30.17 + postcss: 8.5.6 + source-map-js: 1.2.1 + + '@vue/compiler-ssr@3.5.18': + dependencies: + '@vue/compiler-dom': 3.5.18 + '@vue/shared': 3.5.18 + + '@vue/compiler-vue2@2.7.16': + dependencies: + de-indent: 1.0.2 + he: 1.2.0 + + '@vue/devtools-api@7.7.7': + dependencies: + '@vue/devtools-kit': 7.7.7 + + '@vue/devtools-core@8.0.0(rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1))(vue@3.5.18(typescript@5.9.2))': + dependencies: + '@vue/devtools-kit': 8.0.0 + '@vue/devtools-shared': 8.0.0 + mitt: 3.0.1 + nanoid: 5.1.5 + pathe: 2.0.3 + vite-hot-client: 2.1.0(rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1)) + vue: 3.5.18(typescript@5.9.2) + transitivePeerDependencies: + - vite + + '@vue/devtools-kit@7.7.7': + dependencies: + '@vue/devtools-shared': 7.7.7 + birpc: 2.5.0 + hookable: 5.5.3 + mitt: 3.0.1 + perfect-debounce: 1.0.0 + speakingurl: 14.0.1 + superjson: 2.2.2 + + '@vue/devtools-kit@8.0.0': + dependencies: + '@vue/devtools-shared': 8.0.0 + birpc: 2.5.0 + hookable: 5.5.3 + mitt: 3.0.1 + perfect-debounce: 1.0.0 + speakingurl: 14.0.1 + superjson: 2.2.2 + + '@vue/devtools-shared@7.7.7': + dependencies: + rfdc: 1.4.1 + + '@vue/devtools-shared@8.0.0': + dependencies: + rfdc: 1.4.1 + + '@vue/eslint-config-prettier@10.2.0(eslint@9.33.0(jiti@2.5.1))(prettier@3.6.2)': + dependencies: + eslint: 9.33.0(jiti@2.5.1) + eslint-config-prettier: 10.1.8(eslint@9.33.0(jiti@2.5.1)) + eslint-plugin-prettier: 5.5.4(eslint-config-prettier@10.1.8(eslint@9.33.0(jiti@2.5.1)))(eslint@9.33.0(jiti@2.5.1))(prettier@3.6.2) + prettier: 3.6.2 + transitivePeerDependencies: + - '@types/eslint' + + '@vue/eslint-config-typescript@14.6.0(eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.39.1(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1))(vue-eslint-parser@10.2.0(eslint@9.33.0(jiti@2.5.1))))(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)': + dependencies: + '@typescript-eslint/utils': 8.39.1(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2) + eslint: 9.33.0(jiti@2.5.1) + eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.39.1(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1))(vue-eslint-parser@10.2.0(eslint@9.33.0(jiti@2.5.1))) + fast-glob: 3.3.3 + typescript-eslint: 8.39.1(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2) + vue-eslint-parser: 10.2.0(eslint@9.33.0(jiti@2.5.1)) + optionalDependencies: + typescript: 5.9.2 + transitivePeerDependencies: + - supports-color + + '@vue/language-core@3.0.5(typescript@5.9.2)': + dependencies: + '@volar/language-core': 2.4.22 + '@vue/compiler-dom': 3.5.18 + '@vue/compiler-vue2': 2.7.16 + '@vue/shared': 3.5.18 + alien-signals: 2.0.6 + muggle-string: 0.4.1 + path-browserify: 1.0.1 + picomatch: 4.0.3 + optionalDependencies: + typescript: 5.9.2 + + '@vue/reactivity@3.5.18': + dependencies: + '@vue/shared': 3.5.18 + + '@vue/runtime-core@3.5.18': + dependencies: + '@vue/reactivity': 3.5.18 + '@vue/shared': 3.5.18 + + '@vue/runtime-dom@3.5.18': + dependencies: + '@vue/reactivity': 3.5.18 + '@vue/runtime-core': 3.5.18 + '@vue/shared': 3.5.18 + csstype: 3.1.3 + + '@vue/server-renderer@3.5.18(vue@3.5.18(typescript@5.9.2))': + dependencies: + '@vue/compiler-ssr': 3.5.18 + '@vue/shared': 3.5.18 + vue: 3.5.18(typescript@5.9.2) + + '@vue/shared@3.5.18': {} + + '@vue/tsconfig@0.7.0(typescript@5.9.2)(vue@3.5.18(typescript@5.9.2))': + optionalDependencies: + typescript: 5.9.2 + vue: 3.5.18(typescript@5.9.2) + + acorn-jsx@5.3.2(acorn@8.15.0): + dependencies: + acorn: 8.15.0 + + acorn@8.15.0: {} + + ajv@6.12.6: + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + + alien-signals@2.0.6: {} + + ansi-styles@4.3.0: + dependencies: + color-convert: 2.0.1 + + ansi-styles@6.2.1: {} + + ansis@4.1.0: {} + + argparse@2.0.1: {} + + balanced-match@1.0.2: {} + + birpc@2.5.0: {} + + boolbase@1.0.0: {} + + brace-expansion@1.1.12: + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + + brace-expansion@2.0.2: + dependencies: + balanced-match: 1.0.2 + + braces@3.0.3: + dependencies: + fill-range: 7.1.1 + + browserslist@4.25.2: + dependencies: + caniuse-lite: 1.0.30001734 + electron-to-chromium: 1.5.200 + node-releases: 2.0.19 + update-browserslist-db: 1.1.3(browserslist@4.25.2) + + bundle-name@4.1.0: + dependencies: + run-applescript: 7.0.0 + + callsites@3.1.0: {} + + caniuse-lite@1.0.30001734: {} + + chalk@4.1.2: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 + + color-name@1.1.4: {} + + concat-map@0.0.1: {} + + convert-source-map@2.0.0: {} + + copy-anything@3.0.5: + dependencies: + is-what: 4.1.16 + + cross-spawn@7.0.6: + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + + cssesc@3.0.0: {} + + csstype@3.1.3: {} + + de-indent@1.0.2: {} + + debug@4.4.1: + dependencies: + ms: 2.1.3 + + deep-is@0.1.4: {} + + default-browser-id@5.0.0: {} + + default-browser@5.2.1: + dependencies: + bundle-name: 4.1.0 + default-browser-id: 5.0.0 + + define-lazy-prop@3.0.0: {} + + detect-libc@2.0.4: {} + + earcut@3.0.2: {} + + electron-to-chromium@1.5.200: {} + + entities@4.5.0: {} + + error-stack-parser-es@1.0.5: {} + + escalade@3.2.0: {} + + escape-string-regexp@4.0.0: {} + + eslint-config-prettier@10.1.8(eslint@9.33.0(jiti@2.5.1)): + dependencies: + eslint: 9.33.0(jiti@2.5.1) + + eslint-plugin-oxlint@1.11.1: + dependencies: + jsonc-parser: 3.3.1 + + eslint-plugin-prettier@5.5.4(eslint-config-prettier@10.1.8(eslint@9.33.0(jiti@2.5.1)))(eslint@9.33.0(jiti@2.5.1))(prettier@3.6.2): + dependencies: + eslint: 9.33.0(jiti@2.5.1) + prettier: 3.6.2 + prettier-linter-helpers: 1.0.0 + synckit: 0.11.11 + optionalDependencies: + eslint-config-prettier: 10.1.8(eslint@9.33.0(jiti@2.5.1)) + + eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.39.1(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1))(vue-eslint-parser@10.2.0(eslint@9.33.0(jiti@2.5.1))): + dependencies: + '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.5.1)) + eslint: 9.33.0(jiti@2.5.1) + natural-compare: 1.4.0 + nth-check: 2.1.1 + postcss-selector-parser: 6.1.2 + semver: 7.7.2 + vue-eslint-parser: 10.2.0(eslint@9.33.0(jiti@2.5.1)) + xml-name-validator: 4.0.0 + optionalDependencies: + '@typescript-eslint/parser': 8.39.1(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2) + + eslint-scope@8.4.0: + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + + eslint-visitor-keys@3.4.3: {} + + eslint-visitor-keys@4.2.1: {} + + eslint@9.33.0(jiti@2.5.1): + dependencies: + '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.5.1)) + '@eslint-community/regexpp': 4.12.1 + '@eslint/config-array': 0.21.0 + '@eslint/config-helpers': 0.3.1 + '@eslint/core': 0.15.2 + '@eslint/eslintrc': 3.3.1 + '@eslint/js': 9.33.0 + '@eslint/plugin-kit': 0.3.5 + '@humanfs/node': 0.16.6 + '@humanwhocodes/module-importer': 1.0.1 + '@humanwhocodes/retry': 0.4.3 + '@types/estree': 1.0.8 + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.6 + debug: 4.4.1 + escape-string-regexp: 4.0.0 + eslint-scope: 8.4.0 + eslint-visitor-keys: 4.2.1 + espree: 10.4.0 + esquery: 1.6.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 8.0.0 + find-up: 5.0.0 + glob-parent: 6.0.2 + ignore: 5.3.2 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + json-stable-stringify-without-jsonify: 1.0.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.4 + optionalDependencies: + jiti: 2.5.1 + transitivePeerDependencies: + - supports-color + + espree@10.4.0: + dependencies: + acorn: 8.15.0 + acorn-jsx: 5.3.2(acorn@8.15.0) + eslint-visitor-keys: 4.2.1 + + esquery@1.6.0: + dependencies: + estraverse: 5.3.0 + + esrecurse@4.3.0: + dependencies: + estraverse: 5.3.0 + + estraverse@5.3.0: {} + + estree-walker@2.0.2: {} + + esutils@2.0.3: {} + + execa@9.6.0: + dependencies: + '@sindresorhus/merge-streams': 4.0.0 + cross-spawn: 7.0.6 + figures: 6.1.0 + get-stream: 9.0.1 + human-signals: 8.0.1 + is-plain-obj: 4.1.0 + is-stream: 4.0.1 + npm-run-path: 6.0.0 + pretty-ms: 9.2.0 + signal-exit: 4.1.0 + strip-final-newline: 4.0.0 + yoctocolors: 2.1.1 + + fast-deep-equal@3.1.3: {} + + fast-diff@1.3.0: {} + + fast-glob@3.3.3: + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.8 + + fast-json-stable-stringify@2.1.0: {} + + fast-levenshtein@2.0.6: {} + + fastq@1.19.1: + dependencies: + reusify: 1.1.0 + + fdir@6.4.6(picomatch@4.0.3): + optionalDependencies: + picomatch: 4.0.3 + + figures@6.1.0: + dependencies: + is-unicode-supported: 2.1.0 + + file-entry-cache@8.0.0: + dependencies: + flat-cache: 4.0.1 + + fill-range@7.1.1: + dependencies: + to-regex-range: 5.0.1 + + find-up@5.0.0: + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + + flat-cache@4.0.1: + dependencies: + flatted: 3.3.3 + keyv: 4.5.4 + + flatted@3.3.3: {} + + fsevents@2.3.3: + optional: true + + gensync@1.0.0-beta.2: {} + + geojson-vt@4.0.2: {} + + get-stream@6.0.1: {} + + get-stream@9.0.1: + dependencies: + '@sec-ant/readable-stream': 0.4.1 + is-stream: 4.0.1 + + gl-matrix@3.4.4: {} + + glob-parent@5.1.2: + dependencies: + is-glob: 4.0.3 + + glob-parent@6.0.2: + dependencies: + is-glob: 4.0.3 + + globals@14.0.0: {} + + graphemer@1.4.0: {} + + has-flag@4.0.0: {} + + he@1.2.0: {} + + hookable@5.5.3: {} + + human-signals@8.0.1: {} + + ignore@5.3.2: {} + + ignore@7.0.5: {} + + import-fresh@3.3.1: + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + + imurmurhash@0.1.4: {} + + is-docker@3.0.0: {} + + is-extglob@2.1.1: {} + + is-glob@4.0.3: + dependencies: + is-extglob: 2.1.1 + + is-inside-container@1.0.0: + dependencies: + is-docker: 3.0.0 + + is-number@7.0.0: {} + + is-plain-obj@4.1.0: {} + + is-stream@4.0.1: {} + + is-unicode-supported@2.1.0: {} + + is-what@4.1.16: {} + + is-wsl@3.1.0: + dependencies: + is-inside-container: 1.0.0 + + isexe@2.0.0: {} + + isexe@3.1.1: {} + + jiti@2.5.1: {} + + js-tokens@4.0.0: {} + + js-yaml@4.1.0: + dependencies: + argparse: 2.0.1 + + jsesc@3.1.0: {} + + json-buffer@3.0.1: {} + + json-parse-even-better-errors@4.0.0: {} + + json-schema-traverse@0.4.1: {} + + json-stable-stringify-without-jsonify@1.0.1: {} + + json-stringify-pretty-compact@4.0.0: {} + + json5@2.2.3: {} + + jsonc-parser@3.3.1: {} + + kdbush@4.0.2: {} + + keyv@4.5.4: + dependencies: + json-buffer: 3.0.1 + + kolorist@1.8.0: {} + + levn@0.4.1: + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + + lightningcss-darwin-arm64@1.30.1: + optional: true + + lightningcss-darwin-x64@1.30.1: + optional: true + + lightningcss-freebsd-x64@1.30.1: + optional: true + + lightningcss-linux-arm-gnueabihf@1.30.1: + optional: true + + lightningcss-linux-arm64-gnu@1.30.1: + optional: true + + lightningcss-linux-arm64-musl@1.30.1: + optional: true + + lightningcss-linux-x64-gnu@1.30.1: + optional: true + + lightningcss-linux-x64-musl@1.30.1: + optional: true + + lightningcss-win32-arm64-msvc@1.30.1: + optional: true + + lightningcss-win32-x64-msvc@1.30.1: + optional: true + + lightningcss@1.30.1: + dependencies: + detect-libc: 2.0.4 + optionalDependencies: + lightningcss-darwin-arm64: 1.30.1 + lightningcss-darwin-x64: 1.30.1 + lightningcss-freebsd-x64: 1.30.1 + lightningcss-linux-arm-gnueabihf: 1.30.1 + lightningcss-linux-arm64-gnu: 1.30.1 + lightningcss-linux-arm64-musl: 1.30.1 + lightningcss-linux-x64-gnu: 1.30.1 + lightningcss-linux-x64-musl: 1.30.1 + lightningcss-win32-arm64-msvc: 1.30.1 + lightningcss-win32-x64-msvc: 1.30.1 + + locate-path@6.0.0: + dependencies: + p-locate: 5.0.0 + + lodash.merge@4.6.2: {} + + lru-cache@5.1.1: + dependencies: + yallist: 3.1.1 + + magic-string@0.30.17: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.4 + + maplibre-gl@5.6.2: + dependencies: + '@mapbox/geojson-rewind': 0.5.2 + '@mapbox/jsonlint-lines-primitives': 2.0.2 + '@mapbox/point-geometry': 1.1.0 + '@mapbox/tiny-sdf': 2.0.7 + '@mapbox/unitbezier': 0.0.1 + '@mapbox/vector-tile': 2.0.4 + '@mapbox/whoots-js': 3.1.0 + '@maplibre/maplibre-gl-style-spec': 23.3.0 + '@maplibre/vt-pbf': 4.0.3 + '@types/geojson': 7946.0.16 + '@types/geojson-vt': 3.2.5 + '@types/supercluster': 7.1.3 + earcut: 3.0.2 + geojson-vt: 4.0.2 + gl-matrix: 3.4.4 + kdbush: 4.0.2 + murmurhash-js: 1.0.0 + pbf: 4.0.1 + potpack: 2.1.0 + quickselect: 3.0.0 + supercluster: 8.0.1 + tinyqueue: 3.0.0 + + memorystream@0.3.1: {} + + merge2@1.4.1: {} + + micromatch@4.0.8: + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + + minimatch@3.1.2: + dependencies: + brace-expansion: 1.1.12 + + minimatch@9.0.5: + dependencies: + brace-expansion: 2.0.2 + + minimist@1.2.8: {} + + mitt@3.0.1: {} + + mrmime@2.0.1: {} + + ms@2.1.3: {} + + muggle-string@0.4.1: {} + + murmurhash-js@1.0.0: {} + + nanoid@3.3.11: {} + + nanoid@5.1.5: {} + + natural-compare@1.4.0: {} + + node-releases@2.0.19: {} + + npm-normalize-package-bin@4.0.0: {} + + npm-run-all2@8.0.4: + dependencies: + ansi-styles: 6.2.1 + cross-spawn: 7.0.6 + memorystream: 0.3.1 + picomatch: 4.0.3 + pidtree: 0.6.0 + read-package-json-fast: 4.0.0 + shell-quote: 1.8.3 + which: 5.0.0 + + npm-run-path@6.0.0: + dependencies: + path-key: 4.0.0 + unicorn-magic: 0.3.0 + + nth-check@2.1.1: + dependencies: + boolbase: 1.0.0 + + ohash@2.0.11: {} + + open@10.2.0: + dependencies: + default-browser: 5.2.1 + define-lazy-prop: 3.0.0 + is-inside-container: 1.0.0 + wsl-utils: 0.1.0 + + optionator@0.9.4: + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.5 + + oxc-parser@0.74.0: + dependencies: + '@oxc-project/types': 0.74.0 + optionalDependencies: + '@oxc-parser/binding-android-arm64': 0.74.0 + '@oxc-parser/binding-darwin-arm64': 0.74.0 + '@oxc-parser/binding-darwin-x64': 0.74.0 + '@oxc-parser/binding-freebsd-x64': 0.74.0 + '@oxc-parser/binding-linux-arm-gnueabihf': 0.74.0 + '@oxc-parser/binding-linux-arm-musleabihf': 0.74.0 + '@oxc-parser/binding-linux-arm64-gnu': 0.74.0 + '@oxc-parser/binding-linux-arm64-musl': 0.74.0 + '@oxc-parser/binding-linux-riscv64-gnu': 0.74.0 + '@oxc-parser/binding-linux-s390x-gnu': 0.74.0 + '@oxc-parser/binding-linux-x64-gnu': 0.74.0 + '@oxc-parser/binding-linux-x64-musl': 0.74.0 + '@oxc-parser/binding-wasm32-wasi': 0.74.0 + '@oxc-parser/binding-win32-arm64-msvc': 0.74.0 + '@oxc-parser/binding-win32-x64-msvc': 0.74.0 + + oxlint-tsgolint@0.0.1: + optionalDependencies: + '@oxlint-tsgolint/darwin-arm64': 0.0.1 + '@oxlint-tsgolint/darwin-x64': 0.0.1 + '@oxlint-tsgolint/linux-arm64': 0.0.1 + '@oxlint-tsgolint/linux-x64': 0.0.1 + '@oxlint-tsgolint/win32-arm64': 0.0.1 + '@oxlint-tsgolint/win32-x64': 0.0.1 + optional: true + + oxlint@1.11.1: + optionalDependencies: + '@oxlint/darwin-arm64': 1.11.1 + '@oxlint/darwin-x64': 1.11.1 + '@oxlint/linux-arm64-gnu': 1.11.1 + '@oxlint/linux-arm64-musl': 1.11.1 + '@oxlint/linux-x64-gnu': 1.11.1 + '@oxlint/linux-x64-musl': 1.11.1 + '@oxlint/win32-arm64': 1.11.1 + '@oxlint/win32-x64': 1.11.1 + oxlint-tsgolint: 0.0.1 + + p-limit@3.1.0: + dependencies: + yocto-queue: 0.1.0 + + p-locate@5.0.0: + dependencies: + p-limit: 3.1.0 + + parent-module@1.0.1: + dependencies: + callsites: 3.1.0 + + parse-ms@4.0.0: {} + + path-browserify@1.0.1: {} + + path-exists@4.0.0: {} + + path-key@3.1.1: {} + + path-key@4.0.0: {} + + pathe@2.0.3: {} + + pbf@4.0.1: + dependencies: + resolve-protobuf-schema: 2.1.0 + + perfect-debounce@1.0.0: {} + + picocolors@1.1.1: {} + + picomatch@2.3.1: {} + + picomatch@4.0.3: {} + + pidtree@0.6.0: {} + + pinia@3.0.3(typescript@5.9.2)(vue@3.5.18(typescript@5.9.2)): + dependencies: + '@vue/devtools-api': 7.7.7 + vue: 3.5.18(typescript@5.9.2) + optionalDependencies: + typescript: 5.9.2 + + postcss-selector-parser@6.1.2: + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + + postcss@8.5.6: + dependencies: + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + potpack@2.1.0: {} + + prelude-ls@1.2.1: {} + + prettier-linter-helpers@1.0.0: + dependencies: + fast-diff: 1.3.0 + + prettier@3.6.2: {} + + pretty-ms@9.2.0: + dependencies: + parse-ms: 4.0.0 + + protocol-buffers-schema@3.6.0: {} + + punycode@2.3.1: {} + + queue-microtask@1.2.3: {} + + quickselect@3.0.0: {} + + read-package-json-fast@4.0.0: + dependencies: + json-parse-even-better-errors: 4.0.0 + npm-normalize-package-bin: 4.0.0 + + resolve-from@4.0.0: {} + + resolve-protobuf-schema@2.1.0: + dependencies: + protocol-buffers-schema: 3.6.0 + + reusify@1.1.0: {} + + rfdc@1.4.1: {} + + rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1): + dependencies: + fdir: 6.4.6(picomatch@4.0.3) + lightningcss: 1.30.1 + picomatch: 4.0.3 + postcss: 8.5.6 + rolldown: 1.0.0-beta.32 + tinyglobby: 0.2.14 + optionalDependencies: + '@types/node': 24.2.1 + fsevents: 2.3.3 + jiti: 2.5.1 + + rolldown@1.0.0-beta.32: + dependencies: + '@oxc-project/runtime': 0.81.0 + '@oxc-project/types': 0.81.0 + '@rolldown/pluginutils': 1.0.0-beta.32 + ansis: 4.1.0 + optionalDependencies: + '@rolldown/binding-android-arm64': 1.0.0-beta.32 + '@rolldown/binding-darwin-arm64': 1.0.0-beta.32 + '@rolldown/binding-darwin-x64': 1.0.0-beta.32 + '@rolldown/binding-freebsd-x64': 1.0.0-beta.32 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.32 + '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.32 + '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.32 + '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.32 + '@rolldown/binding-linux-x64-musl': 1.0.0-beta.32 + '@rolldown/binding-openharmony-arm64': 1.0.0-beta.32 + '@rolldown/binding-wasm32-wasi': 1.0.0-beta.32 + '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.32 + '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.32 + '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.32 + + run-applescript@7.0.0: {} + + run-parallel@1.2.0: + dependencies: + queue-microtask: 1.2.3 + + rw@1.3.3: {} + + semver@6.3.1: {} + + semver@7.7.2: {} + + shebang-command@2.0.0: + dependencies: + shebang-regex: 3.0.0 + + shebang-regex@3.0.0: {} + + shell-quote@1.8.3: {} + + signal-exit@4.1.0: {} + + sirv@3.0.1: + dependencies: + '@polka/url': 1.0.0-next.29 + mrmime: 2.0.1 + totalist: 3.0.1 + + source-map-js@1.2.1: {} + + speakingurl@14.0.1: {} + + strip-final-newline@4.0.0: {} + + strip-json-comments@3.1.1: {} + + supercluster@8.0.1: + dependencies: + kdbush: 4.0.2 + + superjson@2.2.2: + dependencies: + copy-anything: 3.0.5 + + supports-color@7.2.0: + dependencies: + has-flag: 4.0.0 + + synckit@0.11.11: + dependencies: + '@pkgr/core': 0.2.9 + + tinyglobby@0.2.14: + dependencies: + fdir: 6.4.6(picomatch@4.0.3) + picomatch: 4.0.3 + + tinyqueue@3.0.0: {} + + to-regex-range@5.0.1: + dependencies: + is-number: 7.0.0 + + totalist@3.0.1: {} + + ts-api-utils@2.1.0(typescript@5.9.2): + dependencies: + typescript: 5.9.2 + + tslib@2.8.1: + optional: true + + type-check@0.4.0: + dependencies: + prelude-ls: 1.2.1 + + typescript-eslint@8.39.1(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2): + dependencies: + '@typescript-eslint/eslint-plugin': 8.39.1(@typescript-eslint/parser@8.39.1(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2) + '@typescript-eslint/parser': 8.39.1(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2) + '@typescript-eslint/typescript-estree': 8.39.1(typescript@5.9.2) + '@typescript-eslint/utils': 8.39.1(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2) + eslint: 9.33.0(jiti@2.5.1) + typescript: 5.9.2 + transitivePeerDependencies: + - supports-color + + typescript@5.9.2: {} + + undici-types@7.10.0: {} + + unicorn-magic@0.3.0: {} + + unplugin-utils@0.2.5: + dependencies: + pathe: 2.0.3 + picomatch: 4.0.3 + + update-browserslist-db@1.1.3(browserslist@4.25.2): + dependencies: + browserslist: 4.25.2 + escalade: 3.2.0 + picocolors: 1.1.1 + + uri-js@4.4.1: + dependencies: + punycode: 2.3.1 + + util-deprecate@1.0.2: {} + + vite-dev-rpc@1.1.0(rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1)): + dependencies: + birpc: 2.5.0 + vite: rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1) + vite-hot-client: 2.1.0(rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1)) + + vite-hot-client@2.1.0(rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1)): + dependencies: + vite: rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1) + + vite-plugin-inspect@11.3.2(rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1)): + dependencies: + ansis: 4.1.0 + debug: 4.4.1 + error-stack-parser-es: 1.0.5 + ohash: 2.0.11 + open: 10.2.0 + perfect-debounce: 1.0.0 + sirv: 3.0.1 + unplugin-utils: 0.2.5 + vite: rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1) + vite-dev-rpc: 1.1.0(rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1)) + transitivePeerDependencies: + - supports-color + + vite-plugin-vue-devtools@8.0.0(rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1))(vue@3.5.18(typescript@5.9.2)): + dependencies: + '@vue/devtools-core': 8.0.0(rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1))(vue@3.5.18(typescript@5.9.2)) + '@vue/devtools-kit': 8.0.0 + '@vue/devtools-shared': 8.0.0 + execa: 9.6.0 + sirv: 3.0.1 + vite: rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1) + vite-plugin-inspect: 11.3.2(rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1)) + vite-plugin-vue-inspector: 5.3.2(rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1)) + transitivePeerDependencies: + - '@nuxt/kit' + - supports-color + - vue + + vite-plugin-vue-inspector@5.3.2(rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1)): + dependencies: + '@babel/core': 7.28.0 + '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.0) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.0) + '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.0) + '@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.28.0) + '@vue/compiler-dom': 3.5.18 + kolorist: 1.8.0 + magic-string: 0.30.17 + vite: rolldown-vite@7.1.1(@types/node@24.2.1)(jiti@2.5.1) + transitivePeerDependencies: + - supports-color + + vscode-uri@3.1.0: {} + + vue-eslint-parser@10.2.0(eslint@9.33.0(jiti@2.5.1)): + dependencies: + debug: 4.4.1 + eslint: 9.33.0(jiti@2.5.1) + eslint-scope: 8.4.0 + eslint-visitor-keys: 4.2.1 + espree: 10.4.0 + esquery: 1.6.0 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color + + vue-tsc@3.0.5(typescript@5.9.2): + dependencies: + '@volar/typescript': 2.4.22 + '@vue/language-core': 3.0.5(typescript@5.9.2) + typescript: 5.9.2 + + vue@3.5.18(typescript@5.9.2): + dependencies: + '@vue/compiler-dom': 3.5.18 + '@vue/compiler-sfc': 3.5.18 + '@vue/runtime-dom': 3.5.18 + '@vue/server-renderer': 3.5.18(vue@3.5.18(typescript@5.9.2)) + '@vue/shared': 3.5.18 + optionalDependencies: + typescript: 5.9.2 + + which@2.0.2: + dependencies: + isexe: 2.0.0 + + which@5.0.0: + dependencies: + isexe: 3.1.1 + + word-wrap@1.2.5: {} + + wsl-utils@0.1.0: + dependencies: + is-wsl: 3.1.0 + + xml-name-validator@4.0.0: {} + + yallist@3.1.1: {} + + yocto-queue@0.1.0: {} + + yoctocolors@2.1.1: {} diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..df36fcfb72584e00488330b560ebcf34a41c64c2 GIT binary patch literal 4286 zcmds*O-Phc6o&64GDVCEQHxsW(p4>LW*W<827=Unuo8sGpRux(DN@jWP-e29Wl%wj zY84_aq9}^Am9-cWTD5GGEo#+5Fi2wX_P*bo+xO!)p*7B;iKlbFd(U~_d(U?#hLj56 zPhFkj-|A6~Qk#@g^#D^U0XT1cu=c-vu1+SElX9NR;kzAUV(q0|dl0|%h|dI$%VICy zJnu2^L*Te9JrJMGh%-P79CL0}dq92RGU6gI{v2~|)p}sG5x0U*z<8U;Ij*hB9z?ei z@g6Xq-pDoPl=MANPiR7%172VA%r)kevtV-_5H*QJKFmd;8yA$98zCxBZYXTNZ#QFk2(TX0;Y2dt&WitL#$96|gJY=3xX zpCoi|YNzgO3R`f@IiEeSmKrPSf#h#Qd<$%Ej^RIeeYfsxhPMOG`S`Pz8q``=511zm zAm)MX5AV^5xIWPyEu7u>qYs?pn$I4nL9J!=K=SGlKLXpE<5x+2cDTXq?brj?n6sp= zphe9;_JHf40^9~}9i08r{XM$7HB!`{Ys~TK0kx<}ZQng`UPvH*11|q7&l9?@FQz;8 zx!=3<4seY*%=OlbCbcae?5^V_}*K>Uo6ZWV8mTyE^B=DKy7-sdLYkR5Z?paTgK-zyIkKjIcpyO z{+uIt&YSa_$QnN_@t~L014dyK(fOOo+W*MIxbA6Ndgr=Y!f#Tokqv}n<7-9qfHkc3 z=>a|HWqcX8fzQCT=dqVbogRq!-S>H%yA{1w#2Pn;=e>JiEj7Hl;zdt-2f+j2%DeVD zsW0Ab)ZK@0cIW%W7z}H{&~yGhn~D;aiP4=;m-HCo`BEI+Kd6 z={Xwx{TKxD#iCLfl2vQGDitKtN>z|-AdCN|$jTFDg0m3O`WLD4_s#$S literal 0 HcmV?d00001 diff --git a/src/App.vue b/src/App.vue new file mode 100644 index 0000000..90dbdc7 --- /dev/null +++ b/src/App.vue @@ -0,0 +1,9 @@ + + + + + diff --git a/src/assets/base.css b/src/assets/base.css new file mode 100644 index 0000000..4d16fc2 --- /dev/null +++ b/src/assets/base.css @@ -0,0 +1,86 @@ +/* color palette from */ +:root { + --vt-c-white: #ffffff; + --vt-c-white-soft: #f8f8f8; + --vt-c-white-mute: #f2f2f2; + + --vt-c-black: #181818; + --vt-c-black-soft: #222222; + --vt-c-black-mute: #282828; + + --vt-c-indigo: #2c3e50; + + --vt-c-divider-light-1: rgba(60, 60, 60, 0.29); + --vt-c-divider-light-2: rgba(60, 60, 60, 0.12); + --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65); + --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48); + + --vt-c-text-light-1: var(--vt-c-indigo); + --vt-c-text-light-2: rgba(60, 60, 60, 0.66); + --vt-c-text-dark-1: var(--vt-c-white); + --vt-c-text-dark-2: rgba(235, 235, 235, 0.64); +} + +/* semantic color variables for this project */ +:root { + --color-background: var(--vt-c-white); + --color-background-soft: var(--vt-c-white-soft); + --color-background-mute: var(--vt-c-white-mute); + + --color-border: var(--vt-c-divider-light-2); + --color-border-hover: var(--vt-c-divider-light-1); + + --color-heading: var(--vt-c-text-light-1); + --color-text: var(--vt-c-text-light-1); + + --section-gap: 160px; +} + +@media (prefers-color-scheme: dark) { + :root { + --color-background: var(--vt-c-black); + --color-background-soft: var(--vt-c-black-soft); + --color-background-mute: var(--vt-c-black-mute); + + --color-border: var(--vt-c-divider-dark-2); + --color-border-hover: var(--vt-c-divider-dark-1); + + --color-heading: var(--vt-c-text-dark-1); + --color-text: var(--vt-c-text-dark-2); + } +} + +*, +*::before, +*::after { + box-sizing: border-box; + margin: 0; + font-weight: normal; +} + +body { + min-height: 100vh; + color: var(--color-text); + background: var(--color-background); + transition: + color 0.5s, + background-color 0.5s; + line-height: 1.6; + font-family: + Inter, + -apple-system, + BlinkMacSystemFont, + "Segoe UI", + Roboto, + Oxygen, + Ubuntu, + Cantarell, + "Fira Sans", + "Droid Sans", + "Helvetica Neue", + sans-serif; + font-size: 15px; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} diff --git a/src/assets/logo.svg b/src/assets/logo.svg new file mode 100644 index 0000000..7565660 --- /dev/null +++ b/src/assets/logo.svg @@ -0,0 +1 @@ + diff --git a/src/assets/main.css b/src/assets/main.css new file mode 100644 index 0000000..53e776f --- /dev/null +++ b/src/assets/main.css @@ -0,0 +1,54 @@ +@import "./base.css"; + +#app { + max-width: 1280px; + margin: 0 auto; + padding: 2rem; + font-weight: normal; +} + +a, +.green { + text-decoration: none; + color: hsla(160, 100%, 37%, 1); + transition: 0.4s; + padding: 3px; +} + +button { + border-radius: 8px; + border: 1px solid transparent; + padding: 0.6em 1.2em; + font-size: 1em; + font-weight: 500; + font-family: inherit; + background-color: #1a1a1a; + cursor: pointer; + transition: border-color 0.25s; +} +button:hover { + border-color: #646cff; +} +button:focus, +button:focus-visible { + outline: 4px auto -webkit-focus-ring-color; +} + +@media (hover: hover) { + a:hover { + background-color: hsla(160, 100%, 37%, 0.2); + } +} + +@media (min-width: 1024px) { + /* body { + display: flex; + place-items: center; + } */ + + /* #app { + display: grid; + grid-template-columns: 1fr 1fr; + padding: 0 2rem; + } */ +} diff --git a/src/components/icons/IconCommunity.vue b/src/components/icons/IconCommunity.vue new file mode 100644 index 0000000..ea8ddef --- /dev/null +++ b/src/components/icons/IconCommunity.vue @@ -0,0 +1,12 @@ + diff --git a/src/components/icons/IconDocumentation.vue b/src/components/icons/IconDocumentation.vue new file mode 100644 index 0000000..63a8534 --- /dev/null +++ b/src/components/icons/IconDocumentation.vue @@ -0,0 +1,12 @@ + diff --git a/src/components/icons/IconEcosystem.vue b/src/components/icons/IconEcosystem.vue new file mode 100644 index 0000000..385a202 --- /dev/null +++ b/src/components/icons/IconEcosystem.vue @@ -0,0 +1,12 @@ + diff --git a/src/components/icons/IconSupport.vue b/src/components/icons/IconSupport.vue new file mode 100644 index 0000000..7db961e --- /dev/null +++ b/src/components/icons/IconSupport.vue @@ -0,0 +1,12 @@ + diff --git a/src/components/icons/IconTooling.vue b/src/components/icons/IconTooling.vue new file mode 100644 index 0000000..660598d --- /dev/null +++ b/src/components/icons/IconTooling.vue @@ -0,0 +1,19 @@ + + diff --git a/src/components/map/MapLibre.vue b/src/components/map/MapLibre.vue new file mode 100644 index 0000000..46a69e7 --- /dev/null +++ b/src/components/map/MapLibre.vue @@ -0,0 +1,212 @@ + + + + + diff --git a/src/components/map/RawMapLibre.vue b/src/components/map/RawMapLibre.vue new file mode 100644 index 0000000..5657163 --- /dev/null +++ b/src/components/map/RawMapLibre.vue @@ -0,0 +1,288 @@ + + + + + diff --git a/src/composables/useMeters.ts b/src/composables/useMeters.ts new file mode 100644 index 0000000..25970ca --- /dev/null +++ b/src/composables/useMeters.ts @@ -0,0 +1,93 @@ +import { ref, type Ref } from "vue" +import { type MetersCollection, type MeterFeature } from "shared-types/meters" + +const API_BASE_URL = + import.meta.env.VITE_API_BASE_URL || "http://localhost:3001/api" + +/** + * Composable for managing meter data from the backend API + */ +export function useMeters() { + const metersData: Ref = ref({ + type: "FeatureCollection", + features: [], + }) + + const isLoading = ref(false) + const error = ref(null) + + const currentMeter: Ref = ref(null) + + /** + * Create the meter image from an svg + */ + const DEFAULT_SVG = + '' + function createMeterImage(svg: string = DEFAULT_SVG): HTMLImageElement { + const blob = new Blob([svg], { type: "image/svg+xml" }) + const url = URL.createObjectURL(blob) + const img = new Image() + img.src = url + img.style.display = "none" + return img + } + + /** + * Fetch all meters from the API + */ + async function fetchMeters(): Promise { + isLoading.value = true + error.value = null + + try { + const response = await fetch(`${API_BASE_URL}/meters`) + if (!response.ok) { + throw new Error(`HTTP error! status: ${response.status}`) + } + const data: MetersCollection = await response.json() + metersData.value = data + } catch (err) { + error.value = + err instanceof Error ? err.message : "Failed to fetch meters" + console.error("Error fetching meters:", err) + } finally { + isLoading.value = false + } + } + + /** + * Fetch a specific meter by ID + */ + async function fetchMeterById(id: string): Promise { + isLoading.value = true + error.value = null + + try { + const response = await fetch(`${API_BASE_URL}/meters/${id}`) + if (!response.ok) { + if (response.status === 404) { + return null + } + throw new Error(`HTTP error! status: ${response.status}`) + } + const data: MeterFeature = await response.json() + return data + } catch (err) { + error.value = err instanceof Error ? err.message : "Failed to fetch meter" + console.error("Error fetching meter:", err) + return null + } finally { + isLoading.value = false + } + } + + return { + metersData, + currentMeter, + isLoading, + error, + fetchMeters, + fetchMeterById, + createMeterImage, + } +} diff --git a/src/main.ts b/src/main.ts new file mode 100644 index 0000000..4627342 --- /dev/null +++ b/src/main.ts @@ -0,0 +1,11 @@ +import "./assets/main.css"; + +import { createApp } from "vue"; +import { createPinia } from "pinia"; +import App from "./App.vue"; + +const app = createApp(App); + +app.use(createPinia()); + +app.mount("#app"); diff --git a/src/stores/counter.ts b/src/stores/counter.ts new file mode 100644 index 0000000..374b4d0 --- /dev/null +++ b/src/stores/counter.ts @@ -0,0 +1,12 @@ +import { ref, computed } from "vue"; +import { defineStore } from "pinia"; + +export const useCounterStore = defineStore("counter", () => { + const count = ref(0); + const doubleCount = computed(() => count.value * 2); + function increment() { + count.value++; + } + + return { count, doubleCount, increment }; +}); diff --git a/src/views/MapView.vue b/src/views/MapView.vue new file mode 100644 index 0000000..f759625 --- /dev/null +++ b/src/views/MapView.vue @@ -0,0 +1,67 @@ + + + diff --git a/test-backend/README.md b/test-backend/README.md new file mode 100644 index 0000000..87d7a4f --- /dev/null +++ b/test-backend/README.md @@ -0,0 +1,44 @@ +# Test Backend - Saudi Meters API + +A simple Express.js server that serves the Saudi meters GeoJSON data. + +## Installation + +```bash +npm install +``` + +## Usage + +### Development Mode +```bash +npm run dev +``` + +### Production Mode +```bash +npm run build +npm start +``` + +## API Endpoints + +- `GET /` - API information and available endpoints +- `GET /api/meters` - Get all meters data (GeoJSON FeatureCollection) +- `GET /api/meters/:id` - Get specific meter by ID +- `GET /health` - Health check endpoint + +## Example Usage + +```bash +# Get all meters +curl http://localhost:3001/api/meters + +# Get specific meter +curl http://localhost:3001/api/meters/meter-757 + +# Health check +curl http://localhost:3001/health +``` + +The server runs on port 3001 by default, but you can override it with the `PORT` environment variable. diff --git a/test-backend/app.ts b/test-backend/app.ts new file mode 100644 index 0000000..b1765e4 --- /dev/null +++ b/test-backend/app.ts @@ -0,0 +1,80 @@ +import express, { Express } from "express" +import cors from "cors" +import path from "path" +import fs from "fs" +import { fileURLToPath } from "url" +import { dirname } from "path" +import { MetersCollection, MeterFeature } from "shared-types/meters" + +// ES module equivalent of __dirname +const __filename = fileURLToPath(import.meta.url) +const __dirname = dirname(__filename) + +const app: Express = express() +const PORT = process.env.PORT || 3001 + +// Middleware +app.use(cors()) +app.use(express.json()) + +// Route to serve the saudi_meters.json file +app.get("/api/meters", (req, res) => { + try { + const filePath = path.join(__dirname, "saudi_meters.json") + const data = fs.readFileSync(filePath, "utf8") + const metersData: MetersCollection = JSON.parse(data) + + res.json(metersData) + } catch (error) { + console.error("Error reading meters data:", error) + res.status(500).json({ error: "Failed to load meters data" }) + } +}) + +// Route to get individual meter by ID +app.get("/api/meters/:id", (req, res) => { + try { + const { id } = req.params + const filePath = path.join(__dirname, "saudi_meters.json") + const data = fs.readFileSync(filePath, "utf8") + const metersData: MetersCollection = JSON.parse(data) + + const meter = metersData.features.find( + (feature: MeterFeature) => feature.properties.id === id + ) + + if (meter) { + res.json(meter) + } else { + res.status(404).json({ error: "Meter not found" }) + } + } catch (error) { + console.error("Error reading meters data:", error) + res.status(500).json({ error: "Failed to load meters data" }) + } +}) + +// Health check endpoint +app.get("/health", (req, res) => { + res.json({ status: "OK", timestamp: new Date().toISOString() }) +}) + +// Basic info endpoint +app.get("/", (req, res) => { + res.json({ + message: "Saudi Meters API Server", + endpoints: { + meters: "/api/meters", + meterById: "/api/meters/:id", + health: "/health", + }, + }) +}) + +// Start the server +app.listen(PORT, () => { + console.log(`🚀 Server running on http://localhost:${PORT}`) + console.log(`📊 Meters data available at http://localhost:${PORT}/api/meters`) +}) + +export default app diff --git a/test-backend/generate_meters.js b/test-backend/generate_meters.js new file mode 100644 index 0000000..63a446f --- /dev/null +++ b/test-backend/generate_meters.js @@ -0,0 +1,266 @@ +import fs from "fs" + +// Load the actual Saudi Arabia borders from sa.json +const saudiPolygon = JSON.parse(fs.readFileSync("sa.json", "utf8")) + +// Saudi Arabia accurate geographical bounds (for quick bounding box checks) +// More precise boundaries to avoid points in neighboring countries +const SAUDI_BOUNDS = { + minLng: 36.0, // More conservative western boundary (Red Sea coast) + maxLng: 55.0, // More conservative eastern boundary (Persian Gulf coast) + minLat: 17.0, // More conservative southern boundary (Yemen border) + maxLat: 32.0, // Northern boundary (Jordan/Iraq border) +} + +// Point-in-polygon algorithm (ray casting) +function pointInPolygon(point, polygon) { + const [x, y] = point + let inside = false + + for (let i = 0, j = polygon.length - 1; i < polygon.length; j = i++) { + const [xi, yi] = polygon[i] + const [xj, yj] = polygon[j] + + if (yi > y !== yj > y && x < ((xj - xi) * (y - yi)) / (yj - yi) + xi) { + inside = !inside + } + } + + return inside +} + +// Check if point is inside any of the Saudi polygons +function isPointInSaudiArabia(point) { + const multiPolygon = saudiPolygon.features[0].geometry.coordinates + + for (const polygon of multiPolygon) { + // Each polygon might have holes, first ring is exterior, others are holes + const exteriorRing = polygon[0] + + if (pointInPolygon(point, exteriorRing)) { + // Check if point is in any holes + let inHole = false + for (let i = 1; i < polygon.length; i++) { + if (pointInPolygon(point, polygon[i])) { + inHole = true + break + } + } + + if (!inHole) { + return true + } + } + } + + return false +} + +// Major Saudi cities for reference and better distribution (verified coordinates) +const MAJOR_CITIES = [ + { name: "Riyadh", lng: 46.6753, lat: 24.7136 }, + { name: "Jeddah", lng: 39.2376, lat: 21.4858 }, + { name: "Mecca", lng: 39.8579, lat: 21.3891 }, + { name: "Medina", lng: 39.6118, lat: 24.5247 }, + { name: "Dammam", lng: 50.088, lat: 26.4207 }, + { name: "Khobar", lng: 50.208, lat: 26.2791 }, + { name: "Tabuk", lng: 36.5951, lat: 28.3998 }, + { name: "Buraidah", lng: 43.975, lat: 26.326 }, + { name: "Khamis Mushait", lng: 42.7284, lat: 18.3057 }, + { name: "Hail", lng: 41.69, lat: 27.5114 }, + { name: "Hofuf", lng: 49.586, lat: 25.3491 }, + { name: "Jubail", lng: 49.6603, lat: 27.0174 }, + { name: "Abha", lng: 42.5058, lat: 18.2164 }, + { name: "Yanbu", lng: 38.0618, lat: 24.0895 }, + { name: "Najran", lng: 44.13, lat: 17.4924 }, + { name: "Arar", lng: 41.0377, lat: 30.9753 }, + { name: "Al Qatif", lng: 50.0089, lat: 26.5056 }, + { name: "Sakaka", lng: 40.2062, lat: 29.9697 }, + { name: "Al Bahah", lng: 41.4687, lat: 20.0129 }, +].filter((city) => isPointInSaudiArabia([city.lng, city.lat])) + +const MAKERS = [ + "Maker A", + "Maker B", + "Maker C", + "Maker D", + "Maker E", + "Maker F", + "Maker G", + "Maker H", + "Maker I", + "Maker J", +] + +function randomInRange(min, max) { + return Math.random() * (max - min) + min +} + +function isWithinSaudiBounds(lng, lat) { + // First do a quick bounding box check for performance + if ( + lng < SAUDI_BOUNDS.minLng || + lng > SAUDI_BOUNDS.maxLng || + lat < SAUDI_BOUNDS.minLat || + lat > SAUDI_BOUNDS.maxLat + ) { + return false + } + + // Then do the precise polygon check + return isPointInSaudiArabia([lng, lat]) +} + +function generateCoordinatesAroundCity(city, radius = 0.3) { + // Reduced radius for better accuracy + let attempts = 0 + let coordinates + + do { + const angle = Math.random() * 2 * Math.PI + const distance = Math.random() * radius + + const lng = city.lng + distance * Math.cos(angle) + const lat = city.lat + distance * Math.sin(angle) + + coordinates = [lng, lat] + attempts++ + } while ( + !isWithinSaudiBounds(coordinates[0], coordinates[1]) && + attempts < 20 + ) + + // If we can't find a valid coordinate around the city, use the city coordinates + if (!isWithinSaudiBounds(coordinates[0], coordinates[1])) { + coordinates = [city.lng, city.lat] + } + + return coordinates +} + +function generateRandomCoordinates() { + let attempts = 0 + let coordinates + + do { + coordinates = [ + randomInRange(SAUDI_BOUNDS.minLng, SAUDI_BOUNDS.maxLng), + randomInRange(SAUDI_BOUNDS.minLat, SAUDI_BOUNDS.maxLat), + ] + attempts++ + } while ( + !isWithinSaudiBounds(coordinates[0], coordinates[1]) && + attempts < 20 + ) + + return coordinates +} + +function generateMeterFeature(id, coordinates) { + const maker = MAKERS[Math.floor(Math.random() * MAKERS.length)] + const model = `Model ${id}` + + return { + type: "Feature", + geometry: { + type: "Point", + coordinates: coordinates, + }, + properties: { + id: `meter-${id}`, + maker: maker, + model: model, + timestamp: "2025-08-13T11:47:00Z", + }, + } +} + +function generateMetersData(totalPoints = 1000) { + const features = [] + + console.log(`Valid major cities within Saudi borders: ${MAJOR_CITIES.length}`) + + // Generate 60% of points around major cities for realistic distribution + const cityPoints = Math.floor(totalPoints * 0.6) + const randomPoints = totalPoints - cityPoints + + console.log(`Generating ${cityPoints} points around major cities...`) + for (let i = 1; i <= cityPoints; i++) { + const city = MAJOR_CITIES[Math.floor(Math.random() * MAJOR_CITIES.length)] + const coordinates = generateCoordinatesAroundCity(city, 0.3) // Smaller radius for accuracy + features.push(generateMeterFeature(i, coordinates)) + } + + console.log(`Generating ${randomPoints} random points across Saudi Arabia...`) + for (let i = cityPoints + 1; i <= totalPoints; i++) { + const coordinates = generateRandomCoordinates() + features.push(generateMeterFeature(i, coordinates)) + } + + // Validate all coordinates are within actual Saudi borders + const validFeatures = features.filter((feature) => { + const [lng, lat] = feature.geometry.coordinates + return isWithinSaudiBounds(lng, lat) + }) + + console.log( + `Generated ${features.length} features, ${validFeatures.length} are within actual Saudi borders` + ) + + // If we have fewer than desired points, generate more around cities + if (validFeatures.length < totalPoints) { + const needed = totalPoints - validFeatures.length + console.log(`Generating ${needed} additional points around major cities...`) + + for (let i = 0; i < needed; i++) { + const city = MAJOR_CITIES[Math.floor(Math.random() * MAJOR_CITIES.length)] + const coordinates = generateCoordinatesAroundCity(city, 0.2) // Even smaller radius + const newFeature = generateMeterFeature( + validFeatures.length + i + 1, + coordinates + ) + validFeatures.push(newFeature) + } + } + + return { + type: "FeatureCollection", + features: validFeatures.slice(0, totalPoints), // Ensure exactly the requested number + } +} + +// Generate the data +const points = + parseInt(process.env.POINTS, 10) || + (process.argv[2] ? parseInt(process.argv[2], 10) : 100000) + +console.log( + `Generating ${points} meter points across Saudi Arabia using actual borders...` +) +const metersData = generateMetersData(points) + +// Write to file +fs.writeFileSync("saudi_meters.json", JSON.stringify(metersData, null, 2)) + +console.log( + `✅ Successfully generated ${metersData.features.length} meter points!` +) +console.log("📍 Distribution:") +console.log(" - 60% around major cities") +console.log(" - 40% randomly distributed") +console.log( + "🗺️ Coverage: Entire Saudi Arabia territory (using actual polygon borders)" +) + +// Final validation +const invalidPoints = metersData.features.filter((feature) => { + const [lng, lat] = feature.geometry.coordinates + return !isPointInSaudiArabia([lng, lat]) +}) + +console.log( + `\n🔍 Final validation: ${invalidPoints.length} points outside Saudi borders` +) +if (invalidPoints.length === 0) { + console.log("✅ All points are within Saudi Arabia's actual borders!") +} diff --git a/test-backend/package-lock.json b/test-backend/package-lock.json new file mode 100644 index 0000000..33afb55 --- /dev/null +++ b/test-backend/package-lock.json @@ -0,0 +1,1534 @@ +{ + "name": "test-backend", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "test-backend", + "version": "1.0.0", + "dependencies": { + "cors": "2.8.5", + "express": "5.1.0" + }, + "devDependencies": { + "@types/cors": "2.8.19", + "@types/express": "5.0.3", + "@types/node": "24.3.0", + "tsx": "4.20.4", + "typescript": "5.9.2" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.9.tgz", + "integrity": "sha512-OaGtL73Jck6pBKjNIe24BnFE6agGl+6KxDtTfHhy1HmhthfKouEcOhqpSL64K4/0WCtbKFLOdzD/44cJ4k9opA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.9.tgz", + "integrity": "sha512-5WNI1DaMtxQ7t7B6xa572XMXpHAaI/9Hnhk8lcxF4zVN4xstUgTlvuGDorBguKEnZO70qwEcLpfifMLoxiPqHQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.9.tgz", + "integrity": "sha512-IDrddSmpSv51ftWslJMvl3Q2ZT98fUSL2/rlUXuVqRXHCs5EUF1/f+jbjF5+NG9UffUDMCiTyh8iec7u8RlTLg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.9.tgz", + "integrity": "sha512-I853iMZ1hWZdNllhVZKm34f4wErd4lMyeV7BLzEExGEIZYsOzqDWDf+y082izYUE8gtJnYHdeDpN/6tUdwvfiw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.9.tgz", + "integrity": "sha512-XIpIDMAjOELi/9PB30vEbVMs3GV1v2zkkPnuyRRURbhqjyzIINwj+nbQATh4H9GxUgH1kFsEyQMxwiLFKUS6Rg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.9.tgz", + "integrity": "sha512-jhHfBzjYTA1IQu8VyrjCX4ApJDnH+ez+IYVEoJHeqJm9VhG9Dh2BYaJritkYK3vMaXrf7Ogr/0MQ8/MeIefsPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.9.tgz", + "integrity": "sha512-z93DmbnY6fX9+KdD4Ue/H6sYs+bhFQJNCPZsi4XWJoYblUqT06MQUdBCpcSfuiN72AbqeBFu5LVQTjfXDE2A6Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.9.tgz", + "integrity": "sha512-mrKX6H/vOyo5v71YfXWJxLVxgy1kyt1MQaD8wZJgJfG4gq4DpQGpgTB74e5yBeQdyMTbgxp0YtNj7NuHN0PoZg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.9.tgz", + "integrity": "sha512-HBU2Xv78SMgaydBmdor38lg8YDnFKSARg1Q6AT0/y2ezUAKiZvc211RDFHlEZRFNRVhcMamiToo7bDx3VEOYQw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.9.tgz", + "integrity": "sha512-BlB7bIcLT3G26urh5Dmse7fiLmLXnRlopw4s8DalgZ8ef79Jj4aUcYbk90g8iCa2467HX8SAIidbL7gsqXHdRw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.9.tgz", + "integrity": "sha512-e7S3MOJPZGp2QW6AK6+Ly81rC7oOSerQ+P8L0ta4FhVi+/j/v2yZzx5CqqDaWjtPFfYz21Vi1S0auHrap3Ma3A==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.9.tgz", + "integrity": "sha512-Sbe10Bnn0oUAB2AalYztvGcK+o6YFFA/9829PhOCUS9vkJElXGdphz0A3DbMdP8gmKkqPmPcMJmJOrI3VYB1JQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.9.tgz", + "integrity": "sha512-YcM5br0mVyZw2jcQeLIkhWtKPeVfAerES5PvOzaDxVtIyZ2NUBZKNLjC5z3/fUlDgT6w89VsxP2qzNipOaaDyA==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.9.tgz", + "integrity": "sha512-++0HQvasdo20JytyDpFvQtNrEsAgNG2CY1CLMwGXfFTKGBGQT3bOeLSYE2l1fYdvML5KUuwn9Z8L1EWe2tzs1w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.9.tgz", + "integrity": "sha512-uNIBa279Y3fkjV+2cUjx36xkx7eSjb8IvnL01eXUKXez/CBHNRw5ekCGMPM0BcmqBxBcdgUWuUXmVWwm4CH9kg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.9.tgz", + "integrity": "sha512-Mfiphvp3MjC/lctb+7D287Xw1DGzqJPb/J2aHHcHxflUo+8tmN/6d4k6I2yFR7BVo5/g7x2Monq4+Yew0EHRIA==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.9.tgz", + "integrity": "sha512-iSwByxzRe48YVkmpbgoxVzn76BXjlYFXC7NvLYq+b+kDjyyk30J0JY47DIn8z1MO3K0oSl9fZoRmZPQI4Hklzg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.9.tgz", + "integrity": "sha512-9jNJl6FqaUG+COdQMjSCGW4QiMHH88xWbvZ+kRVblZsWrkXlABuGdFJ1E9L7HK+T0Yqd4akKNa/lO0+jDxQD4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.9.tgz", + "integrity": "sha512-RLLdkflmqRG8KanPGOU7Rpg829ZHu8nFy5Pqdi9U01VYtG9Y0zOG6Vr2z4/S+/3zIyOxiK6cCeYNWOFR9QP87g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.9.tgz", + "integrity": "sha512-YaFBlPGeDasft5IIM+CQAhJAqS3St3nJzDEgsgFixcfZeyGPCd6eJBWzke5piZuZ7CtL656eOSYKk4Ls2C0FRQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.9.tgz", + "integrity": "sha512-1MkgTCuvMGWuqVtAvkpkXFmtL8XhWy+j4jaSO2wxfJtilVCi0ZE37b8uOdMItIHz4I6z1bWWtEX4CJwcKYLcuA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.9.tgz", + "integrity": "sha512-4Xd0xNiMVXKh6Fa7HEJQbrpP3m3DDn43jKxMjxLLRjWnRsfxjORYJlXPO4JNcXtOyfajXorRKY9NkOpTHptErg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.9.tgz", + "integrity": "sha512-WjH4s6hzo00nNezhp3wFIAfmGZ8U7KtrJNlFMRKxiI9mxEK1scOMAaa9i4crUtu+tBr+0IN6JCuAcSBJZfnphw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.9.tgz", + "integrity": "sha512-mGFrVJHmZiRqmP8xFOc6b84/7xa5y5YvR1x8djzXpJBSv/UsNK6aqec+6JDjConTgvvQefdGhFDAs2DLAds6gQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.9.tgz", + "integrity": "sha512-b33gLVU2k11nVx1OhX3C8QQP6UHQK4ZtN56oFWvVXvz2VkDoe6fbG8TOgHFxEvqeqohmRnIHe5A1+HADk4OQww==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.9.tgz", + "integrity": "sha512-PPOl1mi6lpLNQxnGoyAfschAodRFYXJ+9fs6WHXz7CSWKbOqiMZsubC+BQsVKuul+3vKLuwTHsS2c2y9EoKwxQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.6", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.6.tgz", + "integrity": "sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/cors": { + "version": "2.8.19", + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.19.tgz", + "integrity": "sha512-mFNylyeyqN93lfe/9CSxOGREz8cpzAhH+E93xJ4xWQf62V8sQ/24reV2nyzUWM6H6Xji+GGHpkbLe7pVoUEskg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/express": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/@types/express/-/express-5.0.3.tgz", + "integrity": "sha512-wGA0NX93b19/dZC1J18tKWVIYWyyF2ZjT9vin/NRu0qzzvfVzWjs04iq2rQ3H65vCTQYlRqs3YHfY7zjdV+9Kw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^5.0.0", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.7.tgz", + "integrity": "sha512-R+33OsgWw7rOhD1emjU7dzCDHucJrgJXMA5PYCzJxVil0dsyx5iBEPHqpPfiKNJQb7lZ1vxwoLR4Z87bBUpeGQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/http-errors": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.5.tgz", + "integrity": "sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/mime": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "24.3.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.3.0.tgz", + "integrity": "sha512-aPTXCrfwnDLj4VvXrm+UUCQjNEvJgNA8s5F1cvwQU+3KNltTOkBm1j30uNLyqqPNe7gE3KFzImYoZEfLhp4Yow==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~7.10.0" + } + }, + "node_modules/@types/qs": { + "version": "6.14.0", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.14.0.tgz", + "integrity": "sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/range-parser": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/send": { + "version": "0.17.5", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.5.tgz", + "integrity": "sha512-z6F2D3cOStZvuk2SaP6YrwkNO65iTZcwA2ZkSABegdkAh/lf+Aa/YQndZVfmEXT5vgAp6zv06VQ3ejSVjAny4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "1.15.8", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.8.tgz", + "integrity": "sha512-roei0UY3LhpOJvjbIP6ZZFngyLKl5dskOtDhxY5THRSpO+ZI+nzJ+m5yUMzGrp89YRa7lvknKkMYjqQFGwA7Sg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/http-errors": "*", + "@types/node": "*", + "@types/send": "*" + } + }, + "node_modules/accepts": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz", + "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==", + "license": "MIT", + "dependencies": { + "mime-types": "^3.0.0", + "negotiator": "^1.0.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/body-parser": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.0.tgz", + "integrity": "sha512-02qvAaxv8tp7fBa/mw1ga98OGm+eCbqzJOKoRt70sLmfEEi+jyBYVTDGfCL/k06/4EMk/z01gCe7HoCH/f2LTg==", + "license": "MIT", + "dependencies": { + "bytes": "^3.1.2", + "content-type": "^1.0.5", + "debug": "^4.4.0", + "http-errors": "^2.0.0", + "iconv-lite": "^0.6.3", + "on-finished": "^2.4.1", + "qs": "^6.14.0", + "raw-body": "^3.0.0", + "type-is": "^2.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "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/content-disposition": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.0.0.tgz", + "integrity": "sha512-Au9nRL8VNUut/XSzbQA38+M78dzP4D+eqg3gfJHMIHHYa3bg067xj1KxMUWj+VULbiZMowKngFFbKczUrNJ1mg==", + "license": "MIT", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz", + "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz", + "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==", + "license": "MIT", + "engines": { + "node": ">=6.6.0" + } + }, + "node_modules/cors": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "license": "MIT", + "dependencies": { + "object-assign": "^4", + "vary": "^1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/debug": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "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": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" + }, + "node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "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", + "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==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "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": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/esbuild": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.9.tgz", + "integrity": "sha512-CRbODhYyQx3qp7ZEwzxOk4JBqmD/seJrzPa/cGjY1VtIn5E09Oi9/dB4JwctnfZ8Q8iT7rioVv5k/FNT/uf54g==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.9", + "@esbuild/android-arm": "0.25.9", + "@esbuild/android-arm64": "0.25.9", + "@esbuild/android-x64": "0.25.9", + "@esbuild/darwin-arm64": "0.25.9", + "@esbuild/darwin-x64": "0.25.9", + "@esbuild/freebsd-arm64": "0.25.9", + "@esbuild/freebsd-x64": "0.25.9", + "@esbuild/linux-arm": "0.25.9", + "@esbuild/linux-arm64": "0.25.9", + "@esbuild/linux-ia32": "0.25.9", + "@esbuild/linux-loong64": "0.25.9", + "@esbuild/linux-mips64el": "0.25.9", + "@esbuild/linux-ppc64": "0.25.9", + "@esbuild/linux-riscv64": "0.25.9", + "@esbuild/linux-s390x": "0.25.9", + "@esbuild/linux-x64": "0.25.9", + "@esbuild/netbsd-arm64": "0.25.9", + "@esbuild/netbsd-x64": "0.25.9", + "@esbuild/openbsd-arm64": "0.25.9", + "@esbuild/openbsd-x64": "0.25.9", + "@esbuild/openharmony-arm64": "0.25.9", + "@esbuild/sunos-x64": "0.25.9", + "@esbuild/win32-arm64": "0.25.9", + "@esbuild/win32-ia32": "0.25.9", + "@esbuild/win32-x64": "0.25.9" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/express/-/express-5.1.0.tgz", + "integrity": "sha512-DT9ck5YIRU+8GYzzU5kT3eHGA5iL+1Zd0EutOmTE9Dtk+Tvuzd23VBU+ec7HPNSTxXYO55gPV/hq4pSBJDjFpA==", + "license": "MIT", + "dependencies": { + "accepts": "^2.0.0", + "body-parser": "^2.2.0", + "content-disposition": "^1.0.0", + "content-type": "^1.0.5", + "cookie": "^0.7.1", + "cookie-signature": "^1.2.1", + "debug": "^4.4.0", + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "etag": "^1.8.1", + "finalhandler": "^2.1.0", + "fresh": "^2.0.0", + "http-errors": "^2.0.0", + "merge-descriptors": "^2.0.0", + "mime-types": "^3.0.0", + "on-finished": "^2.4.1", + "once": "^1.4.0", + "parseurl": "^1.3.3", + "proxy-addr": "^2.0.7", + "qs": "^6.14.0", + "range-parser": "^1.2.1", + "router": "^2.2.0", + "send": "^1.1.0", + "serve-static": "^2.2.0", + "statuses": "^2.0.1", + "type-is": "^2.0.1", + "vary": "^1.1.2" + }, + "engines": { + "node": ">= 18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/finalhandler": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.0.tgz", + "integrity": "sha512-/t88Ty3d5JWQbWYgaOGCCYfXRwV1+be02WqYYlL6h0lEiUAMPM8o8qKGO01YIkOHzka2up08wvgYD0mDiI+q3Q==", + "license": "MIT", + "dependencies": { + "debug": "^4.4.0", + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "on-finished": "^2.4.1", + "parseurl": "^1.3.3", + "statuses": "^2.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz", + "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "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" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "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", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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": { + "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": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-tsconfig": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.10.1.tgz", + "integrity": "sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "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", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-errors/node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "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/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-promise": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz", + "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==", + "license": "MIT" + }, + "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/media-typer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz", + "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/merge-descriptors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz", + "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mime-db": { + "version": "1.54.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", + "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.1.tgz", + "integrity": "sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA==", + "license": "MIT", + "dependencies": { + "mime-db": "^1.54.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/negotiator": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz", + "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "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/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path-to-regexp": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.2.0.tgz", + "integrity": "sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ==", + "license": "MIT", + "engines": { + "node": ">=16" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/qs": { + "version": "6.14.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz", + "integrity": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.0.tgz", + "integrity": "sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.6.3", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/router": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz", + "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==", + "license": "MIT", + "dependencies": { + "debug": "^4.4.0", + "depd": "^2.0.0", + "is-promise": "^4.0.0", + "parseurl": "^1.3.3", + "path-to-regexp": "^8.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "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" + } + ], + "license": "MIT" + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" + }, + "node_modules/send": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/send/-/send-1.2.0.tgz", + "integrity": "sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw==", + "license": "MIT", + "dependencies": { + "debug": "^4.3.5", + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "etag": "^1.8.1", + "fresh": "^2.0.0", + "http-errors": "^2.0.0", + "mime-types": "^3.0.1", + "ms": "^2.1.3", + "on-finished": "^2.4.1", + "range-parser": "^1.2.1", + "statuses": "^2.0.1" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/serve-static": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.0.tgz", + "integrity": "sha512-61g9pCh0Vnh7IutZjtLGGpTA355+OPn2TyDv/6ivP2h/AdAVX9azsoxmg2/M6nZeQZNYBEwIcsne1mJd9oQItQ==", + "license": "MIT", + "dependencies": { + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "parseurl": "^1.3.3", + "send": "^1.2.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, + "node_modules/side-channel": { + "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": { + "es-errors": "^1.3.0", + "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" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/statuses": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz", + "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tsx": { + "version": "4.20.4", + "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.20.4.tgz", + "integrity": "sha512-yyxBKfORQ7LuRt/BQKBXrpcq59ZvSW0XxwfjAt3w2/8PmdxaFzijtMhTawprSHhpzeM5BgU2hXHG3lklIERZXg==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "~0.25.0", + "get-tsconfig": "^4.7.5" + }, + "bin": { + "tsx": "dist/cli.mjs" + }, + "engines": { + "node": ">=18.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + } + }, + "node_modules/type-is": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz", + "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==", + "license": "MIT", + "dependencies": { + "content-type": "^1.0.5", + "media-typer": "^1.1.0", + "mime-types": "^3.0.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typescript": { + "version": "5.9.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz", + "integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici-types": { + "version": "7.10.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.10.0.tgz", + "integrity": "sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==", + "dev": true, + "license": "MIT" + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "license": "ISC" + } + } +} diff --git a/test-backend/package.json b/test-backend/package.json new file mode 100644 index 0000000..7c74efd --- /dev/null +++ b/test-backend/package.json @@ -0,0 +1,25 @@ +{ + "name": "test-backend", + "version": "1.0.0", + "type": "module", + "description": "Express server for serving saudi_meters.json", + "main": "app.ts", + "scripts": { + "start": "node dist/app.js", + "dev": "tsx app.ts", + "build": "tsc", + "generate": "node generate_meters.js", + "validate": "node validate_borders.js" + }, + "dependencies": { + "cors": "2.8.5", + "express": "5.1.0" + }, + "devDependencies": { + "@types/cors": "2.8.19", + "@types/express": "5.0.3", + "@types/node": "24.3.0", + "tsx": "4.20.4", + "typescript": "5.9.2" + } +} \ No newline at end of file diff --git a/test-backend/pnpm-lock.yaml b/test-backend/pnpm-lock.yaml new file mode 100644 index 0000000..8a8a558 --- /dev/null +++ b/test-backend/pnpm-lock.yaml @@ -0,0 +1,1001 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + cors: + specifier: 2.8.5 + version: 2.8.5 + express: + specifier: 5.1.0 + version: 5.1.0 + devDependencies: + '@types/cors': + specifier: 2.8.19 + version: 2.8.19 + '@types/express': + specifier: 5.0.3 + version: 5.0.3 + '@types/node': + specifier: 24.3.0 + version: 24.3.0 + tsx: + specifier: 4.20.4 + version: 4.20.4 + typescript: + specifier: 5.9.2 + version: 5.9.2 + +packages: + + '@esbuild/aix-ppc64@0.25.9': + resolution: {integrity: sha512-OaGtL73Jck6pBKjNIe24BnFE6agGl+6KxDtTfHhy1HmhthfKouEcOhqpSL64K4/0WCtbKFLOdzD/44cJ4k9opA==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.25.9': + resolution: {integrity: sha512-IDrddSmpSv51ftWslJMvl3Q2ZT98fUSL2/rlUXuVqRXHCs5EUF1/f+jbjF5+NG9UffUDMCiTyh8iec7u8RlTLg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.25.9': + resolution: {integrity: sha512-5WNI1DaMtxQ7t7B6xa572XMXpHAaI/9Hnhk8lcxF4zVN4xstUgTlvuGDorBguKEnZO70qwEcLpfifMLoxiPqHQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.25.9': + resolution: {integrity: sha512-I853iMZ1hWZdNllhVZKm34f4wErd4lMyeV7BLzEExGEIZYsOzqDWDf+y082izYUE8gtJnYHdeDpN/6tUdwvfiw==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.25.9': + resolution: {integrity: sha512-XIpIDMAjOELi/9PB30vEbVMs3GV1v2zkkPnuyRRURbhqjyzIINwj+nbQATh4H9GxUgH1kFsEyQMxwiLFKUS6Rg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.25.9': + resolution: {integrity: sha512-jhHfBzjYTA1IQu8VyrjCX4ApJDnH+ez+IYVEoJHeqJm9VhG9Dh2BYaJritkYK3vMaXrf7Ogr/0MQ8/MeIefsPQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.25.9': + resolution: {integrity: sha512-z93DmbnY6fX9+KdD4Ue/H6sYs+bhFQJNCPZsi4XWJoYblUqT06MQUdBCpcSfuiN72AbqeBFu5LVQTjfXDE2A6Q==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.25.9': + resolution: {integrity: sha512-mrKX6H/vOyo5v71YfXWJxLVxgy1kyt1MQaD8wZJgJfG4gq4DpQGpgTB74e5yBeQdyMTbgxp0YtNj7NuHN0PoZg==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.25.9': + resolution: {integrity: sha512-BlB7bIcLT3G26urh5Dmse7fiLmLXnRlopw4s8DalgZ8ef79Jj4aUcYbk90g8iCa2467HX8SAIidbL7gsqXHdRw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.25.9': + resolution: {integrity: sha512-HBU2Xv78SMgaydBmdor38lg8YDnFKSARg1Q6AT0/y2ezUAKiZvc211RDFHlEZRFNRVhcMamiToo7bDx3VEOYQw==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.25.9': + resolution: {integrity: sha512-e7S3MOJPZGp2QW6AK6+Ly81rC7oOSerQ+P8L0ta4FhVi+/j/v2yZzx5CqqDaWjtPFfYz21Vi1S0auHrap3Ma3A==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.25.9': + resolution: {integrity: sha512-Sbe10Bnn0oUAB2AalYztvGcK+o6YFFA/9829PhOCUS9vkJElXGdphz0A3DbMdP8gmKkqPmPcMJmJOrI3VYB1JQ==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.25.9': + resolution: {integrity: sha512-YcM5br0mVyZw2jcQeLIkhWtKPeVfAerES5PvOzaDxVtIyZ2NUBZKNLjC5z3/fUlDgT6w89VsxP2qzNipOaaDyA==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.25.9': + resolution: {integrity: sha512-++0HQvasdo20JytyDpFvQtNrEsAgNG2CY1CLMwGXfFTKGBGQT3bOeLSYE2l1fYdvML5KUuwn9Z8L1EWe2tzs1w==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.25.9': + resolution: {integrity: sha512-uNIBa279Y3fkjV+2cUjx36xkx7eSjb8IvnL01eXUKXez/CBHNRw5ekCGMPM0BcmqBxBcdgUWuUXmVWwm4CH9kg==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.25.9': + resolution: {integrity: sha512-Mfiphvp3MjC/lctb+7D287Xw1DGzqJPb/J2aHHcHxflUo+8tmN/6d4k6I2yFR7BVo5/g7x2Monq4+Yew0EHRIA==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.25.9': + resolution: {integrity: sha512-iSwByxzRe48YVkmpbgoxVzn76BXjlYFXC7NvLYq+b+kDjyyk30J0JY47DIn8z1MO3K0oSl9fZoRmZPQI4Hklzg==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-arm64@0.25.9': + resolution: {integrity: sha512-9jNJl6FqaUG+COdQMjSCGW4QiMHH88xWbvZ+kRVblZsWrkXlABuGdFJ1E9L7HK+T0Yqd4akKNa/lO0+jDxQD4Q==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.25.9': + resolution: {integrity: sha512-RLLdkflmqRG8KanPGOU7Rpg829ZHu8nFy5Pqdi9U01VYtG9Y0zOG6Vr2z4/S+/3zIyOxiK6cCeYNWOFR9QP87g==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-arm64@0.25.9': + resolution: {integrity: sha512-YaFBlPGeDasft5IIM+CQAhJAqS3St3nJzDEgsgFixcfZeyGPCd6eJBWzke5piZuZ7CtL656eOSYKk4Ls2C0FRQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.25.9': + resolution: {integrity: sha512-1MkgTCuvMGWuqVtAvkpkXFmtL8XhWy+j4jaSO2wxfJtilVCi0ZE37b8uOdMItIHz4I6z1bWWtEX4CJwcKYLcuA==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openharmony-arm64@0.25.9': + resolution: {integrity: sha512-4Xd0xNiMVXKh6Fa7HEJQbrpP3m3DDn43jKxMjxLLRjWnRsfxjORYJlXPO4JNcXtOyfajXorRKY9NkOpTHptErg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/sunos-x64@0.25.9': + resolution: {integrity: sha512-WjH4s6hzo00nNezhp3wFIAfmGZ8U7KtrJNlFMRKxiI9mxEK1scOMAaa9i4crUtu+tBr+0IN6JCuAcSBJZfnphw==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.25.9': + resolution: {integrity: sha512-mGFrVJHmZiRqmP8xFOc6b84/7xa5y5YvR1x8djzXpJBSv/UsNK6aqec+6JDjConTgvvQefdGhFDAs2DLAds6gQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.25.9': + resolution: {integrity: sha512-b33gLVU2k11nVx1OhX3C8QQP6UHQK4ZtN56oFWvVXvz2VkDoe6fbG8TOgHFxEvqeqohmRnIHe5A1+HADk4OQww==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.25.9': + resolution: {integrity: sha512-PPOl1mi6lpLNQxnGoyAfschAodRFYXJ+9fs6WHXz7CSWKbOqiMZsubC+BQsVKuul+3vKLuwTHsS2c2y9EoKwxQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + + '@types/body-parser@1.19.6': + resolution: {integrity: sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==} + + '@types/connect@3.4.38': + resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} + + '@types/cors@2.8.19': + resolution: {integrity: sha512-mFNylyeyqN93lfe/9CSxOGREz8cpzAhH+E93xJ4xWQf62V8sQ/24reV2nyzUWM6H6Xji+GGHpkbLe7pVoUEskg==} + + '@types/express-serve-static-core@5.0.7': + resolution: {integrity: sha512-R+33OsgWw7rOhD1emjU7dzCDHucJrgJXMA5PYCzJxVil0dsyx5iBEPHqpPfiKNJQb7lZ1vxwoLR4Z87bBUpeGQ==} + + '@types/express@5.0.3': + resolution: {integrity: sha512-wGA0NX93b19/dZC1J18tKWVIYWyyF2ZjT9vin/NRu0qzzvfVzWjs04iq2rQ3H65vCTQYlRqs3YHfY7zjdV+9Kw==} + + '@types/http-errors@2.0.5': + resolution: {integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==} + + '@types/mime@1.3.5': + resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} + + '@types/node@24.3.0': + resolution: {integrity: sha512-aPTXCrfwnDLj4VvXrm+UUCQjNEvJgNA8s5F1cvwQU+3KNltTOkBm1j30uNLyqqPNe7gE3KFzImYoZEfLhp4Yow==} + + '@types/qs@6.14.0': + resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==} + + '@types/range-parser@1.2.7': + resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} + + '@types/send@0.17.5': + resolution: {integrity: sha512-z6F2D3cOStZvuk2SaP6YrwkNO65iTZcwA2ZkSABegdkAh/lf+Aa/YQndZVfmEXT5vgAp6zv06VQ3ejSVjAny4w==} + + '@types/serve-static@1.15.8': + resolution: {integrity: sha512-roei0UY3LhpOJvjbIP6ZZFngyLKl5dskOtDhxY5THRSpO+ZI+nzJ+m5yUMzGrp89YRa7lvknKkMYjqQFGwA7Sg==} + + accepts@2.0.0: + resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==} + engines: {node: '>= 0.6'} + + body-parser@2.2.0: + resolution: {integrity: sha512-02qvAaxv8tp7fBa/mw1ga98OGm+eCbqzJOKoRt70sLmfEEi+jyBYVTDGfCL/k06/4EMk/z01gCe7HoCH/f2LTg==} + engines: {node: '>=18'} + + bytes@3.1.2: + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} + engines: {node: '>= 0.8'} + + call-bind-apply-helpers@1.0.2: + resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} + engines: {node: '>= 0.4'} + + call-bound@1.0.4: + resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} + engines: {node: '>= 0.4'} + + content-disposition@1.0.0: + resolution: {integrity: sha512-Au9nRL8VNUut/XSzbQA38+M78dzP4D+eqg3gfJHMIHHYa3bg067xj1KxMUWj+VULbiZMowKngFFbKczUrNJ1mg==} + engines: {node: '>= 0.6'} + + content-type@1.0.5: + resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} + engines: {node: '>= 0.6'} + + cookie-signature@1.2.2: + resolution: {integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==} + engines: {node: '>=6.6.0'} + + cookie@0.7.1: + resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==} + engines: {node: '>= 0.6'} + + cors@2.8.5: + resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==} + engines: {node: '>= 0.10'} + + debug@4.4.1: + resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + depd@2.0.0: + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} + + dunder-proto@1.0.1: + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} + engines: {node: '>= 0.4'} + + ee-first@1.1.1: + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + + encodeurl@2.0.0: + resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} + engines: {node: '>= 0.8'} + + es-define-property@1.0.1: + resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} + engines: {node: '>= 0.4'} + + es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + es-object-atoms@1.1.1: + resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} + engines: {node: '>= 0.4'} + + esbuild@0.25.9: + resolution: {integrity: sha512-CRbODhYyQx3qp7ZEwzxOk4JBqmD/seJrzPa/cGjY1VtIn5E09Oi9/dB4JwctnfZ8Q8iT7rioVv5k/FNT/uf54g==} + engines: {node: '>=18'} + hasBin: true + + escape-html@1.0.3: + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + + etag@1.8.1: + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} + engines: {node: '>= 0.6'} + + express@5.1.0: + resolution: {integrity: sha512-DT9ck5YIRU+8GYzzU5kT3eHGA5iL+1Zd0EutOmTE9Dtk+Tvuzd23VBU+ec7HPNSTxXYO55gPV/hq4pSBJDjFpA==} + engines: {node: '>= 18'} + + finalhandler@2.1.0: + resolution: {integrity: sha512-/t88Ty3d5JWQbWYgaOGCCYfXRwV1+be02WqYYlL6h0lEiUAMPM8o8qKGO01YIkOHzka2up08wvgYD0mDiI+q3Q==} + engines: {node: '>= 0.8'} + + forwarded@0.2.0: + resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} + engines: {node: '>= 0.6'} + + fresh@2.0.0: + resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==} + engines: {node: '>= 0.8'} + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + get-intrinsic@1.3.0: + resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} + engines: {node: '>= 0.4'} + + get-proto@1.0.1: + resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} + engines: {node: '>= 0.4'} + + get-tsconfig@4.10.1: + resolution: {integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==} + + gopd@1.2.0: + resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} + engines: {node: '>= 0.4'} + + has-symbols@1.1.0: + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} + engines: {node: '>= 0.4'} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + http-errors@2.0.0: + resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} + engines: {node: '>= 0.8'} + + iconv-lite@0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + ipaddr.js@1.9.1: + resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} + engines: {node: '>= 0.10'} + + is-promise@4.0.0: + resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==} + + math-intrinsics@1.1.0: + resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} + engines: {node: '>= 0.4'} + + media-typer@1.1.0: + resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==} + engines: {node: '>= 0.8'} + + merge-descriptors@2.0.0: + resolution: {integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==} + engines: {node: '>=18'} + + mime-db@1.54.0: + resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==} + engines: {node: '>= 0.6'} + + mime-types@3.0.1: + resolution: {integrity: sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA==} + engines: {node: '>= 0.6'} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + negotiator@1.0.0: + resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==} + engines: {node: '>= 0.6'} + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + object-inspect@1.13.4: + resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} + engines: {node: '>= 0.4'} + + on-finished@2.4.1: + resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} + engines: {node: '>= 0.8'} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + parseurl@1.3.3: + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} + engines: {node: '>= 0.8'} + + path-to-regexp@8.2.0: + resolution: {integrity: sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ==} + engines: {node: '>=16'} + + proxy-addr@2.0.7: + resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} + engines: {node: '>= 0.10'} + + qs@6.14.0: + resolution: {integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==} + engines: {node: '>=0.6'} + + range-parser@1.2.1: + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} + engines: {node: '>= 0.6'} + + raw-body@3.0.0: + resolution: {integrity: sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==} + engines: {node: '>= 0.8'} + + resolve-pkg-maps@1.0.0: + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + + router@2.2.0: + resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==} + engines: {node: '>= 18'} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + send@1.2.0: + resolution: {integrity: sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw==} + engines: {node: '>= 18'} + + serve-static@2.2.0: + resolution: {integrity: sha512-61g9pCh0Vnh7IutZjtLGGpTA355+OPn2TyDv/6ivP2h/AdAVX9azsoxmg2/M6nZeQZNYBEwIcsne1mJd9oQItQ==} + engines: {node: '>= 18'} + + setprototypeof@1.2.0: + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + + side-channel-list@1.0.0: + resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} + engines: {node: '>= 0.4'} + + side-channel-map@1.0.1: + resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} + engines: {node: '>= 0.4'} + + side-channel-weakmap@1.0.2: + resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} + engines: {node: '>= 0.4'} + + side-channel@1.1.0: + resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} + engines: {node: '>= 0.4'} + + statuses@2.0.1: + resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} + engines: {node: '>= 0.8'} + + toidentifier@1.0.1: + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + engines: {node: '>=0.6'} + + tsx@4.20.4: + resolution: {integrity: sha512-yyxBKfORQ7LuRt/BQKBXrpcq59ZvSW0XxwfjAt3w2/8PmdxaFzijtMhTawprSHhpzeM5BgU2hXHG3lklIERZXg==} + engines: {node: '>=18.0.0'} + hasBin: true + + type-is@2.0.1: + resolution: {integrity: sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==} + engines: {node: '>= 0.6'} + + typescript@5.9.2: + resolution: {integrity: sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==} + engines: {node: '>=14.17'} + hasBin: true + + undici-types@7.10.0: + resolution: {integrity: sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==} + + unpipe@1.0.0: + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + engines: {node: '>= 0.8'} + + vary@1.1.2: + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + engines: {node: '>= 0.8'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + +snapshots: + + '@esbuild/aix-ppc64@0.25.9': + optional: true + + '@esbuild/android-arm64@0.25.9': + optional: true + + '@esbuild/android-arm@0.25.9': + optional: true + + '@esbuild/android-x64@0.25.9': + optional: true + + '@esbuild/darwin-arm64@0.25.9': + optional: true + + '@esbuild/darwin-x64@0.25.9': + optional: true + + '@esbuild/freebsd-arm64@0.25.9': + optional: true + + '@esbuild/freebsd-x64@0.25.9': + optional: true + + '@esbuild/linux-arm64@0.25.9': + optional: true + + '@esbuild/linux-arm@0.25.9': + optional: true + + '@esbuild/linux-ia32@0.25.9': + optional: true + + '@esbuild/linux-loong64@0.25.9': + optional: true + + '@esbuild/linux-mips64el@0.25.9': + optional: true + + '@esbuild/linux-ppc64@0.25.9': + optional: true + + '@esbuild/linux-riscv64@0.25.9': + optional: true + + '@esbuild/linux-s390x@0.25.9': + optional: true + + '@esbuild/linux-x64@0.25.9': + optional: true + + '@esbuild/netbsd-arm64@0.25.9': + optional: true + + '@esbuild/netbsd-x64@0.25.9': + optional: true + + '@esbuild/openbsd-arm64@0.25.9': + optional: true + + '@esbuild/openbsd-x64@0.25.9': + optional: true + + '@esbuild/openharmony-arm64@0.25.9': + optional: true + + '@esbuild/sunos-x64@0.25.9': + optional: true + + '@esbuild/win32-arm64@0.25.9': + optional: true + + '@esbuild/win32-ia32@0.25.9': + optional: true + + '@esbuild/win32-x64@0.25.9': + optional: true + + '@types/body-parser@1.19.6': + dependencies: + '@types/connect': 3.4.38 + '@types/node': 24.3.0 + + '@types/connect@3.4.38': + dependencies: + '@types/node': 24.3.0 + + '@types/cors@2.8.19': + dependencies: + '@types/node': 24.3.0 + + '@types/express-serve-static-core@5.0.7': + dependencies: + '@types/node': 24.3.0 + '@types/qs': 6.14.0 + '@types/range-parser': 1.2.7 + '@types/send': 0.17.5 + + '@types/express@5.0.3': + dependencies: + '@types/body-parser': 1.19.6 + '@types/express-serve-static-core': 5.0.7 + '@types/serve-static': 1.15.8 + + '@types/http-errors@2.0.5': {} + + '@types/mime@1.3.5': {} + + '@types/node@24.3.0': + dependencies: + undici-types: 7.10.0 + + '@types/qs@6.14.0': {} + + '@types/range-parser@1.2.7': {} + + '@types/send@0.17.5': + dependencies: + '@types/mime': 1.3.5 + '@types/node': 24.3.0 + + '@types/serve-static@1.15.8': + dependencies: + '@types/http-errors': 2.0.5 + '@types/node': 24.3.0 + '@types/send': 0.17.5 + + accepts@2.0.0: + dependencies: + mime-types: 3.0.1 + negotiator: 1.0.0 + + body-parser@2.2.0: + dependencies: + bytes: 3.1.2 + content-type: 1.0.5 + debug: 4.4.1 + http-errors: 2.0.0 + iconv-lite: 0.6.3 + on-finished: 2.4.1 + qs: 6.14.0 + raw-body: 3.0.0 + type-is: 2.0.1 + transitivePeerDependencies: + - supports-color + + bytes@3.1.2: {} + + call-bind-apply-helpers@1.0.2: + dependencies: + es-errors: 1.3.0 + function-bind: 1.1.2 + + call-bound@1.0.4: + dependencies: + call-bind-apply-helpers: 1.0.2 + get-intrinsic: 1.3.0 + + content-disposition@1.0.0: + dependencies: + safe-buffer: 5.2.1 + + content-type@1.0.5: {} + + cookie-signature@1.2.2: {} + + cookie@0.7.1: {} + + cors@2.8.5: + dependencies: + object-assign: 4.1.1 + vary: 1.1.2 + + debug@4.4.1: + dependencies: + ms: 2.1.3 + + depd@2.0.0: {} + + dunder-proto@1.0.1: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-errors: 1.3.0 + gopd: 1.2.0 + + ee-first@1.1.1: {} + + encodeurl@2.0.0: {} + + es-define-property@1.0.1: {} + + es-errors@1.3.0: {} + + es-object-atoms@1.1.1: + dependencies: + es-errors: 1.3.0 + + esbuild@0.25.9: + optionalDependencies: + '@esbuild/aix-ppc64': 0.25.9 + '@esbuild/android-arm': 0.25.9 + '@esbuild/android-arm64': 0.25.9 + '@esbuild/android-x64': 0.25.9 + '@esbuild/darwin-arm64': 0.25.9 + '@esbuild/darwin-x64': 0.25.9 + '@esbuild/freebsd-arm64': 0.25.9 + '@esbuild/freebsd-x64': 0.25.9 + '@esbuild/linux-arm': 0.25.9 + '@esbuild/linux-arm64': 0.25.9 + '@esbuild/linux-ia32': 0.25.9 + '@esbuild/linux-loong64': 0.25.9 + '@esbuild/linux-mips64el': 0.25.9 + '@esbuild/linux-ppc64': 0.25.9 + '@esbuild/linux-riscv64': 0.25.9 + '@esbuild/linux-s390x': 0.25.9 + '@esbuild/linux-x64': 0.25.9 + '@esbuild/netbsd-arm64': 0.25.9 + '@esbuild/netbsd-x64': 0.25.9 + '@esbuild/openbsd-arm64': 0.25.9 + '@esbuild/openbsd-x64': 0.25.9 + '@esbuild/openharmony-arm64': 0.25.9 + '@esbuild/sunos-x64': 0.25.9 + '@esbuild/win32-arm64': 0.25.9 + '@esbuild/win32-ia32': 0.25.9 + '@esbuild/win32-x64': 0.25.9 + + escape-html@1.0.3: {} + + etag@1.8.1: {} + + express@5.1.0: + dependencies: + accepts: 2.0.0 + body-parser: 2.2.0 + content-disposition: 1.0.0 + content-type: 1.0.5 + cookie: 0.7.1 + cookie-signature: 1.2.2 + debug: 4.4.1 + encodeurl: 2.0.0 + escape-html: 1.0.3 + etag: 1.8.1 + finalhandler: 2.1.0 + fresh: 2.0.0 + http-errors: 2.0.0 + merge-descriptors: 2.0.0 + mime-types: 3.0.1 + on-finished: 2.4.1 + once: 1.4.0 + parseurl: 1.3.3 + proxy-addr: 2.0.7 + qs: 6.14.0 + range-parser: 1.2.1 + router: 2.2.0 + send: 1.2.0 + serve-static: 2.2.0 + statuses: 2.0.1 + type-is: 2.0.1 + vary: 1.1.2 + transitivePeerDependencies: + - supports-color + + finalhandler@2.1.0: + dependencies: + debug: 4.4.1 + encodeurl: 2.0.0 + escape-html: 1.0.3 + on-finished: 2.4.1 + parseurl: 1.3.3 + statuses: 2.0.1 + transitivePeerDependencies: + - supports-color + + forwarded@0.2.0: {} + + fresh@2.0.0: {} + + fsevents@2.3.3: + optional: true + + function-bind@1.1.2: {} + + get-intrinsic@1.3.0: + dependencies: + 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 + + get-proto@1.0.1: + dependencies: + dunder-proto: 1.0.1 + es-object-atoms: 1.1.1 + + get-tsconfig@4.10.1: + dependencies: + resolve-pkg-maps: 1.0.0 + + gopd@1.2.0: {} + + has-symbols@1.1.0: {} + + hasown@2.0.2: + dependencies: + function-bind: 1.1.2 + + http-errors@2.0.0: + dependencies: + depd: 2.0.0 + inherits: 2.0.4 + setprototypeof: 1.2.0 + statuses: 2.0.1 + toidentifier: 1.0.1 + + iconv-lite@0.6.3: + dependencies: + safer-buffer: 2.1.2 + + inherits@2.0.4: {} + + ipaddr.js@1.9.1: {} + + is-promise@4.0.0: {} + + math-intrinsics@1.1.0: {} + + media-typer@1.1.0: {} + + merge-descriptors@2.0.0: {} + + mime-db@1.54.0: {} + + mime-types@3.0.1: + dependencies: + mime-db: 1.54.0 + + ms@2.1.3: {} + + negotiator@1.0.0: {} + + object-assign@4.1.1: {} + + object-inspect@1.13.4: {} + + on-finished@2.4.1: + dependencies: + ee-first: 1.1.1 + + once@1.4.0: + dependencies: + wrappy: 1.0.2 + + parseurl@1.3.3: {} + + path-to-regexp@8.2.0: {} + + proxy-addr@2.0.7: + dependencies: + forwarded: 0.2.0 + ipaddr.js: 1.9.1 + + qs@6.14.0: + dependencies: + side-channel: 1.1.0 + + range-parser@1.2.1: {} + + raw-body@3.0.0: + dependencies: + bytes: 3.1.2 + http-errors: 2.0.0 + iconv-lite: 0.6.3 + unpipe: 1.0.0 + + resolve-pkg-maps@1.0.0: {} + + router@2.2.0: + dependencies: + debug: 4.4.1 + depd: 2.0.0 + is-promise: 4.0.0 + parseurl: 1.3.3 + path-to-regexp: 8.2.0 + transitivePeerDependencies: + - supports-color + + safe-buffer@5.2.1: {} + + safer-buffer@2.1.2: {} + + send@1.2.0: + dependencies: + debug: 4.4.1 + encodeurl: 2.0.0 + escape-html: 1.0.3 + etag: 1.8.1 + fresh: 2.0.0 + http-errors: 2.0.0 + mime-types: 3.0.1 + ms: 2.1.3 + on-finished: 2.4.1 + range-parser: 1.2.1 + statuses: 2.0.1 + transitivePeerDependencies: + - supports-color + + serve-static@2.2.0: + dependencies: + encodeurl: 2.0.0 + escape-html: 1.0.3 + parseurl: 1.3.3 + send: 1.2.0 + transitivePeerDependencies: + - supports-color + + setprototypeof@1.2.0: {} + + side-channel-list@1.0.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.4 + + side-channel-map@1.0.1: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 + + side-channel-weakmap@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 + side-channel-map: 1.0.1 + + side-channel@1.1.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.4 + side-channel-list: 1.0.0 + side-channel-map: 1.0.1 + side-channel-weakmap: 1.0.2 + + statuses@2.0.1: {} + + toidentifier@1.0.1: {} + + tsx@4.20.4: + dependencies: + esbuild: 0.25.9 + get-tsconfig: 4.10.1 + optionalDependencies: + fsevents: 2.3.3 + + type-is@2.0.1: + dependencies: + content-type: 1.0.5 + media-typer: 1.1.0 + mime-types: 3.0.1 + + typescript@5.9.2: {} + + undici-types@7.10.0: {} + + unpipe@1.0.0: {} + + vary@1.1.2: {} + + wrappy@1.0.2: {} diff --git a/test-backend/sa.json b/test-backend/sa.json new file mode 100644 index 0000000..fda3145 --- /dev/null +++ b/test-backend/sa.json @@ -0,0 +1,9535 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 50.80787195424011, + 24.746649601577193 + ], + [ + 50.881007536631735, + 24.636404397220655 + ], + [ + 50.92860153319205, + 24.587208457040074 + ], + [ + 50.97888269919611, + 24.567726414504225 + ], + [ + 51.038879015995164, + 24.55987141046624 + ], + [ + 51.095464709442886, + 24.560181464511185 + ], + [ + 51.14745120792936, + 24.576278742473647 + ], + [ + 51.215258278768125, + 24.625850212867956 + ], + [ + 51.21762127370845, + 24.617661702229473 + ], + [ + 51.268809456377646, + 24.62449792920427 + ], + [ + 51.278168180238474, + 24.61888269297451 + ], + [ + 51.28638755402462, + 24.608384397706207 + ], + [ + 51.2951766415617, + 24.602606626678437 + ], + [ + 51.30640708203458, + 24.610825777499123 + ], + [ + 51.30746504530561, + 24.60309484242202 + ], + [ + 51.306325707109835, + 24.594061500665703 + ], + [ + 51.302419476402584, + 24.586615387939325 + ], + [ + 51.29590904692126, + 24.583563515849345 + ], + [ + 51.29029381075549, + 24.578517923021305 + ], + [ + 51.292246949029895, + 24.567816546520564 + ], + [ + 51.29688562011369, + 24.5580916041781 + ], + [ + 51.29957116757303, + 24.556219863393675 + ], + [ + 51.29656009448013, + 24.52191805879103 + ], + [ + 51.30241946703995, + 24.51715729436677 + ], + [ + 51.32007896565506, + 24.522691089722244 + ], + [ + 51.33366945731253, + 24.532049783112978 + ], + [ + 51.361094580657664, + 24.57611710567244 + ], + [ + 51.3751733650147, + 24.589097325132077 + ], + [ + 51.387950050215125, + 24.597072514089653 + ], + [ + 51.39584394833185, + 24.608343838235818 + ], + [ + 51.39527429947175, + 24.63133385754564 + ], + [ + 51.41000410885634, + 24.624335090340857 + ], + [ + 51.42839602532451, + 24.622870141497643 + ], + [ + 51.44385826132667, + 24.61969628624898 + ], + [ + 51.45045006831149, + 24.607407966029516 + ], + [ + 51.45533289205473, + 24.594183779890987 + ], + [ + 51.46753990889925, + 24.592352595975512 + ], + [ + 51.48308352025829, + 24.59218975731361 + ], + [ + 51.49830162590914, + 24.583563515849345 + ], + [ + 51.498301612614064, + 24.57611710567244 + ], + [ + 51.48210696759426, + 24.569240632419913 + ], + [ + 51.46143638716519, + 24.563462569603995 + ], + [ + 51.443695505539175, + 24.554754918371646 + ], + [ + 51.436208545251425, + 24.538804568581632 + ], + [ + 51.432302276698216, + 24.538763708779125 + ], + [ + 51.409515818786474, + 24.515855189692555 + ], + [ + 51.404795754453865, + 24.50775774645317 + ], + [ + 51.39975018332803, + 24.494574169522913 + ], + [ + 51.39527427140746, + 24.487941673983002 + ], + [ + 51.33619224436427, + 24.447943337985283 + ], + [ + 51.3269149256404, + 24.436102750648473 + ], + [ + 51.324229359512344, + 24.431301141729726 + ], + [ + 51.311371287881094, + 24.414862352363382 + ], + [ + 51.306407095132826, + 24.40599191168237 + ], + [ + 51.30437259146511, + 24.39618560903448 + ], + [ + 51.30225669306889, + 24.37400937745137 + ], + [ + 51.29957116097211, + 24.364447342046482 + ], + [ + 51.299082863322866, + 24.3587098820275 + ], + [ + 51.29997807604971, + 24.35199630120231 + ], + [ + 51.29965254282486, + 24.346340262327754 + ], + [ + 51.29590904415937, + 24.343939465549266 + ], + [ + 51.28516686773256, + 24.3444685361269 + ], + [ + 51.28044680275896, + 24.343573232145587 + ], + [ + 51.27857508056683, + 24.34052168788422 + ], + [ + 51.27784265064656, + 24.318996548108665 + ], + [ + 51.27881919472798, + 24.307765903223213 + ], + [ + 51.2822371784065, + 24.302964616869666 + ], + [ + 51.34498130060424, + 24.29779679807968 + ], + [ + 51.367849158412184, + 24.302964616869666 + ], + [ + 51.38013756792109, + 24.309963300927947 + ], + [ + 51.38851973929092, + 24.316555194626925 + ], + [ + 51.39779707607682, + 24.321519320319528 + ], + [ + 51.41285241703248, + 24.323472463518495 + ], + [ + 51.479014533799486, + 24.3108586038425 + ], + [ + 51.49691817420452, + 24.298285308786113 + ], + [ + 51.52613367171905, + 24.2682560364192 + ], + [ + 51.56934655039073, + 24.256170969648494 + ], + [ + 51.575538762049625, + 24.2177217136226 + ], + [ + 51.5752287144728, + 24.19193528151555 + ], + [ + 51.573161663528616, + 24.127830723415528 + ], + [ + 51.57853600099984, + 24.10183736950561 + ], + [ + 51.5935221813682, + 24.078324728338096 + ], + [ + 51.65046959016219, + 24.010602582008907 + ], + [ + 51.702559439656945, + 23.948590923430945 + ], + [ + 51.75475265567238, + 23.886553548152694 + ], + [ + 51.80684249964981, + 23.82449015330224 + ], + [ + 51.85903567599115, + 23.76252992215356 + ], + [ + 51.91122889645556, + 23.700518429838546 + ], + [ + 51.96342206491303, + 23.638558120963964 + ], + [ + 52.0155119249434, + 23.57649487192749 + ], + [ + 52.06770511568408, + 23.51448310159388 + ], + [ + 52.11979496458598, + 23.45252310754948 + ], + [ + 52.17198814549216, + 23.39048540212823 + ], + [ + 52.224078014922725, + 23.32842225765187 + ], + [ + 52.27627118583384, + 23.266410280770277 + ], + [ + 52.32830936518932, + 23.204450369950067 + ], + [ + 52.38050255555507, + 23.142412737892116 + ], + [ + 52.432644076776455, + 23.080375192842776 + ], + [ + 52.484837283417036, + 23.018337732213784 + ], + [ + 52.538477416760344, + 22.95474985559064 + ], + [ + 52.5584762056525, + 22.938575231042844 + ], + [ + 52.58307417394249, + 22.93110784920683 + ], + [ + 52.74378788205061, + 22.911341644471786 + ], + [ + 52.882797471068926, + 22.894236616422 + ], + [ + 53.021807092761335, + 22.877131894625077 + ], + [ + 53.160920035864784, + 22.860052714749763 + ], + [ + 53.299929657630564, + 22.84297384100146 + ], + [ + 53.43893925009238, + 22.825868835918893 + ], + [ + 53.578052195884034, + 22.808763836447014 + ], + [ + 53.717061818428625, + 22.79168497949639 + ], + [ + 53.85607141242058, + 22.774579991074727 + ], + [ + 53.99528771308389, + 22.757449171577527 + ], + [ + 54.134297307369955, + 22.74031835749031 + ], + [ + 54.273306934082136, + 22.72326535870519 + ], + [ + 54.412419882193355, + 22.706160391749943 + ], + [ + 54.55132612612201, + 22.68900375704255 + ], + [ + 54.690335722944205, + 22.671950473478198 + ], + [ + 54.8294487038189, + 22.654897495429612 + ], + [ + 54.96856165541442, + 22.637740876120553 + ], + [ + 55.10529748800002, + 22.62094597231017 + ], + [ + 55.12038698972899, + 22.6234262726279 + ], + [ + 55.186842882892776, + 22.703576441440603 + ], + [ + 55.250404894582665, + 22.605494568894123 + ], + [ + 55.331123490905185, + 22.48059271384545 + ], + [ + 55.412048786189295, + 22.355690799151475 + ], + [ + 55.49276738246123, + 22.23078895390437 + ], + [ + 55.57358932106147, + 22.105938679318992 + ], + [ + 55.626712683882374, + 22.023773060883677 + ], + [ + 55.637047971301236, + 22.00191394403079 + ], + [ + 55.63756473148723, + 21.978969559878575 + ], + [ + 55.6001714001231, + 21.86606000540551 + ], + [ + 55.595190068644385, + 21.85101882573869 + ], + [ + 55.58857547361374, + 21.831226640668433 + ], + [ + 55.570075312255746, + 21.775416099978127 + ], + [ + 55.54123986917624, + 21.688651439928417 + ], + [ + 55.50382612401234, + 21.576151764769325 + ], + [ + 55.45959111208673, + 21.443033418653293 + ], + [ + 55.41018843966144, + 21.294463640762995 + ], + [ + 55.35747847478174, + 21.13555857073513 + ], + [ + 55.344623596989194, + 21.096908713108398 + ], + [ + 55.302908164099634, + 20.97148592290668 + ], + [ + 55.24833785212106, + 20.807413250242828 + ], + [ + 55.19552453421543, + 20.648559856201583 + ], + [ + 55.14622521773829, + 20.49999011965928 + ], + [ + 55.10188684102215, + 20.366845805233712 + ], + [ + 55.064473103418514, + 20.254268690820222 + ], + [ + 55.03574100741354, + 20.167555637758024 + ], + [ + 55.0171374918968, + 20.111745095899984 + ], + [ + 55.010522909167065, + 20.09200470177927 + ], + [ + 54.97838016429919, + 19.995421408512556 + ], + [ + 54.82789839081831, + 19.945269415539 + ], + [ + 54.656746061407596, + 19.8881929413106 + ], + [ + 54.485593700133435, + 19.831193639629504 + ], + [ + 54.31464806846594, + 19.774194602757525 + ], + [ + 54.1434957278097, + 19.717143857931784 + ], + [ + 53.972240030812905, + 19.660118914959487 + ], + [ + 53.8010876838467, + 19.603068101486585 + ], + [ + 53.63003868708175, + 19.545991418006338 + ], + [ + 53.458886362104494, + 19.488992511435665 + ], + [ + 53.28783735920368, + 19.43194159902688 + ], + [ + 53.11658167441148, + 19.374916791665747 + ], + [ + 52.945532665940675, + 19.317865815999482 + ], + [ + 52.77438032887418, + 19.26078927337473 + ], + [ + 52.60312463558807, + 19.203790210144515 + ], + [ + 52.43212732280677, + 19.146739444052912 + ], + [ + 52.26107833053119, + 19.0896886487516 + ], + [ + 52.08992598284131, + 19.032637824779794 + ], + [ + 51.97861493935264, + 18.9956373911694 + ], + [ + 51.82069177216807, + 18.97437265144696 + ], + [ + 51.6604948421536, + 18.95282370499895 + ], + [ + 51.50029788677592, + 18.931248617587734 + ], + [ + 51.34010095694192, + 18.909699663352438 + ], + [ + 51.179904000997, + 18.888150404843373 + ], + [ + 51.01981042365668, + 18.866575606296497 + ], + [ + 50.85971684563744, + 18.845026640600747 + ], + [ + 50.69936485957549, + 18.823529044026724 + ], + [ + 50.53932295648159, + 18.801902560871877 + ], + [ + 50.37912602550142, + 18.780353583977355 + ], + [ + 50.218929067695356, + 18.75885597631821 + ], + [ + 50.05873213430299, + 18.737255318771158 + ], + [ + 49.89853520133082, + 18.715706330943952 + ], + [ + 49.73844162100827, + 18.694157339530644 + ], + [ + 49.5782446615637, + 18.67260804413371 + ], + [ + 49.41804772765099, + 18.651059045635296 + ], + [ + 49.257850794487304, + 18.629510043637968 + ], + [ + 49.1288147279839, + 18.61209490966342 + ], + [ + 49.03584883500781, + 18.579719722599567 + ], + [ + 48.99130375619499, + 18.557886505452505 + ], + [ + 48.847539911021364, + 18.487709786311978 + ], + [ + 48.67597415739567, + 18.404019819916414 + ], + [ + 48.48435794081702, + 18.31040789290476 + ], + [ + 48.312585497721905, + 18.226588943967553 + ], + [ + 48.184427936920144, + 18.163931171991916 + ], + [ + 48.161948684840276, + 18.148919103841248 + ], + [ + 48.08438236356139, + 18.055901572746194 + ], + [ + 47.993586867091686, + 17.947587700854246 + ], + [ + 47.83550866154239, + 17.758193593645895 + ], + [ + 47.6862671375687, + 17.579651689564695 + ], + [ + 47.58901208837598, + 17.463276309268878 + ], + [ + 47.57211389238413, + 17.432322088044195 + ], + [ + 47.52482995699527, + 17.3075751881574 + ], + [ + 47.45796065779886, + 17.130893517057785 + ], + [ + 47.42856858631938, + 17.093103596365946 + ], + [ + 47.427574907390024, + 17.09182602168739 + ], + [ + 47.31357670423048, + 17.027902367471462 + ], + [ + 47.1908968448724, + 16.95891421657736 + ], + [ + 47.161337935302186, + 16.947442177316052 + ], + [ + 47.12878177759048, + 16.943049601875355 + ], + [ + 46.997026372362086, + 16.948514108720346 + ], + [ + 46.98300256221112, + 16.949095739660418 + ], + [ + 46.97034184055077, + 16.95684726369866 + ], + [ + 46.885799196403205, + 17.06955356056735 + ], + [ + 46.81179853917483, + 17.168462167325686 + ], + [ + 46.747203005225025, + 17.25476189097688 + ], + [ + 46.710099326487374, + 17.27538077803526 + ], + [ + 46.4878906672443, + 17.245976898417084 + ], + [ + 46.32262943166057, + 17.22406601452883 + ], + [ + 46.07995690363924, + 17.247992175703885 + ], + [ + 45.89082116837666, + 17.266647459882005 + ], + [ + 45.64230920118291, + 17.291090355189883 + ], + [ + 45.430384150239156, + 17.312019282167537 + ], + [ + 45.384702185514826, + 17.32648868695794 + ], + [ + 45.222128135271845, + 17.417387625410083 + ], + [ + 45.1653874152994, + 17.42839473349112 + ], + [ + 44.997335651986084, + 17.429531555806026 + ], + [ + 44.97246636762226, + 17.429696190749713 + ], + [ + 44.84902428840397, + 17.43051335689203 + ], + [ + 44.64645267926038, + 17.43180535063474 + ], + [ + 44.62464522094483, + 17.42720608721477 + ], + [ + 44.56196170758245, + 17.404468438019244 + ], + [ + 44.53379805748209, + 17.402866551870037 + ], + [ + 44.46517174800826, + 17.416457347802694 + ], + [ + 44.40414188428353, + 17.418731142749483 + ], + [ + 44.30735193030069, + 17.408964354361448 + ], + [ + 44.23056075047241, + 17.391859442684304 + ], + [ + 44.21154382899344, + 17.390619272702303 + ], + [ + 44.169375859405164, + 17.402349814400402 + ], + [ + 44.149015335359756, + 17.404830154245097 + ], + [ + 44.134287557640675, + 17.394701649084915 + ], + [ + 44.11966312187477, + 17.36994857041406 + ], + [ + 44.104470253981674, + 17.351965202302335 + ], + [ + 44.08534997337301, + 17.34343858161741 + ], + [ + 44.05935672479571, + 17.34705589491309 + ], + [ + 44.0209611406422, + 17.366021214905736 + ], + [ + 44.00390792154722, + 17.367829946512785 + ], + [ + 43.98230717146242, + 17.356822835844827 + ], + [ + 43.96711429987436, + 17.339562899475904 + ], + [ + 43.954298540915175, + 17.32002916621405 + ], + [ + 43.93869225893171, + 17.30519804472044 + ], + [ + 43.915127808607984, + 17.301839099700135 + ], + [ + 43.90329390714475, + 17.304319590698235 + ], + [ + 43.897351116613585, + 17.307368493095392 + ], + [ + 43.89404381779172, + 17.31217430346143 + ], + [ + 43.89006473537933, + 17.3201841875034 + ], + [ + 43.892648559025524, + 17.340079637069426 + ], + [ + 43.89264856137721, + 17.351035074674662 + ], + [ + 43.88670577234425, + 17.35367058649232 + ], + [ + 43.8632446652024, + 17.346952547397173 + ], + [ + 43.845778032974756, + 17.346177441026438 + ], + [ + 43.80619388410626, + 17.349588059255225 + ], + [ + 43.76878015143058, + 17.345505682169964 + ], + [ + 43.75064172382187, + 17.345660703444683 + ], + [ + 43.73064294131185, + 17.35243026611494 + ], + [ + 43.689301797032776, + 17.383849560802517 + ], + [ + 43.619538613227675, + 17.458832067638866 + ], + [ + 43.57706059166813, + 17.482965052791698 + ], + [ + 43.503369993102694, + 17.51345405384006 + ], + [ + 43.48714360030821, + 17.517484904678824 + ], + [ + 43.45314050256347, + 17.51877674774441 + ], + [ + 43.43495040459732, + 17.522859272213662 + ], + [ + 43.41288455721332, + 17.51996524335848 + ], + [ + 43.39102543454313, + 17.511955515849532 + ], + [ + 43.3030721405427, + 17.459038762580256 + ], + [ + 43.21594567539648, + 17.387208504792326 + ], + [ + 43.16788659904855, + 17.330519540785456 + ], + [ + 43.16504439077073, + 17.325920275576376 + ], + [ + 43.22219852699899, + 17.3078335569847 + ], + [ + 43.241835570448465, + 17.29341582497978 + ], + [ + 43.252170861084814, + 17.271970158884468 + ], + [ + 43.248605185724294, + 17.25191968311287 + ], + [ + 43.22617761009778, + 17.241274284264385 + ], + [ + 43.20333662493816, + 17.236313301143287 + ], + [ + 43.176878298026374, + 17.22551303059769 + ], + [ + 43.15615604283521, + 17.209699952089927 + ], + [ + 43.150058231414825, + 17.18995966499381 + ], + [ + 43.15098840596698, + 17.166860279826842 + ], + [ + 43.145303997092576, + 17.14655142802964 + ], + [ + 43.12432336034568, + 17.106967196546382 + ], + [ + 43.11843224655441, + 17.086244950541502 + ], + [ + 43.12246301323305, + 17.07012197243204 + ], + [ + 43.13031782649073, + 17.053482105259615 + ], + [ + 43.13600223907705, + 17.031416336893205 + ], + [ + 43.13589888968553, + 17.00960893622202 + ], + [ + 43.13155806425194, + 16.990436898935428 + ], + [ + 43.11543501708888, + 16.951834602492244 + ], + [ + 43.108717084642116, + 16.926978291221 + ], + [ + 43.11264449050335, + 16.910028374619383 + ], + [ + 43.13372847531112, + 16.871012679627743 + ], + [ + 43.14582076251326, + 16.83447747545737 + ], + [ + 43.15734460697294, + 16.825382429316875 + ], + [ + 43.19444827906394, + 16.815460451342346 + ], + [ + 43.20473189493838, + 16.807709074890063 + ], + [ + 43.21150150314778, + 16.79685696737934 + ], + [ + 43.21284509347767, + 16.78388623204749 + ], + [ + 43.20860762144353, + 16.773395840896423 + ], + [ + 43.201062870985034, + 16.768124958526958 + ], + [ + 43.19186445790268, + 16.764249119711838 + ], + [ + 43.18287275979004, + 16.757996283955077 + ], + [ + 43.16850671092279, + 16.737222345920497 + ], + [ + 43.17067712668712, + 16.723476501264038 + ], + [ + 43.179772179357926, + 16.70823196434804 + ], + [ + 43.18567890570865, + 16.684846992579956 + ], + [ + 43.18607669738778, + 16.68327214176921 + ], + [ + 43.179978880341295, + 16.66461697906828 + ], + [ + 43.162925657572735, + 16.661516397533774 + ], + [ + 43.122773070422895, + 16.673298637317252 + ], + [ + 43.09776168252292, + 16.677794563060512 + ], + [ + 43.08494592488334, + 16.67257520335531 + ], + [ + 43.07998498353348, + 16.658829206828223 + ], + [ + 43.078641395611, + 16.63769354795172 + ], + [ + 43.07461063636321, + 16.618780014486074 + ], + [ + 43.048772416662615, + 16.553460948364798 + ], + [ + 43.0362667262979, + 16.536304474097633 + ], + [ + 43.014665979892435, + 16.520698215424975 + ], + [ + 42.97094771033109, + 16.495790059297597 + ], + [ + 42.956271609929104, + 16.490725869957412 + ], + [ + 42.91741092591536, + 16.48380112086488 + ], + [ + 42.906765585496956, + 16.479357017883235 + ], + [ + 42.90294153263575, + 16.466282927930745 + ], + [ + 42.90562870775659, + 16.451090058841004 + ], + [ + 42.90676558221918, + 16.434915235700682 + ], + [ + 42.8981872979845, + 16.41889558410677 + ], + [ + 42.872452431921715, + 16.40163560905257 + ], + [ + 42.83731245452076, + 16.38721784702877 + ], + [ + 42.78948001087908, + 16.370957700843675 + ], + [ + 42.788096547564066, + 16.373683948418424 + ], + [ + 42.78825930932054, + 16.409857463145645 + ], + [ + 42.78126060849273, + 16.42023339664573 + ], + [ + 42.79493248811914, + 16.452826240827655 + ], + [ + 42.78825931464183, + 16.471869263854305 + ], + [ + 42.7397567100681, + 16.524562939962266 + ], + [ + 42.72868900052499, + 16.547186629608376 + ], + [ + 42.72494550864801, + 16.566351624622275 + ], + [ + 42.725922067240695, + 16.610174814719475 + ], + [ + 42.737640818649, + 16.652818065273042 + ], + [ + 42.73731529920019, + 16.671128635858008 + ], + [ + 42.71924889829356, + 16.67536048418952 + ], + [ + 42.72592207552458, + 16.682806776658495 + ], + [ + 42.713877795901155, + 16.693670903820337 + ], + [ + 42.70386803573152, + 16.709051836089017 + ], + [ + 42.70150801201986, + 16.723334097748374 + ], + [ + 42.712412955470114, + 16.730617556836744 + ], + [ + 42.706309445371815, + 16.740627412159697 + ], + [ + 42.67823326567293, + 16.76471583668111 + ], + [ + 42.67188561253917, + 16.771918029030985 + ], + [ + 42.65919030361245, + 16.789984496583145 + ], + [ + 42.63575279811696, + 16.815171588569672 + ], + [ + 42.62891686063467, + 16.8198916332907 + ], + [ + 42.59693443893915, + 16.8368187208918 + ], + [ + 42.58692467658702, + 16.837958098958673 + ], + [ + 42.575856962640444, + 16.832342775147023 + ], + [ + 42.54175866479279, + 16.87799720927957 + ], + [ + 42.555674671732206, + 16.922064470845726 + ], + [ + 42.54851321850567, + 16.938137133632484 + ], + [ + 42.54859459896648, + 16.98725009648587 + ], + [ + 42.54420006255875, + 17.004339859437607 + ], + [ + 42.53451582420145, + 17.0103214039639 + ], + [ + 42.52491295713943, + 17.01496003008786 + ], + [ + 42.52068118776099, + 17.028225028367952 + ], + [ + 42.51270592618569, + 17.037014082749277 + ], + [ + 42.49447676106357, + 17.038397558901767 + ], + [ + 42.47396894442629, + 17.037258181419354 + ], + [ + 42.45972741448356, + 17.03847897519634 + ], + [ + 42.44752037454989, + 17.049017578318235 + ], + [ + 42.43751061411492, + 17.06513094369552 + ], + [ + 42.42505943710714, + 17.09308496976279 + ], + [ + 42.42058352832051, + 17.107733440889888 + ], + [ + 42.415537957371896, + 17.142035228550405 + ], + [ + 42.41081790982868, + 17.1557478610417 + ], + [ + 42.40170332511521, + 17.16351965938697 + ], + [ + 42.35670006808474, + 17.182440528102916 + ], + [ + 42.35922285526275, + 17.165187941715555 + ], + [ + 42.366465686170415, + 17.149318679845628 + ], + [ + 42.3840438157028, + 17.12099843555463 + ], + [ + 42.363780141166394, + 17.10870998557988 + ], + [ + 42.3738712861587, + 17.043280283324627 + ], + [ + 42.36296634286658, + 17.024807046025728 + ], + [ + 42.35726973162056, + 17.045599746392952 + ], + [ + 42.35670006404307, + 17.114162472706376 + ], + [ + 42.35254967806363, + 17.134670360816774 + ], + [ + 42.33912194149258, + 17.17357006135418 + ], + [ + 42.3216251965229, + 17.309271559761502 + ], + [ + 42.31519615650512, + 17.333237971165047 + ], + [ + 42.31072024708819, + 17.350978894485166 + ], + [ + 42.316661000695994, + 17.400824237143876 + ], + [ + 42.31519616201982, + 17.422064549838357 + ], + [ + 42.307871937961785, + 17.444321962148983 + ], + [ + 42.301524284986904, + 17.453599350805515 + ], + [ + 42.29167728255945, + 17.457424258774765 + ], + [ + 42.28142336984372, + 17.45791245540483 + ], + [ + 42.27361086971634, + 17.459946958519755 + ], + [ + 42.26856530040731, + 17.464829826012434 + ], + [ + 42.26677493376367, + 17.473578158996254 + ], + [ + 42.26059003522604, + 17.485052731570295 + ], + [ + 42.15284263859764, + 17.57379783939109 + ], + [ + 42.14380944836776, + 17.5766056445792 + ], + [ + 42.14087975214992, + 17.57119372472591 + ], + [ + 42.13404380755612, + 17.579819929546897 + ], + [ + 42.123301626424585, + 17.600775420063208 + ], + [ + 42.103526230739725, + 17.62750874912097 + ], + [ + 42.097666870840804, + 17.64435467436077 + ], + [ + 42.093516466600796, + 17.652085599577493 + ], + [ + 42.086192246510215, + 17.655422157820112 + ], + [ + 42.06348717383283, + 17.65086495881728 + ], + [ + 42.05323327733051, + 17.653225124652096 + ], + [ + 42.048838731650186, + 17.665676080544756 + ], + [ + 42.0437931722098, + 17.67430258208678 + ], + [ + 42.0004988983563, + 17.717474741056737 + ], + [ + 41.99870852572294, + 17.715480798099225 + ], + [ + 41.9924422484914, + 17.71271385296596 + ], + [ + 41.9848738977588, + 17.71063879430602 + ], + [ + 41.97934004375828, + 17.71063879430602 + ], + [ + 41.96973717743938, + 17.719794047892975 + ], + [ + 41.938975453677465, + 17.761867531153896 + ], + [ + 41.928721541692575, + 17.767157171865897 + ], + [ + 41.8694767651638, + 17.820502110564146 + ], + [ + 41.84782961846046, + 17.811957031244066 + ], + [ + 41.810394723571264, + 17.83690008158001 + ], + [ + 41.787608267797594, + 17.833563526305813 + ], + [ + 41.77833092285032, + 17.85980862939157 + ], + [ + 41.76075279776352, + 17.876532261121284 + ], + [ + 41.73926841741871, + 17.890692338547485 + ], + [ + 41.71924888988644, + 17.90924707653696 + ], + [ + 41.67725670604675, + 17.96059803499932 + ], + [ + 41.67090904423221, + 17.97752504733056 + ], + [ + 41.67237389739995, + 17.990139114885135 + ], + [ + 41.67530359168935, + 18.00128829510262 + ], + [ + 41.67367597972855, + 18.00926345400638 + ], + [ + 41.660899277992726, + 18.012355758233866 + ], + [ + 41.6535750762354, + 18.01532638911648 + ], + [ + 41.65211022624198, + 18.022650520201097 + ], + [ + 41.65259850517232, + 18.031439537183818 + ], + [ + 41.651052282417204, + 18.039007915424936 + ], + [ + 41.60889734184393, + 18.07518152623684 + ], + [ + 41.593516476799074, + 18.095892715295538 + ], + [ + 41.602549668581545, + 18.114691379061806 + ], + [ + 41.58513431972624, + 18.135402863679232 + ], + [ + 41.577972861409414, + 18.146389202649562 + ], + [ + 41.5752059344887, + 18.159410036760697 + ], + [ + 41.57081139179103, + 18.165187860697984 + ], + [ + 41.562022326425236, + 18.168158188471423 + ], + [ + 41.55640710095024, + 18.1743025337656 + ], + [ + 41.561045766259284, + 18.18984605594419 + ], + [ + 41.54070071360839, + 18.19188055141123 + ], + [ + 41.52133222369388, + 18.19668198464583 + ], + [ + 41.52418053766561, + 18.200995222976236 + ], + [ + 41.52572676792912, + 18.204291213545428 + ], + [ + 41.52808678806058, + 18.207180124738752 + ], + [ + 41.53370201442775, + 18.210353841176826 + ], + [ + 41.52751712750999, + 18.22231686489635 + ], + [ + 41.51856529931667, + 18.227972713014772 + ], + [ + 41.50717206855612, + 18.22825751827963 + ], + [ + 41.49333742763531, + 18.223944280685473 + ], + [ + 41.4997664678044, + 18.23334375567629 + ], + [ + 41.50464929223066, + 18.24298747763886 + ], + [ + 41.50562585034938, + 18.25177648291943 + ], + [ + 41.500173368925616, + 18.25873438249496 + ], + [ + 41.506358267445094, + 18.272202844303088 + ], + [ + 41.500498900697146, + 18.278998211745176 + ], + [ + 41.48764083111854, + 18.28082931671918 + ], + [ + 41.472178584471315, + 18.279201601092815 + ], + [ + 41.4753524107162, + 18.292873450453964 + ], + [ + 41.47201582776239, + 18.311957196667024 + ], + [ + 41.464610232126695, + 18.3309595246976 + ], + [ + 41.45541424994099, + 18.344061458895474 + ], + [ + 41.45085696640132, + 18.35602447227117 + ], + [ + 41.44467206473046, + 18.393988256682665 + ], + [ + 41.441905143377, + 18.402085669926315 + ], + [ + 41.43970787557035, + 18.410589861063734 + ], + [ + 41.43816165938014, + 18.46417884167959 + ], + [ + 41.43580162081873, + 18.469956654068643 + ], + [ + 41.43295331828944, + 18.474269884597796 + ], + [ + 41.428396022764886, + 18.476873985824994 + ], + [ + 41.42107180998696, + 18.47776925827098 + ], + [ + 41.4157821050471, + 18.481512878998213 + ], + [ + 41.41391034535338, + 18.489976207380437 + ], + [ + 41.413340696504335, + 18.499335107993023 + ], + [ + 41.41146893768127, + 18.505763944119053 + ], + [ + 41.3752547442812, + 18.529486253741887 + ], + [ + 41.3698022745801, + 18.535833973227522 + ], + [ + 41.36817468351728, + 18.546291531758445 + ], + [ + 41.36329187031218, + 18.55866130622504 + ], + [ + 41.35572350193044, + 18.569037146936562 + ], + [ + 41.34017989353814, + 18.575629111577545 + ], + [ + 41.33432051103844, + 18.580552505615778 + ], + [ + 41.32984460063857, + 18.585435341863462 + ], + [ + 41.32829838051508, + 18.58763266318186 + ], + [ + 41.322113476434474, + 18.585638730781092 + ], + [ + 41.311696801615604, + 18.575344006559767 + ], + [ + 41.30779056664376, + 18.573431790065833 + ], + [ + 41.29688561170129, + 18.57733793911105 + ], + [ + 41.285817901263876, + 18.583807629658093 + ], + [ + 41.275401232519684, + 18.59202700528536 + ], + [ + 41.267344600736834, + 18.60130448335077 + ], + [ + 41.240570513809956, + 18.657945123902746 + ], + [ + 41.22925867029666, + 18.673326063624927 + ], + [ + 41.216563354137286, + 18.686346850713583 + ], + [ + 41.21021568325304, + 18.697943314440366 + ], + [ + 41.20923913737734, + 18.711615423678197 + ], + [ + 41.21216881556855, + 18.73102447473567 + ], + [ + 41.23601321231109, + 18.79661686107567 + ], + [ + 41.23951257164992, + 18.817043442798134 + ], + [ + 41.24252363622021, + 18.82489658413517 + ], + [ + 41.24781334113316, + 18.828436506099173 + ], + [ + 41.24903403964034, + 18.83417374510633 + ], + [ + 41.23951256462795, + 18.848334032148234 + ], + [ + 41.23536216564434, + 18.849107028633938 + ], + [ + 41.21322675636965, + 18.86041897393037 + ], + [ + 41.21216880893145, + 18.862005824697142 + ], + [ + 41.171234572499166, + 18.871649502713197 + ], + [ + 41.16089929018668, + 18.90298093609033 + ], + [ + 41.160329628215436, + 18.908881002498273 + ], + [ + 41.14096114298909, + 18.933295119118867 + ], + [ + 41.136485212965965, + 18.93650937622404 + ], + [ + 41.13575279102881, + 18.94692604416022 + ], + [ + 41.13721763559141, + 18.957708930333872 + ], + [ + 41.14332116139921, + 18.97748446223265 + ], + [ + 41.148203969501985, + 18.988470733888498 + ], + [ + 41.153086780186975, + 18.99603906044105 + ], + [ + 41.156748894183465, + 19.00385163264959 + ], + [ + 41.15886478720079, + 19.022162280995605 + ], + [ + 41.16374758665639, + 19.042954742866574 + ], + [ + 41.176524281507035, + 19.067368831619106 + ], + [ + 41.16781659509917, + 19.082220670474687 + ], + [ + 41.14942466886718, + 19.093735981531648 + ], + [ + 41.12964928586078, + 19.101629962419764 + ], + [ + 41.08643639846354, + 19.113592905461108 + ], + [ + 41.068614132159766, + 19.125393016641738 + ], + [ + 41.058360216479045, + 19.152980781270493 + ], + [ + 41.04420006752335, + 19.174139737997 + ], + [ + 41.04021243699206, + 19.183539144324364 + ], + [ + 41.040700726776784, + 19.194647669142693 + ], + [ + 41.04818769650095, + 19.21771882422684 + ], + [ + 41.04753666440635, + 19.227443887693923 + ], + [ + 41.0416772730761, + 19.245754199133554 + ], + [ + 41.04021243830662, + 19.25584547826383 + ], + [ + 41.03614341609756, + 19.264552998620275 + ], + [ + 41.01783288065937, + 19.273993254935053 + ], + [ + 41.01351972215913, + 19.282863604173098 + ], + [ + 41.009125196525964, + 19.304022535583865 + ], + [ + 40.998301620949626, + 19.314927359896593 + ], + [ + 40.98292077359568, + 19.322699352294233 + ], + [ + 40.95590254406043, + 19.343329227592644 + ], + [ + 40.95769289692015, + 19.346421500415154 + ], + [ + 40.958994998154026, + 19.358588104478976 + ], + [ + 40.95671634900845, + 19.368638515091888 + ], + [ + 40.94695070711957, + 19.3841818904805 + ], + [ + 40.944672065139486, + 19.39272687047117 + ], + [ + 40.94312584308983, + 19.403306325609066 + ], + [ + 40.93767337792061, + 19.419379043954336 + ], + [ + 40.93832440852734, + 19.430568658680198 + ], + [ + 40.945078973527075, + 19.440659920009153 + ], + [ + 40.954356315978636, + 19.448675847690787 + ], + [ + 40.959239138060894, + 19.456000197518865 + ], + [ + 40.95215904814612, + 19.464056681293506 + ], + [ + 40.954600461449616, + 19.47479895908475 + ], + [ + 40.952484562733595, + 19.48525613295322 + ], + [ + 40.946950709740214, + 19.49371968944816 + ], + [ + 40.94467206435122, + 19.505682588257564 + ], + [ + 40.859141465027925, + 19.534491177431395 + ], + [ + 40.83545983007858, + 19.546616901271943 + ], + [ + 40.78467857288074, + 19.596340104323065 + ], + [ + 40.76042728257929, + 19.608710065258993 + ], + [ + 40.760427289594716, + 19.61493575259114 + ], + [ + 40.77125084577185, + 19.61351144226397 + ], + [ + 40.79444420807641, + 19.6012637545368 + ], + [ + 40.80062909581781, + 19.642238584817246 + ], + [ + 40.798024940417555, + 19.69232825569291 + ], + [ + 40.79086347671409, + 19.714056703877034 + ], + [ + 40.74488365060591, + 19.777004163497292 + ], + [ + 40.72543379754743, + 19.789252128903005 + ], + [ + 40.674001497363165, + 19.794989315799064 + ], + [ + 40.65406334804958, + 19.794338298170086 + ], + [ + 40.64503015391063, + 19.78473556229101 + ], + [ + 40.65658613001796, + 19.759507496426792 + ], + [ + 40.64161218290424, + 19.771226418307712 + ], + [ + 40.628672720823225, + 19.792141000979505 + ], + [ + 40.620371943341475, + 19.812079202864393 + ], + [ + 40.61947676309978, + 19.820990361291926 + ], + [ + 40.60515384751617, + 19.829535302798597 + ], + [ + 40.56446374360534, + 19.88589109912823 + ], + [ + 40.53353926505474, + 19.90399820168648 + ], + [ + 40.52702884690318, + 19.91034584101714 + ], + [ + 40.52800540251786, + 19.91754788305106 + ], + [ + 40.54053795719683, + 19.943915108848177 + ], + [ + 40.534515825235125, + 19.961818813304237 + ], + [ + 40.52263431518821, + 19.97247961963833 + ], + [ + 40.4921981046274, + 19.984849229696103 + ], + [ + 40.45460045700553, + 20.006577867078853 + ], + [ + 40.44556725400353, + 20.009711005050026 + ], + [ + 40.436371290070454, + 20.02334219102093 + ], + [ + 40.427582226926134, + 20.026434635927338 + ], + [ + 40.41846764407489, + 20.03119538108521 + ], + [ + 40.393565299858636, + 20.064276431947746 + ], + [ + 40.3855086601111, + 20.068101305611517 + ], + [ + 40.36085045691802, + 20.073919987807944 + ], + [ + 40.35222415506667, + 20.074855861968036 + ], + [ + 40.333750846693626, + 20.079535218546642 + ], + [ + 40.31348717486765, + 20.09072500007538 + ], + [ + 40.26783287905972, + 20.125311591867845 + ], + [ + 40.23210696759572, + 20.16356029767246 + ], + [ + 40.23878014444087, + 20.178045972415394 + ], + [ + 40.221853061511034, + 20.189032301439656 + ], + [ + 40.195648633895125, + 20.195990300471465 + ], + [ + 40.1648055343804, + 20.200384823966424 + ], + [ + 40.15894615953386, + 20.205389709202947 + ], + [ + 40.149587436288805, + 20.21820710221038 + ], + [ + 40.13396243539, + 20.231512753103278 + ], + [ + 40.12501061244939, + 20.24111561896793 + ], + [ + 40.125987174980764, + 20.24555084771904 + ], + [ + 40.115570509456425, + 20.251654370656908 + ], + [ + 40.08383222710423, + 20.279242256520174 + ], + [ + 40.06763756544204, + 20.28652577485378 + ], + [ + 40.04517662841513, + 20.286118873455877 + ], + [ + 40.02035566542268, + 20.28204987817693 + ], + [ + 40.00033613399758, + 20.27513255396361 + ], + [ + 39.991953972465346, + 20.26666901880729 + ], + [ + 39.968028191116076, + 20.275091865697625 + ], + [ + 39.92530358138933, + 20.299383847053974 + ], + [ + 39.90308678506852, + 20.308254300002922 + ], + [ + 39.90430748771198, + 20.295558981777564 + ], + [ + 39.91016686281583, + 20.2884789052998 + ], + [ + 39.91830488372619, + 20.283514711987014 + ], + [ + 39.926605664810864, + 20.276841536228023 + ], + [ + 39.931407096967725, + 20.274725652526712 + ], + [ + 39.941091341813525, + 20.268540754267935 + ], + [ + 39.94711347722743, + 20.262152414330117 + ], + [ + 39.940684441417254, + 20.259182039111444 + ], + [ + 39.92318769566693, + 20.263576560117784 + ], + [ + 39.825368686602935, + 20.320054437850658 + ], + [ + 39.81128990964656, + 20.331488342809305 + ], + [ + 39.79818769642025, + 20.337388420171155 + ], + [ + 39.77833092549676, + 20.342718824298444 + ], + [ + 39.760101758543705, + 20.350816141292505 + ], + [ + 39.74463951826368, + 20.381170955176916 + ], + [ + 39.727386914748806, + 20.396918032306463 + ], + [ + 39.67359459819163, + 20.43622469452986 + ], + [ + 39.6464949870107, + 20.4615745964411 + ], + [ + 39.58708743504133, + 20.552150768893352 + ], + [ + 39.56739342526457, + 20.56769440689314 + ], + [ + 39.56739342562352, + 20.575140701174856 + ], + [ + 39.57740319226853, + 20.574530359660958 + ], + [ + 39.585297071816626, + 20.575873126009974 + ], + [ + 39.591075065483906, + 20.580267637409637 + ], + [ + 39.59473717394094, + 20.5887718614301 + ], + [ + 39.57935631675601, + 20.59137605511686 + ], + [ + 39.56666100297054, + 20.598293345856376 + ], + [ + 39.543467644476905, + 20.61920808201485 + ], + [ + 39.53695722496795, + 20.630275753105945 + ], + [ + 39.53101646993893, + 20.65949124769296 + ], + [ + 39.526377802387955, + 20.670721782108828 + ], + [ + 39.492930535676976, + 20.706244217953163 + ], + [ + 39.48991946591478, + 20.722886444046573 + ], + [ + 39.50603274938229, + 20.746405361300138 + ], + [ + 39.471364781042844, + 20.75747306432471 + ], + [ + 39.45753014492534, + 20.759466877601504 + ], + [ + 39.45997155088591, + 20.75165437702403 + ], + [ + 39.46461022330264, + 20.746039149150732 + ], + [ + 39.47071373844069, + 20.742010815477343 + ], + [ + 39.4778751973975, + 20.73895907254115 + ], + [ + 39.45826256476521, + 20.744859098841776 + ], + [ + 39.43628990858581, + 20.756659226197414 + ], + [ + 39.4231876939785, + 20.77171455526493 + ], + [ + 39.43018639421062, + 20.78742096909512 + ], + [ + 39.420909047723086, + 20.791693393522173 + ], + [ + 39.41675865962872, + 20.79775624653997 + ], + [ + 39.41765383986448, + 20.805324579608293 + ], + [ + 39.42335045669446, + 20.814113669508995 + ], + [ + 39.42774499004431, + 20.806382584040865 + ], + [ + 39.43539472952491, + 20.800767357101517 + ], + [ + 39.44556725398455, + 20.796861069772014 + ], + [ + 39.45753014231136, + 20.794256878195217 + ], + [ + 39.45264733224639, + 20.80613841761748 + ], + [ + 39.45118248833353, + 20.81159089189676 + ], + [ + 39.45069420864557, + 20.817816497160763 + ], + [ + 39.448741084451086, + 20.82729730398168 + ], + [ + 39.44402103137077, + 20.827622809124932 + ], + [ + 39.437266471856354, + 20.82575104189006 + ], + [ + 39.43018639558304, + 20.828355233248825 + ], + [ + 39.41675866076658, + 20.846503008256455 + ], + [ + 39.41130618683763, + 20.846869220302125 + ], + [ + 39.40967858358223, + 20.828355233248825 + ], + [ + 39.3883569649714, + 20.841131873182924 + ], + [ + 39.359711132971526, + 20.86261626287955 + ], + [ + 39.33912194267799, + 20.88743726666497 + ], + [ + 39.34083092558431, + 20.910305088583417 + ], + [ + 39.34498131556121, + 20.90517812055259 + ], + [ + 39.352549677290575, + 20.898911884649014 + ], + [ + 39.35962975587905, + 20.896714612599443 + ], + [ + 39.361827017643435, + 20.903509813077246 + ], + [ + 39.358409049301805, + 20.91535064274858 + ], + [ + 39.35279381445659, + 20.919867232337847 + ], + [ + 39.34546959931821, + 20.92218662504093 + ], + [ + 39.33741295752146, + 20.927394931656586 + ], + [ + 39.32781009454989, + 20.931830182450412 + ], + [ + 39.31739342548539, + 20.930121168130917 + ], + [ + 39.30681399767549, + 20.92609283623005 + ], + [ + 39.297129755571156, + 20.9239769780974 + ], + [ + 39.29688561423128, + 20.927964603099017 + ], + [ + 39.26872805875148, + 20.968573275956615 + ], + [ + 39.262380406107695, + 20.98305900227369 + ], + [ + 39.25953209903759, + 20.999823338924415 + ], + [ + 39.25896243406545, + 21.02387113260631 + ], + [ + 39.25570722453223, + 21.032945017786 + ], + [ + 39.242035350016785, + 21.041693397893564 + ], + [ + 39.239024287090274, + 21.050930110669793 + ], + [ + 39.23780358292511, + 21.062892984568954 + ], + [ + 39.234060091471974, + 21.067206114254095 + ], + [ + 39.22754967659427, + 21.069281340387178 + ], + [ + 39.18539472705744, + 21.097235419841862 + ], + [ + 39.17432701898825, + 21.108872788826393 + ], + [ + 39.16797936200007, + 21.13629790433637 + ], + [ + 39.158702017247116, + 21.15591052330449 + ], + [ + 39.15650475221556, + 21.167547892849903 + ], + [ + 39.15870202104139, + 21.172593521906865 + ], + [ + 39.16822350514425, + 21.185288820752273 + ], + [ + 39.17017663021038, + 21.19147371771648 + ], + [ + 39.16325931334263, + 21.20587803128157 + ], + [ + 39.12574303699832, + 21.260402765220018 + ], + [ + 39.11198977676443, + 21.268215188681996 + ], + [ + 39.08073978435014, + 21.31500891956985 + ], + [ + 39.159922720184774, + 21.37982816558487 + ], + [ + 39.171071807983445, + 21.404120140152617 + ], + [ + 39.172373889458875, + 21.43602116006819 + ], + [ + 39.16472415652747, + 21.46491122215745 + ], + [ + 39.14966881683019, + 21.480129311039942 + ], + [ + 39.14966881943231, + 21.485663202770642 + ], + [ + 39.160410999342915, + 21.494452148506785 + ], + [ + 39.15894616351566, + 21.50779862092574 + ], + [ + 39.14275149445326, + 21.540920263664084 + ], + [ + 39.130056184658116, + 21.51959868055533 + ], + [ + 39.11980228484528, + 21.516913223233495 + ], + [ + 39.11036217944555, + 21.528143686427956 + ], + [ + 39.10124759518425, + 21.548407340123717 + ], + [ + 39.108653194779, + 21.554592244715028 + ], + [ + 39.0922957687824, + 21.576564842849503 + ], + [ + 39.08871503817994, + 21.605861694684474 + ], + [ + 39.09017988266583, + 21.637030321733985 + ], + [ + 39.08814537504552, + 21.66445541395574 + ], + [ + 39.07740318582224, + 21.69155500537051 + ], + [ + 39.07935632061345, + 21.706366344450363 + ], + [ + 39.09815514739932, + 21.71283605392571 + ], + [ + 39.103526240018525, + 21.71857333804111 + ], + [ + 39.10857180746162, + 21.732123063124973 + ], + [ + 39.1090600919415, + 21.74778880315867 + ], + [ + 39.10124758959525, + 21.759995800457347 + ], + [ + 39.09359785337262, + 21.739162521736322 + ], + [ + 39.08838951947616, + 21.730454826848938 + ], + [ + 39.080739782277625, + 21.72581618077884 + ], + [ + 39.06674238031197, + 21.725246432901127 + ], + [ + 39.06348717416523, + 21.730047906982435 + ], + [ + 39.06373131343337, + 21.737941762062363 + ], + [ + 39.060313348707545, + 21.74640536556647 + ], + [ + 39.05388431358606, + 21.75185785220334 + ], + [ + 39.049489784906896, + 21.754828262591023 + ], + [ + 39.04542077190489, + 21.758734483786565 + ], + [ + 39.040375192693794, + 21.766831725447943 + ], + [ + 39.037364131559386, + 21.77606846379765 + ], + [ + 39.03589928597831, + 21.792629313055592 + ], + [ + 39.03296959902214, + 21.80097079904664 + ], + [ + 39.03101646719558, + 21.80145898298444 + ], + [ + 39.01929772327011, + 21.807806726245268 + ], + [ + 39.01726322201669, + 21.811184058059045 + ], + [ + 39.01449629459931, + 21.81875241204716 + ], + [ + 39.01246178172116, + 21.822088886917484 + ], + [ + 38.978554326504074, + 21.862073718577825 + ], + [ + 38.94959848171761, + 21.92191580291463 + ], + [ + 38.93125352998547, + 22.006073128703676 + ], + [ + 38.93265475234714, + 22.025186243653824 + ], + [ + 38.95914441917353, + 22.034443432498392 + ], + [ + 38.98621367724805, + 22.002239000026123 + ], + [ + 39.00569293153645, + 22.002005272147667 + ], + [ + 39.01002037471227, + 22.02411524097852 + ], + [ + 39.01002037747013, + 22.043605839246396 + ], + [ + 39.01246178011801, + 22.054266599623194 + ], + [ + 39.016612177009414, + 22.05809156754642 + ], + [ + 39.030039912549405, + 22.06708408818921 + ], + [ + 39.03296959199035, + 22.072210933907314 + ], + [ + 39.03500410480427, + 22.09113194275705 + ], + [ + 39.0444442061782, + 22.13080474337252 + ], + [ + 39.046641477215424, + 22.151068500707392 + ], + [ + 39.04037520121462, + 22.151068500707392 + ], + [ + 39.026133661007755, + 22.11688875327225 + ], + [ + 39.019297722850176, + 22.13157787903464 + ], + [ + 39.02271568589239, + 22.142482742740356 + ], + [ + 39.02930748286232, + 22.153224929365006 + ], + [ + 39.03296959920021, + 22.167792090079775 + ], + [ + 39.03296959554399, + 22.20880766347331 + ], + [ + 39.04037519977359, + 22.235785276116435 + ], + [ + 39.07325280416887, + 22.27114498252714 + ], + [ + 39.0835067101518, + 22.313544056140714 + ], + [ + 39.09058678420446, + 22.323391006864984 + ], + [ + 39.09961999172584, + 22.331732541109602 + ], + [ + 39.108653189156186, + 22.34223051023056 + ], + [ + 39.12232507017413, + 22.370184695229444 + ], + [ + 39.13949628921726, + 22.386379288093703 + ], + [ + 39.142751496179514, + 22.390611044643354 + ], + [ + 39.14275150155244, + 22.403225051445265 + ], + [ + 39.13738040105951, + 22.414699556177997 + ], + [ + 39.12761477964044, + 22.421210022997503 + ], + [ + 39.11491946305912, + 22.418605806152343 + ], + [ + 39.10816491390366, + 22.40892167136511 + ], + [ + 39.10124759432846, + 22.380438576482263 + ], + [ + 39.09480022419612, + 22.370183493538278 + ], + [ + 39.07025642401324, + 22.365827964044477 + ], + [ + 39.0692267086658, + 22.394489654336454 + ], + [ + 39.082071090204366, + 22.43628495109469 + ], + [ + 39.07421967409851, + 22.490972789756015 + ], + [ + 39.081517385440456, + 22.546792370594755 + ], + [ + 39.073987740896335, + 22.574175386752668 + ], + [ + 39.066254100553735, + 22.587551154030248 + ], + [ + 39.038584827217576, + 22.62270735805075 + ], + [ + 39.01246177962881, + 22.678656243117242 + ], + [ + 38.99301191082738, + 22.70856348667445 + ], + [ + 38.98568769995227, + 22.72426997825741 + ], + [ + 38.98829187310815, + 22.736395713660652 + ], + [ + 39.014659053703745, + 22.758978633705713 + ], + [ + 39.013031452986176, + 22.76679117860362 + ], + [ + 38.965017113698195, + 22.816310812921515 + ], + [ + 38.945485870533105, + 22.831203484310556 + ], + [ + 38.936778201103756, + 22.826361533049926 + ], + [ + 38.94044029960043, + 22.82078684553879 + ], + [ + 38.95801843430459, + 22.803615754234116 + ], + [ + 38.96469159383438, + 22.79466369229921 + ], + [ + 38.967946819678566, + 22.7840031157808 + ], + [ + 38.969004751096435, + 22.773830431235698 + ], + [ + 38.97144616303484, + 22.763861436581507 + ], + [ + 38.97828210098283, + 22.75372961359421 + ], + [ + 38.970876507409166, + 22.74689375105149 + ], + [ + 38.95771437131092, + 22.774960629281562 + ], + [ + 38.92985228799723, + 22.81501778363605 + ], + [ + 38.90259850440563, + 22.843166413540583 + ], + [ + 38.85100059203973, + 22.929720783756544 + ], + [ + 38.85117546180125, + 22.943275392103168 + ], + [ + 38.88040649314918, + 22.92849384523614 + ], + [ + 38.91285240898127, + 22.86196522210093 + ], + [ + 38.93051192574463, + 22.85675704956372 + ], + [ + 38.94141686448963, + 22.85053133732027 + ], + [ + 38.95101971833939, + 22.851955352890137 + ], + [ + 38.958832224139925, + 22.859116890019497 + ], + [ + 38.96469160391171, + 22.870428804031963 + ], + [ + 38.954274925986965, + 22.88190325070466 + ], + [ + 38.93734784959178, + 22.91209541226472 + ], + [ + 38.92693117855942, + 22.91819885887215 + ], + [ + 38.91960697392977, + 22.92108805218509 + ], + [ + 38.91146895485649, + 22.928452987342755 + ], + [ + 38.90528404553733, + 22.938462571387294 + ], + [ + 38.90259851220884, + 22.949286311425396 + ], + [ + 38.893890825820165, + 22.965155406378365 + ], + [ + 38.87387129530773, + 22.972805151994617 + ], + [ + 38.85108483614314, + 22.977972779212596 + ], + [ + 38.834320498020915, + 22.98651749605067 + ], + [ + 38.81421958696266, + 22.98273332972481 + ], + [ + 38.79957115006433, + 22.998683851187224 + ], + [ + 38.77906334474703, + 23.041164424495403 + ], + [ + 38.79021242730047, + 23.051336863320685 + ], + [ + 38.79867598500442, + 23.0646427531606 + ], + [ + 38.80437259218365, + 23.079250395478375 + ], + [ + 38.806407103434374, + 23.093247875770672 + ], + [ + 38.80392842289261, + 23.121855419858797 + ], + [ + 38.799213481698395, + 23.13726341829303 + ], + [ + 38.79835044786928, + 23.149603460284293 + ], + [ + 38.786659783799195, + 23.154557804102925 + ], + [ + 38.77761931198489, + 23.13929220207528 + ], + [ + 38.76511526128161, + 23.161100507019036 + ], + [ + 38.74768916656692, + 23.182957191613582 + ], + [ + 38.72925865211848, + 23.216253867342566 + ], + [ + 38.711436384906925, + 23.235744411200617 + ], + [ + 38.70394942077159, + 23.25775795721035 + ], + [ + 38.691712533299324, + 23.272959610212453 + ], + [ + 38.688917909147214, + 23.286540158825346 + ], + [ + 38.68025379732538, + 23.303794648235378 + ], + [ + 38.68041693274695, + 23.31825125595088 + ], + [ + 38.67286849721937, + 23.348151094069628 + ], + [ + 38.65933113835709, + 23.371790320037363 + ], + [ + 38.64653728876044, + 23.4007255208207 + ], + [ + 38.64087028011173, + 23.440073919060918 + ], + [ + 38.63711272831724, + 23.4681688692832 + ], + [ + 38.63124424207808, + 23.490047349865172 + ], + [ + 38.62891686339541, + 23.50787995520998 + ], + [ + 38.61215254931635, + 23.52431887468732 + ], + [ + 38.604746937451054, + 23.53538641328957 + ], + [ + 38.60157311197454, + 23.551947319516945 + ], + [ + 38.600175294577646, + 23.56824836099264 + ], + [ + 38.577891481456334, + 23.556626819360467 + ], + [ + 38.56804446998096, + 23.562486109196197 + ], + [ + 38.55990644898035, + 23.562486109196197 + ], + [ + 38.560883013564265, + 23.545721807096538 + ], + [ + 38.570323116223506, + 23.53693272645839 + ], + [ + 38.595469607282304, + 23.528387897428715 + ], + [ + 38.59546960109384, + 23.521470498945902 + ], + [ + 38.56202233129657, + 23.524359432723394 + ], + [ + 38.54006446027682, + 23.543245362117542 + ], + [ + 38.539222826721264, + 23.591868795943686 + ], + [ + 38.4948493626498, + 23.644634935998003 + ], + [ + 38.471364782533726, + 23.713324319042204 + ], + [ + 38.46436607734468, + 23.736069993376578 + ], + [ + 38.45997155093226, + 23.760809649119217 + ], + [ + 38.4526473321374, + 23.784002998782583 + ], + [ + 38.43702233851877, + 23.80206948753993 + ], + [ + 38.42709395269853, + 23.8067081618643 + ], + [ + 38.41627036992595, + 23.808905223314394 + ], + [ + 38.39957121084069, + 23.814086178992998 + ], + [ + 38.390125667299316, + 23.824131436952392 + ], + [ + 38.38549338592553, + 23.838504128568292 + ], + [ + 38.377481250817986, + 23.856017249707097 + ], + [ + 38.36534836545444, + 23.870447938729523 + ], + [ + 38.34888755445024, + 23.875189370675482 + ], + [ + 38.3327071657968, + 23.879426376372095 + ], + [ + 38.31913340922335, + 23.886385606094333 + ], + [ + 38.30933677632986, + 23.89337788494126 + ], + [ + 38.29956268014528, + 23.9102216701684 + ], + [ + 38.28333769343679, + 23.927800023835104 + ], + [ + 38.27540124223228, + 23.933824014582722 + ], + [ + 38.25890597711375, + 23.944818679384294 + ], + [ + 38.23846905903338, + 23.950582798254786 + ], + [ + 38.222089749616, + 23.952574372769455 + ], + [ + 38.19828148740348, + 23.96709763851132 + ], + [ + 38.18535633210078, + 23.97592859009223 + ], + [ + 38.16564073227677, + 23.992923236699554 + ], + [ + 38.146635963689015, + 24.01490840510683 + ], + [ + 38.126179059364695, + 24.029427493561204 + ], + [ + 38.10911713681299, + 24.043891609292572 + ], + [ + 38.07913529712659, + 24.070388141983585 + ], + [ + 38.0710691887645, + 24.0740801850975 + ], + [ + 38.06288057758722, + 24.07600567183281 + ], + [ + 38.05396809067406, + 24.072323542834496 + ], + [ + 38.045728607230544, + 24.067390103558367 + ], + [ + 38.02320396148543, + 24.081610284014953 + ], + [ + 38.00757897729976, + 24.09308509600428 + ], + [ + 37.96641641772096, + 24.11709376717486 + ], + [ + 37.935320715815635, + 24.139007220555886 + ], + [ + 37.941123664703454, + 24.150950433438094 + ], + [ + 37.95842060590202, + 24.162075564726337 + ], + [ + 37.983072040092914, + 24.165664269185434 + ], + [ + 37.973259555580114, + 24.174709188353077 + ], + [ + 37.958456647479, + 24.17030870534532 + ], + [ + 37.93953008753629, + 24.161441345004736 + ], + [ + 37.93219971628793, + 24.17421046490976 + ], + [ + 37.94377214252854, + 24.19135604093804 + ], + [ + 37.94794951213246, + 24.207046915119964 + ], + [ + 37.93729216493562, + 24.21085013648625 + ], + [ + 37.93069001425366, + 24.203405929743546 + ], + [ + 37.91836606692655, + 24.20123227460817 + ], + [ + 37.91257654161962, + 24.19153810514323 + ], + [ + 37.918298697830146, + 24.186266956291565 + ], + [ + 37.921541601952896, + 24.17726739940083 + ], + [ + 37.92312561769884, + 24.16453433046383 + ], + [ + 37.923905398314645, + 24.155547098035534 + ], + [ + 37.918132569204495, + 24.149593065557255 + ], + [ + 37.89601012860872, + 24.157208507048278 + ], + [ + 37.865634201677615, + 24.149888093276434 + ], + [ + 37.82016035721996, + 24.181708141852212 + ], + [ + 37.80640710050912, + 24.193264109916765 + ], + [ + 37.76758870623377, + 24.22139304484711 + ], + [ + 37.75866124883629, + 24.24161151283652 + ], + [ + 37.745585275246825, + 24.24988373256477 + ], + [ + 37.72840704498326, + 24.257421987885067 + ], + [ + 37.71041334190814, + 24.266456720624813 + ], + [ + 37.69571245628816, + 24.279213268164266 + ], + [ + 37.676090866845584, + 24.291235853745736 + ], + [ + 37.65232182733396, + 24.29056557876851 + ], + [ + 37.64096113339856, + 24.291693419326396 + ], + [ + 37.625987173873476, + 24.28143950561071 + ], + [ + 37.62273501114973, + 24.268237409339097 + ], + [ + 37.62839438383519, + 24.248039953305884 + ], + [ + 37.585775441703646, + 24.246661550378025 + ], + [ + 37.57517404011786, + 24.261636513698484 + ], + [ + 37.54570634321025, + 24.274411085306387 + ], + [ + 37.522720279400936, + 24.267731774250088 + ], + [ + 37.50063562294941, + 24.288700165434328 + ], + [ + 37.48675015406693, + 24.311147324016613 + ], + [ + 37.46466137246757, + 24.339587627587324 + ], + [ + 37.429403434894205, + 24.367306909144666 + ], + [ + 37.417958377845615, + 24.40096588070167 + ], + [ + 37.427853848931235, + 24.421131900445502 + ], + [ + 37.43524611561389, + 24.418874406304596 + ], + [ + 37.454954426097466, + 24.40687069356974 + ], + [ + 37.463208129717884, + 24.42254636452949 + ], + [ + 37.45666895355984, + 24.441248663083993 + ], + [ + 37.319229527088616, + 24.624238949314975 + ], + [ + 37.25766035766243, + 24.702338028582968 + ], + [ + 37.228526235654044, + 24.73769762881947 + ], + [ + 37.22706138797411, + 24.76536685421878 + ], + [ + 37.230479354256836, + 24.772691039574728 + ], + [ + 37.23129315937413, + 24.782619463292466 + ], + [ + 37.23031659973771, + 24.792547890991333 + ], + [ + 37.22706140109889, + 24.79954670484151 + ], + [ + 37.21973716508072, + 24.802801702266695 + ], + [ + 37.20679773151355, + 24.791001812869904 + ], + [ + 37.19629967849586, + 24.789618274329854 + ], + [ + 37.17872155071418, + 24.799383864848707 + ], + [ + 37.16578210353154, + 24.815497217845223 + ], + [ + 37.14861086662675, + 24.851019519313084 + ], + [ + 37.1740828669738, + 24.850571858615634 + ], + [ + 37.19654381727162, + 24.847235434683675 + ], + [ + 37.21892336219091, + 24.84662493374899 + ], + [ + 37.24415124591059, + 24.85443766438694 + ], + [ + 37.25660241773384, + 24.871242675043273 + ], + [ + 37.258067259530364, + 24.92177975766858 + ], + [ + 37.27995852818439, + 24.964097375877103 + ], + [ + 37.27702884587729, + 24.986639763154482 + ], + [ + 37.2578231130767, + 25.028550523928843 + ], + [ + 37.251475457044826, + 25.05255768454155 + ], + [ + 37.25782311307599, + 25.111476955913876 + ], + [ + 37.25603274795403, + 25.134100652447213 + ], + [ + 37.25074303487365, + 25.15546295648336 + ], + [ + 37.24219811307239, + 25.17527903986606 + ], + [ + 37.23047936373999, + 25.193670974851493 + ], + [ + 37.21168053497215, + 25.214260157666338 + ], + [ + 37.200205924317686, + 25.22418853585165 + ], + [ + 37.1894637380307, + 25.231187242365692 + ], + [ + 37.180023633726044, + 25.239081118730308 + ], + [ + 37.170664910308076, + 25.25779857367054 + ], + [ + 37.162282748579564, + 25.265692456903125 + ], + [ + 37.142344596353404, + 25.2797712183018 + ], + [ + 37.122569207007494, + 25.299546617088335 + ], + [ + 37.10531660298763, + 25.322170326725733 + ], + [ + 37.0932723322974, + 25.34446849552487 + ], + [ + 37.09099368754665, + 25.35439689532107 + ], + [ + 37.088877799789664, + 25.376776431512518 + ], + [ + 37.086436394950994, + 25.38544343823654 + ], + [ + 37.079844598356594, + 25.39459871602008 + ], + [ + 37.06462649930058, + 25.40973543434584 + ], + [ + 37.059825065088305, + 25.419623103248828 + ], + [ + 37.07740319182569, + 25.431057042721097 + ], + [ + 37.062673373792315, + 25.453680740314752 + ], + [ + 37.01823978027478, + 25.494696359223077 + ], + [ + 37.010590041583036, + 25.507391687554264 + ], + [ + 36.994476758792345, + 25.549953515572906 + ], + [ + 36.98926842595761, + 25.556952227184475 + ], + [ + 36.97559654981251, + 25.565130924810347 + ], + [ + 36.97038821826691, + 25.570461344787933 + ], + [ + 36.96900475361093, + 25.57615794045957 + ], + [ + 36.96998131580995, + 25.588568424783965 + ], + [ + 36.966970248224285, + 25.594305733612554 + ], + [ + 36.9582625666248, + 25.60635000927305 + ], + [ + 36.944102408044664, + 25.63519926328 + ], + [ + 36.936289911869565, + 25.64614494570673 + ], + [ + 36.92351321623978, + 25.654771217175707 + ], + [ + 36.89429771988373, + 25.665594769438123 + ], + [ + 36.8816024083454, + 25.672837612800894 + ], + [ + 36.842295768136836, + 25.72980376801971 + ], + [ + 36.81739342432143, + 25.7579613221671 + ], + [ + 36.795664912115626, + 25.759466888430193 + ], + [ + 36.79371178374965, + 25.748277070546084 + ], + [ + 36.80046634045566, + 25.73672107813464 + ], + [ + 36.8039656911527, + 25.726792711766716 + ], + [ + 36.79224694226833, + 25.720607829693577 + ], + [ + 36.77955162997092, + 25.724066484248585 + ], + [ + 36.74887129236642, + 25.743882581396054 + ], + [ + 36.73389733520342, + 25.7485212630876 + ], + [ + 36.72494550704587, + 25.75389229737915 + ], + [ + 36.702321813907965, + 25.779974710610137 + ], + [ + 36.69605553334808, + 25.789536831917506 + ], + [ + 36.69483483055864, + 25.7955996603574 + ], + [ + 36.69605553547456, + 25.81712474746845 + ], + [ + 36.693858270099376, + 25.822902748664504 + ], + [ + 36.68181399669333, + 25.825588267944067 + ], + [ + 36.6756291017158, + 25.83051178272543 + ], + [ + 36.66342207418083, + 25.855658306577624 + ], + [ + 36.66211998939638, + 25.87909578602721 + ], + [ + 36.67164147438348, + 25.901434664300993 + ], + [ + 36.692637567047875, + 25.923285234974358 + ], + [ + 36.7058211624263, + 25.9437523736714 + ], + [ + 36.7094832669618, + 25.971136762806296 + ], + [ + 36.70557701706198, + 25.99933500599372 + ], + [ + 36.696055536645524, + 26.022284265653955 + ], + [ + 36.67237389266943, + 26.045233450932606 + ], + [ + 36.6406356124188, + 26.060207417420067 + ], + [ + 36.605642122484454, + 26.068264059161777 + ], + [ + 36.572520378335454, + 26.070705463468936 + ], + [ + 36.53663170948455, + 26.082424249153622 + ], + [ + 36.5127059247494, + 26.11098867116452 + ], + [ + 36.449229364720566, + 26.24689364129079 + ], + [ + 36.42628014793992, + 26.281805775081946 + ], + [ + 36.38282311521298, + 26.334540130687138 + ], + [ + 36.30892988841389, + 26.498236443718422 + ], + [ + 36.229828314521015, + 26.625555660027402 + ], + [ + 36.182139519264744, + 26.68024323389084 + ], + [ + 36.124196812072476, + 26.726752031691642 + ], + [ + 36.097666862909385, + 26.753973699012512 + ], + [ + 36.08187910868138, + 26.797268043535826 + ], + [ + 36.05176841871035, + 26.84467187390285 + ], + [ + 36.031993034004174, + 26.90680572026178 + ], + [ + 36.01392662620284, + 26.90232978981421 + ], + [ + 36.00025474857917, + 26.91351953952799 + ], + [ + 35.97673587368606, + 26.947739983385468 + ], + [ + 35.911875852394395, + 26.999579226954385 + ], + [ + 35.83171634036924, + 27.09271879956121 + ], + [ + 35.80307050874077, + 27.142075911235253 + ], + [ + 35.799815293939815, + 27.150091799412287 + ], + [ + 35.798594601777594, + 27.15997960988184 + ], + [ + 35.800791868922076, + 27.168158333028916 + ], + [ + 35.8105574831912, + 27.182440445885845 + ], + [ + 35.812836136329125, + 27.19106682373844 + ], + [ + 35.80795331801547, + 27.203070348322164 + ], + [ + 35.784027534662854, + 27.23550033644909 + ], + [ + 35.69996178458329, + 27.324774476602254 + ], + [ + 35.65259849726221, + 27.35382714496179 + ], + [ + 35.64039146992731, + 27.363470748154317 + ], + [ + 35.616709827296475, + 27.389634457488317 + ], + [ + 35.58985437007178, + 27.42890053228327 + ], + [ + 35.55958091812938, + 27.455633783906688 + ], + [ + 35.52149498239476, + 27.518459318386874 + ], + [ + 35.51050866685064, + 27.544175594523796 + ], + [ + 35.50684656150244, + 27.564439314929594 + ], + [ + 35.50619550833561, + 27.60053131008996 + ], + [ + 35.500254742409076, + 27.619330024598852 + ], + [ + 35.491953961437254, + 27.632391559355604 + ], + [ + 35.458994995065154, + 27.66339760124279 + ], + [ + 35.44076582610736, + 27.690253049872766 + ], + [ + 35.41504967533439, + 27.751369536448863 + ], + [ + 35.39437908845442, + 27.777004159448992 + ], + [ + 35.384939003087226, + 27.78261958540281 + ], + [ + 35.364756708614856, + 27.78969962763497 + ], + [ + 35.356944199417796, + 27.794378894898472 + ], + [ + 35.351328973132055, + 27.80141837265592 + ], + [ + 35.34685305672108, + 27.81500881197614 + ], + [ + 35.33676191169621, + 27.833685580043497 + ], + [ + 35.33236737825845, + 27.86220931809999 + ], + [ + 35.322764523721986, + 27.876288201404616 + ], + [ + 35.27100670372328, + 27.92780179148158 + ], + [ + 35.25521895617581, + 27.95278565295233 + ], + [ + 35.24561608617701, + 27.962347765653373 + ], + [ + 35.229991087196126, + 27.968736123059966 + ], + [ + 35.18148847770023, + 28.002915764142525 + ], + [ + 35.18148848631841, + 27.996039225104624 + ], + [ + 35.17465254931659, + 27.996039225104624 + ], + [ + 35.16358481879898, + 28.009344659323798 + ], + [ + 35.17652428641054, + 28.019476644373917 + ], + [ + 35.19906661604955, + 28.0282251449984 + ], + [ + 35.216319218899606, + 28.037665226976955 + ], + [ + 35.2268986411166, + 28.03314857735139 + ], + [ + 35.22584067684712, + 28.038763595163616 + ], + [ + 35.216319192636966, + 28.054388593146967 + ], + [ + 35.210297063350794, + 28.05658592732253 + ], + [ + 35.182627802055435, + 28.061916428881073 + ], + [ + 35.17465252834675, + 28.0650087376116 + ], + [ + 35.16781659034903, + 28.0650087376116 + ], + [ + 35.16781658936071, + 28.05817279050806 + ], + [ + 35.16179445436284, + 28.05817279050806 + ], + [ + 35.157725446620866, + 28.06435770949979 + ], + [ + 35.15186609474887, + 28.071031121547293 + ], + [ + 35.144786012821776, + 28.07640217462667 + ], + [ + 35.13721762957566, + 28.07859920444162 + ], + [ + 35.11939536602068, + 28.07794817705093 + ], + [ + 35.11036217463987, + 28.078924868337943 + ], + [ + 35.098643419204826, + 28.08974838109914 + ], + [ + 35.05193117786204, + 28.119574203348563 + ], + [ + 35.04200279142072, + 28.113023091802336 + ], + [ + 35.0302840458859, + 28.113470728172345 + ], + [ + 35.019704618887154, + 28.113470728172345 + ], + [ + 35.02247154097155, + 28.107855444152985 + ], + [ + 35.02621502785498, + 28.10297259941907 + ], + [ + 35.030772345414356, + 28.09910730051447 + ], + [ + 35.02068119232774, + 28.10374589939352 + ], + [ + 35.00953208519157, + 28.110540962849605 + ], + [ + 34.99789472477826, + 28.114203169391494 + ], + [ + 34.9860132118177, + 28.109320327230304 + ], + [ + 34.97584068326312, + 28.10342023616245 + ], + [ + 34.945485872953924, + 28.09536367352938 + ], + [ + 34.93726645741578, + 28.091253824099987 + ], + [ + 34.93132572695166, + 28.086005051656393 + ], + [ + 34.92774497366164, + 28.07859920444162 + ], + [ + 34.9209090356644, + 28.07859920444162 + ], + [ + 34.92090903543456, + 28.08543514016273 + ], + [ + 34.91407309843746, + 28.08543514016273 + ], + [ + 34.900889515150865, + 28.08226142063546 + ], + [ + 34.880625855914786, + 28.085638830198853 + ], + [ + 34.86019941347723, + 28.085394582411777 + ], + [ + 34.846446150358496, + 28.071193653169008 + ], + [ + 34.84376061823413, + 28.0763207586366 + ], + [ + 34.842946819745976, + 28.07640217462667 + ], + [ + 34.838877785698074, + 28.07859920444162 + ], + [ + 34.83887778546879, + 28.08543514016273 + ], + [ + 34.846446145465684, + 28.08543514016273 + ], + [ + 34.84644617280922, + 28.0929223991019 + ], + [ + 34.84262127604071, + 28.099839442178595 + ], + [ + 34.84766685769244, + 28.105536145725512 + ], + [ + 34.85694420978912, + 28.10984937950383 + ], + [ + 34.866221560376296, + 28.112779144995027 + ], + [ + 34.856700056448545, + 28.116441050427916 + ], + [ + 34.84701581773906, + 28.117621127681193 + ], + [ + 34.836761927954605, + 28.116278519412194 + ], + [ + 34.82536869636415, + 28.112779144995027 + ], + [ + 34.825368681658965, + 28.10590236658199 + ], + [ + 34.832774280658064, + 28.10590236658199 + ], + [ + 34.83277429833854, + 28.09910730051447 + ], + [ + 34.82162518402876, + 28.095770452410342 + ], + [ + 34.814300965825666, + 28.08893452249243 + ], + [ + 34.80486086336996, + 28.071193653169008 + ], + [ + 34.80176843400082, + 28.075384925354054 + ], + [ + 34.79867597389505, + 28.076808954140816 + ], + [ + 34.79525799746396, + 28.077297149625565 + ], + [ + 34.79175864571747, + 28.07859920444162 + ], + [ + 34.79574629933088, + 28.0846215816955 + ], + [ + 34.80160565786443, + 28.09039940785979 + ], + [ + 34.80941815204116, + 28.095404231247066 + ], + [ + 34.819102423333305, + 28.09910730051447 + ], + [ + 34.81853274885259, + 28.102932041726724 + ], + [ + 34.81836997710881, + 28.107123002547528 + ], + [ + 34.819102420362334, + 28.112779144995027 + ], + [ + 34.80494225935289, + 28.113348754773845 + ], + [ + 34.793711781197395, + 28.111070015069444 + ], + [ + 34.78646893527988, + 28.104722288179413 + ], + [ + 34.78443445378643, + 28.0929223991019 + ], + [ + 34.77898195504339, + 28.095770452410342 + ], + [ + 34.777354368433116, + 28.096177531705187 + ], + [ + 34.77588953086187, + 28.094956894634766 + ], + [ + 34.77076257878141, + 28.0929223991019 + ], + [ + 34.770355654036045, + 28.096136673562537 + ], + [ + 34.77084395277141, + 28.102728652408295 + ], + [ + 34.77076256166581, + 28.10590236658199 + ], + [ + 34.764984566666506, + 28.10590236658199 + ], + [ + 34.764984584312565, + 28.09910730051447 + ], + [ + 34.757009324309486, + 28.09910730051447 + ], + [ + 34.751963747972475, + 28.107611497240924 + ], + [ + 34.74732505805913, + 28.112005845600166 + ], + [ + 34.742442241727396, + 28.111558209175637 + ], + [ + 34.736582874670056, + 28.10590236658199 + ], + [ + 34.727386926937875, + 28.112128119439408 + ], + [ + 34.72510825924373, + 28.11505758394838 + ], + [ + 34.71892338013664, + 28.123033018158527 + ], + [ + 34.71534265602032, + 28.1276310501952 + ], + [ + 34.70923914185371, + 28.140082229646136 + ], + [ + 34.70630945118242, + 28.137600106313737 + ], + [ + 34.70248455869062, + 28.134995708858465 + ], + [ + 34.69849694304286, + 28.131537197940844 + ], + [ + 34.69499759784343, + 28.126450973928822 + ], + [ + 34.68197675354301, + 28.135158540046106 + ], + [ + 34.67839604317891, + 28.13076420018443 + ], + [ + 34.677745002549855, + 28.120795138352573 + ], + [ + 34.67457117031932, + 28.112779144995027 + ], + [ + 34.66700281280447, + 28.10871015958785 + ], + [ + 34.65357506529796, + 28.1035830677791 + ], + [ + 34.647146043267405, + 28.09910730051447 + ], + [ + 34.64714604273592, + 28.0929223991019 + ], + [ + 34.668304869768136, + 28.07859920444162 + ], + [ + 34.66830487440776, + 28.071193653169008 + ], + [ + 34.66179446918031, + 28.070786873468467 + ], + [ + 34.658946150945916, + 28.069159153675095 + ], + [ + 34.65748132969327, + 28.06696212216866 + ], + [ + 34.655284038518786, + 28.0650087376116 + ], + [ + 34.647146020413594, + 28.071193653169008 + ], + [ + 34.6423446060769, + 28.054592283698124 + ], + [ + 34.64144941022526, + 28.041693377665233 + ], + [ + 34.63502037673205, + 28.033270551547915 + ], + [ + 34.6130477196661, + 28.03021879284536 + ], + [ + 34.614756719887204, + 28.03497969231923 + ], + [ + 34.615733255156954, + 28.03571183780226 + ], + [ + 34.61736087768446, + 28.03546788945568 + ], + [ + 34.62045333269826, + 28.037665226976955 + ], + [ + 34.613047735675956, + 28.04450118539214 + ], + [ + 34.60865317734507, + 28.058823818946447 + ], + [ + 34.60670005504369, + 28.07184468091873 + ], + [ + 34.60621178344618, + 28.096014699988874 + ], + [ + 34.598887551490975, + 28.1032574045436 + ], + [ + 34.57439212586057, + 28.094061620505517 + ], + [ + 34.57886803068972, + 28.10590236658199 + ], + [ + 34.572764529289024, + 28.112779144995027 + ], + [ + 34.58741295655153, + 28.131822002387246 + ], + [ + 34.596934447774494, + 28.13890215461404 + ], + [ + 34.60564210908034, + 28.142564052032974 + ], + [ + 34.606211776146516, + 28.147528296099324 + ], + [ + 34.61247806824058, + 28.150336079311646 + ], + [ + 34.62094159902945, + 28.157375362533966 + ], + [ + 34.62671961080995, + 28.160549362576237 + ], + [ + 34.6204533301203, + 28.16738525147186 + ], + [ + 34.62338300646034, + 28.172674845982552 + ], + [ + 34.62712648746527, + 28.17666239412081 + ], + [ + 34.632497593570314, + 28.179388755074534 + ], + [ + 34.640310090463935, + 28.18105701728061 + ], + [ + 34.640310100560015, + 28.17641844862478 + ], + [ + 34.63803144270966, + 28.17544176531306 + ], + [ + 34.635264513012785, + 28.17572656869876 + ], + [ + 34.63347415710173, + 28.174872158520785 + ], + [ + 34.64340255185607, + 28.1702335874058 + ], + [ + 34.65170331796214, + 28.167792027893835 + ], + [ + 34.65772545332467, + 28.170558948380208 + ], + [ + 34.66089928346305, + 28.18105701728061 + ], + [ + 34.65528404846326, + 28.18105701728061 + ], + [ + 34.655284042485185, + 28.187892894167938 + ], + [ + 34.64812258704621, + 28.19424057636353 + ], + [ + 34.64958743050341, + 28.20087305784323 + ], + [ + 34.657237176170476, + 28.206284909950817 + ], + [ + 34.66830488019559, + 28.20897040617411 + ], + [ + 34.66830488568887, + 28.215765709226822 + ], + [ + 34.66488691513582, + 28.224514066384003 + ], + [ + 34.67457114554235, + 28.27045304510321 + ], + [ + 34.678396035983816, + 28.268459437799343 + ], + [ + 34.68531333652677, + 28.265936484586497 + ], + [ + 34.68873131233265, + 28.26361721773514 + ], + [ + 34.68824304537279, + 28.26679118837618 + ], + [ + 34.688731319813265, + 28.277289168709572 + ], + [ + 34.68295331402109, + 28.2738304001242 + ], + [ + 34.680430541809436, + 28.271673964168457 + ], + [ + 34.67457114731797, + 28.277248311204545 + ], + [ + 34.694672061305475, + 28.294419565717707 + ], + [ + 34.715017117058224, + 28.327459967934068 + ], + [ + 34.73047935878345, + 28.363592798498235 + ], + [ + 34.741058785927216, + 28.41058987009123 + ], + [ + 34.76059003258256, + 28.436590812670286 + ], + [ + 34.76791426293986, + 28.466457463391954 + ], + [ + 34.775075727075695, + 28.483343917604817 + ], + [ + 34.803774714960895, + 28.527132907029735 + ], + [ + 34.79617272266473, + 28.572184947239844 + ], + [ + 34.793432080594876, + 28.61943430143982 + ], + [ + 34.77846951932537, + 28.66450003389482 + ], + [ + 34.79688562018225, + 28.72581621850833 + ], + [ + 34.80982505080046, + 28.75796118115854 + ], + [ + 34.825368679969216, + 28.784369149073555 + ], + [ + 34.825368685971746, + 28.79059479372354 + ], + [ + 34.81910240997177, + 28.79059479372354 + ], + [ + 34.83611086793084, + 28.81647365059045 + ], + [ + 34.83855228360439, + 28.828558696101005 + ], + [ + 34.8327742867772, + 28.839585696296584 + ], + [ + 34.83277427496174, + 28.845851857337692 + ], + [ + 34.84408613740061, + 28.87641025600594 + ], + [ + 34.84197026296765, + 28.889634652158655 + ], + [ + 34.82536870105273, + 28.8942326350089 + ], + [ + 34.825368696127875, + 28.900376793198653 + ], + [ + 34.84009849039289, + 28.922430599313863 + ], + [ + 34.856293158068596, + 28.96381250013342 + ], + [ + 34.86378012967401, + 29.006252208214278 + ], + [ + 34.85254968739667, + 29.031398949070297 + ], + [ + 34.85254967430279, + 29.045070698309033 + ], + [ + 34.864024270832886, + 29.063665947255835 + ], + [ + 34.87354578021195, + 29.085272635246326 + ], + [ + 34.89356531517712, + 29.174750211246867 + ], + [ + 34.89820397234481, + 29.1877302132732 + ], + [ + 34.90935304752871, + 29.210150330317408 + ], + [ + 34.907888208107906, + 29.216375959749975 + ], + [ + 34.90935307378901, + 29.230658391053684 + ], + [ + 34.91895591909014, + 29.239081066106092 + ], + [ + 34.942067899323234, + 29.250474297385672 + ], + [ + 34.93523196477207, + 29.267279342976757 + ], + [ + 34.932627792658735, + 29.28925195082069 + ], + [ + 34.93637130069321, + 29.303859868659103 + ], + [ + 34.948090043144845, + 29.298285252603886 + ], + [ + 34.949229360031, + 29.3014997140569 + ], + [ + 34.9493921151343, + 29.30426659498603 + ], + [ + 34.950694215353614, + 29.305731590593634 + ], + [ + 34.955577023233296, + 29.305121200823802 + ], + [ + 34.94800865514329, + 29.319973003343886 + ], + [ + 34.94532311531154, + 29.336900153706694 + ], + [ + 34.949385114892976, + 29.351685808668485 + ], + [ + 35.06031944314122, + 29.334696210899146 + ], + [ + 35.179071893531464, + 29.31666122391923 + ], + [ + 35.334617970830045, + 29.29314859986741 + ], + [ + 35.47362756849828, + 29.272064556787996 + ], + [ + 35.62204226145379, + 29.249688474968643 + ], + [ + 35.74025063010551, + 29.231730788933 + ], + [ + 35.79722538689776, + 29.22307530223142 + ], + [ + 35.912463833620045, + 29.20568619800942 + ], + [ + 36.016436814055275, + 29.189950719700732 + ], + [ + 36.043825306773996, + 29.190880736817537 + ], + [ + 36.06945684255934, + 29.200027701643933 + ], + [ + 36.17797734698538, + 29.27836913902498 + ], + [ + 36.283707307569784, + 29.354850082840446 + ], + [ + 36.39997930417008, + 29.438902011872564 + ], + [ + 36.477080527241256, + 29.49460908105354 + ], + [ + 36.541262666823094, + 29.589409589475846 + ], + [ + 36.603584416698155, + 29.68147091479877 + ], + [ + 36.64957644555061, + 29.749399620141254 + ], + [ + 36.704870224070994, + 29.831151706656414 + ], + [ + 36.72874475338576, + 29.853527751626917 + ], + [ + 36.75623659614969, + 29.865516517528945 + ], + [ + 36.84294965108722, + 29.88122617068528 + ], + [ + 36.93193649102835, + 29.897246060841987 + ], + [ + 37.07580365649392, + 29.923290799821924 + ], + [ + 37.21853397068251, + 29.949129084899806 + ], + [ + 37.35237594601586, + 29.97331378551645 + ], + [ + 37.47019820856454, + 29.994552777546488 + ], + [ + 37.49169559702249, + 30.011192526187784 + ], + [ + 37.53613732856197, + 30.105295305351092 + ], + [ + 37.56921024488112, + 30.174955129728737 + ], + [ + 37.605177041587304, + 30.250712785599198 + ], + [ + 37.63452925628438, + 30.31277618633171 + ], + [ + 37.647551715847975, + 30.330862918372983 + ], + [ + 37.67070275763712, + 30.347606088854718 + ], + [ + 37.77932661902208, + 30.400419406050826 + ], + [ + 37.900146118583095, + 30.459072168707596 + ], + [ + 37.97331994738609, + 30.494522199104395 + ], + [ + 37.98003788429771, + 30.49808788946946 + ], + [ + 37.980968056076875, + 30.49839791354046 + ], + [ + 37.98138146763304, + 30.49881132901224 + ], + [ + 37.98107141272871, + 30.499483147894306 + ], + [ + 37.931565389025, + 30.549660950199744 + ], + [ + 37.82190799969709, + 30.660868629577095 + ], + [ + 37.71204390353538, + 30.772024626330065 + ], + [ + 37.60228316566777, + 30.88323235012213 + ], + [ + 37.49262577661228, + 30.994491707585293 + ], + [ + 37.48942183686078, + 30.997695640635758 + ], + [ + 37.48632125109752, + 31.000899573594918 + ], + [ + 37.483117310449636, + 31.004103506467743 + ], + [ + 37.48001672707203, + 31.007255782300682 + ], + [ + 37.34989546718906, + 31.128230287490144 + ], + [ + 37.22172200998713, + 31.247292136758514 + ], + [ + 37.21977421424139, + 31.249101486475226 + ], + [ + 37.08965296166958, + 31.370076049094244 + ], + [ + 36.95953170510435, + 31.490998895499715 + ], + [ + 36.99791152591107, + 31.500814008905234 + ], + [ + 37.207268518287215, + 31.554354180156107 + ], + [ + 37.45500533282675, + 31.61770946598717 + ], + [ + 37.702742148957654, + 31.681116449841458 + ], + [ + 37.76141217958258, + 31.696120542787753 + ], + [ + 37.95047895798002, + 31.74447170331447 + ], + [ + 37.98652245832249, + 31.75335837142433 + ], + [ + 38.175374792211784, + 31.79992052381028 + ], + [ + 38.40016728023585, + 31.855369388869207 + ], + [ + 38.62485640238025, + 31.910869833841748 + ], + [ + 38.8497522450935, + 31.966318715425615 + ], + [ + 38.96333703436194, + 31.994378955175637 + ], + [ + 38.96344038952635, + 31.99432729479876 + ], + [ + 38.96344038289481, + 31.994482275930455 + ], + [ + 38.99806359921779, + 32.00693634256901 + ], + [ + 39.11681604362784, + 32.10289950094104 + ], + [ + 39.136246374453115, + 32.115353470665504 + ], + [ + 39.1463749684827, + 32.1181440835638 + ], + [ + 39.14926883788715, + 32.11891915391569 + ], + [ + 39.1521627251497, + 32.119746035897066 + ], + [ + 39.15495324038829, + 32.120572767809726 + ], + [ + 39.15774377773327, + 32.12134798864207 + ], + [ + 39.35556116733666, + 32.092564262502904 + ], + [ + 39.55327518201046, + 32.06372870464506 + ], + [ + 39.75098921447535, + 32.03489327317338 + ], + [ + 39.94859988799601, + 32.00610947475492 + ], + [ + 40.02880171072786, + 31.994482275930455 + ], + [ + 40.02900841672785, + 31.994482275930455 + ], + [ + 40.02911177195127, + 31.994430615552854 + ], + [ + 40.029318480317194, + 31.994378955175637 + ], + [ + 40.37027958279074, + 31.938465073523748 + ], + [ + 40.42412642828814, + 31.92053337494715 + ], + [ + 40.47983361111284, + 31.89283472989894 + ], + [ + 40.58266971807254, + 31.840434869520614 + ], + [ + 40.67031295284702, + 31.795683126848775 + ], + [ + 40.75816287623326, + 31.751086283704236 + ], + [ + 40.84590946343431, + 31.706334523057237 + ], + [ + 40.93355270072271, + 31.661634466992297 + ], + [ + 41.02129927314517, + 31.61693429303147 + ], + [ + 41.109045847682985, + 31.572285795850565 + ], + [ + 41.19668909286079, + 31.527585795995286 + ], + [ + 41.28453902431043, + 31.48283398016527 + ], + [ + 41.37218224392804, + 31.438133800504993 + ], + [ + 41.45982547998412, + 31.393433735888504 + ], + [ + 41.54757206195284, + 31.34873362266929 + ], + [ + 41.63542198834469, + 31.304033447368365 + ], + [ + 41.723065227122454, + 31.25938507886511 + ], + [ + 41.81070845587737, + 31.21468496414956 + ], + [ + 41.89855838700728, + 31.169984822013426 + ], + [ + 41.98620161787045, + 31.125284714060328 + ], + [ + 42.07539513974341, + 31.07986112916306 + ], + [ + 42.141644329087725, + 31.030406807642354 + ], + [ + 42.22629032331643, + 30.96746490018938 + ], + [ + 42.310729614640124, + 30.904523014511163 + ], + [ + 42.39516890457167, + 30.84158111297565 + ], + [ + 42.47971154956058, + 30.77863923303374 + ], + [ + 42.57448612137248, + 30.707635777302627 + ], + [ + 42.66915735281781, + 30.636684089095652 + ], + [ + 42.76393192413971, + 30.56562895377074 + ], + [ + 42.78341257665214, + 30.551045015297355 + ], + [ + 42.85870649992112, + 30.494677211187668 + ], + [ + 42.85880985556251, + 30.494625553007563 + ], + [ + 42.85891320579446, + 30.494573857284944 + ], + [ + 42.85901656043575, + 30.494522199104395 + ], + [ + 42.96474653858577, + 30.420004764764595 + ], + [ + 43.05290653294118, + 30.357786342277574 + ], + [ + 43.140963174361666, + 30.295671280426724 + ], + [ + 43.22907149186445, + 30.23350452885125 + ], + [ + 43.31723148547557, + 30.17133778522946 + ], + [ + 43.43174646051323, + 30.090567529697186 + ], + [ + 43.54636478702031, + 30.009797262146154 + ], + [ + 43.66098312947072, + 29.92902710999254 + ], + [ + 43.77549807691861, + 29.848204977585297 + ], + [ + 43.82401294749411, + 29.813979746360666 + ], + [ + 43.89006472796256, + 29.767383044980818 + ], + [ + 44.00463140769759, + 29.686612997649622 + ], + [ + 44.11914636322302, + 29.60581676094151 + ], + [ + 44.23366135564909, + 29.524994956026465 + ], + [ + 44.32895265997194, + 29.45778948791575 + ], + [ + 44.42429568106166, + 29.390532633389586 + ], + [ + 44.51974205163709, + 29.32332743641104 + ], + [ + 44.61487836681312, + 29.25607057628153 + ], + [ + 44.69182460163713, + 29.201836366238158 + ], + [ + 44.698232446599, + 29.19971739591774 + ], + [ + 44.70464033671761, + 29.19749539027767 + ], + [ + 44.71089319448146, + 29.195273384010363 + ], + [ + 44.717456111026785, + 29.193103044716484 + ], + [ + 44.80892340069395, + 29.185894209651558 + ], + [ + 44.888711795665834, + 29.179512051074525 + ], + [ + 44.96829348182213, + 29.173259056677818 + ], + [ + 45.047823533408824, + 29.166903022204963 + ], + [ + 45.12745689485775, + 29.160624183973642 + ], + [ + 45.22998295807565, + 29.152459463955193 + ], + [ + 45.33240562459395, + 29.144371937070375 + ], + [ + 45.43493168461583, + 29.136207200458017 + ], + [ + 45.53740606692844, + 29.128119957574864 + ], + [ + 45.63988040598983, + 29.12003240617072 + ], + [ + 45.74240646259773, + 29.11186764487021 + ], + [ + 45.844932476990145, + 29.103754243112853 + ], + [ + 45.94735517843698, + 29.095641133639184 + ], + [ + 46.023629600128636, + 29.08959504742367 + ], + [ + 46.099697315688395, + 29.083574790876494 + ], + [ + 46.175920060378004, + 29.077477027376492 + ], + [ + 46.25214276226102, + 29.07145646150896 + ], + [ + 46.357459342675924, + 29.06313664621994 + ], + [ + 46.40117759704183, + 29.071275622170415 + ], + [ + 46.427322300477215, + 29.076142962644017 + ], + [ + 46.44489589006692, + 29.07941489044091 + ], + [ + 46.48861414050986, + 29.08757968435484 + ], + [ + 46.53243574205687, + 29.095744470096314 + ], + [ + 46.64416020471522, + 29.083626459181726 + ], + [ + 46.75578131137263, + 29.07153426447897 + ], + [ + 46.86735069696419, + 29.059415917318663 + ], + [ + 46.97923018286503, + 29.04722034992011 + ], + [ + 47.07875898286182, + 29.03574812503967 + ], + [ + 47.17839113577535, + 29.024224215623374 + ], + [ + 47.278023328648075, + 29.012700590666526 + ], + [ + 47.377552122424, + 29.001202483841688 + ], + [ + 47.43336267683923, + 28.99471714330903 + ], + [ + 47.433466029839174, + 28.99471714330903 + ], + [ + 47.43398279585791, + 28.994613805589935 + ], + [ + 47.434086149503955, + 28.99458797115998 + ], + [ + 47.446323242938675, + 28.976242802296003 + ], + [ + 47.4944958813568, + 28.9040248944575 + ], + [ + 47.549944693076256, + 28.770596352081036 + ], + [ + 47.554595573603315, + 28.74537826393534 + ], + [ + 47.55841961632387, + 28.69147964914386 + ], + [ + 47.56803144252474, + 28.66099062644469 + ], + [ + 47.581674045199804, + 28.631483554366277 + ], + [ + 47.59681523640738, + 28.608823412049095 + ], + [ + 47.61815759963564, + 28.5914859490338 + ], + [ + 47.64110192714109, + 28.57724903053684 + ], + [ + 47.659808782910126, + 28.56004068987849 + ], + [ + 47.66812871382798, + 28.5335050226063 + ], + [ + 47.72182052066371, + 28.53397006581675 + ], + [ + 47.89958742564159, + 28.535623552611682 + ], + [ + 48.07740604816077, + 28.537277339547867 + ], + [ + 48.255224630659384, + 28.53887915435321 + ], + [ + 48.43278123319479, + 28.540479767239713 + ], + [ + 48.45639081035766, + 28.51845930092016 + ], + [ + 48.46876062748931, + 28.51064698060823 + ], + [ + 48.494639533115375, + 28.500148930952054 + ], + [ + 48.49854575421156, + 28.49290588618961 + ], + [ + 48.507660363903035, + 28.449164215401694 + ], + [ + 48.50782310710849, + 28.415716821632827 + ], + [ + 48.499034042513344, + 28.39337794307045 + ], + [ + 48.47608483039361, + 28.400783584428343 + ], + [ + 48.4712020163331, + 28.394191779778726 + ], + [ + 48.46998133577883, + 28.391302944579703 + ], + [ + 48.468760622411715, + 28.387111788867077 + ], + [ + 48.48829184423872, + 28.38589088275547 + ], + [ + 48.50489341203209, + 28.38963441357421 + ], + [ + 48.517344576663696, + 28.39899308462071 + ], + [ + 48.52393637887578, + 28.414455362265873 + ], + [ + 48.53549239690211, + 28.40761962577864 + ], + [ + 48.53492272482743, + 28.398667730344524 + ], + [ + 48.523936410427865, + 28.380316591380474 + ], + [ + 48.51783289459094, + 28.35419353956429 + ], + [ + 48.51710044018708, + 28.342433864512657 + ], + [ + 48.52222740125011, + 28.318833662678973 + ], + [ + 48.53492271485281, + 28.298814143220277 + ], + [ + 48.61841880364421, + 28.217271136136226 + ], + [ + 48.62354577268466, + 28.205267671817232 + ], + [ + 48.60914147944802, + 28.186102660295923 + ], + [ + 48.60173588580344, + 28.16738525147186 + ], + [ + 48.60084069300016, + 28.1477725426218 + ], + [ + 48.60645593318642, + 28.126450973928822 + ], + [ + 48.616465674602026, + 28.110540962849605 + ], + [ + 48.64812260441662, + 28.071966955162285 + ], + [ + 48.65479575232954, + 28.061590764533566 + ], + [ + 48.6533309403719, + 28.04987225002161 + ], + [ + 48.65211023452618, + 28.04608805012502 + ], + [ + 48.667816618444846, + 28.037665226976955 + ], + [ + 48.70199629923104, + 28.023993298925244 + ], + [ + 48.71290124221544, + 28.022894629013724 + ], + [ + 48.74708093423954, + 28.023993298925244 + ], + [ + 48.75586998224036, + 28.021714542657815 + ], + [ + 48.77588953579184, + 28.01194908347709 + ], + [ + 48.78793377341196, + 28.00971088303171 + ], + [ + 48.79200278428029, + 28.00702534240453 + ], + [ + 48.791514514248405, + 28.000799837042955 + ], + [ + 48.788259295293074, + 27.99388243838347 + ], + [ + 48.78451580965864, + 27.98924379848418 + ], + [ + 48.778086778770735, + 27.986639670114076 + ], + [ + 48.77133222258508, + 27.987005894474994 + ], + [ + 48.764007997663406, + 27.98924379848418 + ], + [ + 48.746836780943084, + 27.981634803086177 + ], + [ + 48.742360868400034, + 27.97524645206399 + ], + [ + 48.74366296189845, + 27.961330507171475 + ], + [ + 48.753265827449155, + 27.947984164657683 + ], + [ + 48.77328534478669, + 27.92975489664836 + ], + [ + 48.79623455425694, + 27.913641545082267 + ], + [ + 48.814707862900846, + 27.906683541834546 + ], + [ + 48.81519617674099, + 27.902248563952398 + ], + [ + 48.83765710170868, + 27.872300557921015 + ], + [ + 48.877940306699806, + 27.836818801771273 + ], + [ + 48.882660342580664, + 27.826727535982073 + ], + [ + 48.87378992840814, + 27.80658614205379 + ], + [ + 48.87256920658618, + 27.793890688915564 + ], + [ + 48.87338302603052, + 27.782131379017738 + ], + [ + 48.87671957829461, + 27.777004159448992 + ], + [ + 48.8745223172572, + 27.769924110951315 + ], + [ + 48.86548913538623, + 27.754055127732318 + ], + [ + 48.85279381813604, + 27.73749422398776 + ], + [ + 48.839203311008305, + 27.728583000142986 + ], + [ + 48.84620201494634, + 27.740301794659423 + ], + [ + 48.8476668799636, + 27.748724803885054 + ], + [ + 48.845469587922594, + 27.7732607412168 + ], + [ + 48.84848065963595, + 27.787298854987323 + ], + [ + 48.85425866955824, + 27.795355607248528 + ], + [ + 48.85759525930984, + 27.803534331251036 + ], + [ + 48.852875209451526, + 27.817938644112882 + ], + [ + 48.83806399919462, + 27.80402253690211 + ], + [ + 48.821787951727316, + 27.766831733590095 + ], + [ + 48.80502363114997, + 27.75649646467473 + ], + [ + 48.82341557274356, + 27.799628084567534 + ], + [ + 48.82553144096226, + 27.811102568466893 + ], + [ + 48.820567266005526, + 27.830023594333777 + ], + [ + 48.812510597839484, + 27.828599238158642 + ], + [ + 48.80404706509202, + 27.81500881197614 + ], + [ + 48.78516685086467, + 27.744696265086304 + ], + [ + 48.784515811019496, + 27.728583000142986 + ], + [ + 48.78223717360791, + 27.72614165855643 + ], + [ + 48.778819196597034, + 27.719549793915014 + ], + [ + 48.780039920991314, + 27.71409748052979 + ], + [ + 48.791351740545736, + 27.714911061472385 + ], + [ + 48.7968856127631, + 27.71971263022191 + ], + [ + 48.80396569018834, + 27.736476948917588 + ], + [ + 48.811289902111454, + 27.74282455192542 + ], + [ + 48.81128991144336, + 27.6981875778425 + ], + [ + 48.8152775396082, + 27.687567447054256 + ], + [ + 48.824554889812624, + 27.688950957683044 + ], + [ + 48.83399498384919, + 27.697455113829896 + ], + [ + 48.839203317754155, + 27.708075237646636 + ], + [ + 48.846202012048494, + 27.697088881810256 + ], + [ + 48.847341348141924, + 27.683824006153255 + ], + [ + 48.845469600874594, + 27.667141047151215 + ], + [ + 48.85808354401839, + 27.662827972475732 + ], + [ + 48.867686398679815, + 27.667792094191597 + ], + [ + 48.8750106228614, + 27.677476378094724 + ], + [ + 48.88013756560771, + 27.687567447054256 + ], + [ + 48.880544469349154, + 27.67031486365739 + ], + [ + 48.87842856270674, + 27.66421118490943 + ], + [ + 48.87330164434186, + 27.659654154423542 + ], + [ + 48.87818442805893, + 27.650580047584253 + ], + [ + 48.877126502179244, + 27.64447666147371 + ], + [ + 48.870616099391285, + 27.641180862022296 + ], + [ + 48.859629765449995, + 27.640448395285674 + ], + [ + 48.86980227532447, + 27.618556997717565 + ], + [ + 48.873301622415916, + 27.612494158296997 + ], + [ + 48.848968963311556, + 27.623358596645783 + ], + [ + 48.83887780719543, + 27.62319575931397 + ], + [ + 48.83179771542145, + 27.612494158296997 + ], + [ + 48.852793814309464, + 27.604641005225147 + ], + [ + 48.870778861845864, + 27.60561772989497 + ], + [ + 48.884776252879945, + 27.615057796279288 + ], + [ + 48.89380942231826, + 27.632961189238692 + ], + [ + 48.90064536031565, + 27.632961189238692 + ], + [ + 48.90748132145047, + 27.618719835097185 + ], + [ + 48.89527427833227, + 27.60773341567106 + ], + [ + 48.89112388930671, + 27.588120799521498 + ], + [ + 48.89673914453367, + 27.572007671545496 + ], + [ + 48.91431723879548, + 27.571519157981463 + ], + [ + 48.92164148034409, + 27.57884355507799 + ], + [ + 48.9172469520432, + 27.585842273447334 + ], + [ + 48.90951582419609, + 27.592678151142927 + ], + [ + 48.90748130582176, + 27.599432607147108 + ], + [ + 48.91529382573044, + 27.608628721410547 + ], + [ + 48.926036021968926, + 27.613837116485392 + ], + [ + 48.94906660745508, + 27.618719835097185 + ], + [ + 48.96851645997969, + 27.620347307487272 + ], + [ + 48.98170005020183, + 27.614569284022565 + ], + [ + 49.01734460694758, + 27.58519122301877 + ], + [ + 49.054209850310144, + 27.568264203147812 + ], + [ + 49.06397545932098, + 27.556341881522563 + ], + [ + 49.04468835646154, + 27.544175594523796 + ], + [ + 49.05892987072982, + 27.538153286670116 + ], + [ + 49.07162520790754, + 27.539496250994716 + ], + [ + 49.077647331529775, + 27.546535545447703 + ], + [ + 49.0720320948707, + 27.557847381928234 + ], + [ + 49.08887780896406, + 27.55109290866845 + ], + [ + 49.106293145289385, + 27.546860921213955 + ], + [ + 49.144297731480755, + 27.544175594523796 + ], + [ + 49.15267989063462, + 27.546332148035653 + ], + [ + 49.170420752700515, + 27.55573138920152 + ], + [ + 49.178477407866126, + 27.557847381928234 + ], + [ + 49.18897546255303, + 27.55670811681651 + ], + [ + 49.20875084705324, + 27.551581122400755 + ], + [ + 49.219574422684346, + 27.550441856856537 + ], + [ + 49.239756716041356, + 27.545111463071635 + ], + [ + 49.255137584775895, + 27.532375534448203 + ], + [ + 49.278086785802955, + 27.5032412840584 + ], + [ + 49.28532962486158, + 27.497626058050525 + ], + [ + 49.29249108010831, + 27.49412668071988 + ], + [ + 49.299082886341836, + 27.489894979429522 + ], + [ + 49.305349164752556, + 27.482123187662413 + ], + [ + 49.30787194311559, + 27.474514080986864 + ], + [ + 49.3098250643499, + 27.45669178651413 + ], + [ + 49.31275475451698, + 27.448635161913202 + ], + [ + 49.300140824793665, + 27.448065525727323 + ], + [ + 49.2926538398462, + 27.452948292693243 + ], + [ + 49.28988691664994, + 27.4623477354835 + ], + [ + 49.2917586543482, + 27.475327824277695 + ], + [ + 49.28492271634892, + 27.475327824277695 + ], + [ + 49.26392662163371, + 27.452866873196054 + ], + [ + 49.20883223421989, + 27.458075316734334 + ], + [ + 49.18921959582566, + 27.44114817008247 + ], + [ + 49.18189537782589, + 27.44114817008247 + ], + [ + 49.175059443891165, + 27.458319424932387 + ], + [ + 49.15772545036604, + 27.458482113655734 + ], + [ + 49.11980227882732, + 27.44114817008247 + ], + [ + 49.12810306731341, + 27.43691645601468 + ], + [ + 49.15007572417334, + 27.4313419185521 + ], + [ + 49.16138756733251, + 27.42690665313388 + ], + [ + 49.1702580124242, + 27.421047294049004 + ], + [ + 49.17611739135446, + 27.415838989962573 + ], + [ + 49.18311608463687, + 27.411118902068544 + ], + [ + 49.19548587336888, + 27.40643952280747 + ], + [ + 49.20199628798183, + 27.398667694631385 + ], + [ + 49.207041854706, + 27.395168297832015 + ], + [ + 49.21257571382186, + 27.39679594180047 + ], + [ + 49.229502807226964, + 27.4118106689491 + ], + [ + 49.2296655623434, + 27.413885819212524 + ], + [ + 49.2350366521724, + 27.418158248512647 + ], + [ + 49.23731529259015, + 27.42397689871848 + ], + [ + 49.240244987811195, + 27.427191471565777 + ], + [ + 49.24691816432401, + 27.423773499865867 + ], + [ + 49.25456789858659, + 27.417792010282106 + ], + [ + 49.263845249344335, + 27.413885819212524 + ], + [ + 49.25684655727179, + 27.40005122930634 + ], + [ + 49.24732506591275, + 27.393133855335474 + ], + [ + 49.237478057004445, + 27.388128942572703 + ], + [ + 49.22966555136288, + 27.37970604855446 + ], + [ + 49.22673587076002, + 27.368719776913952 + ], + [ + 49.22608482301469, + 27.342759438332468 + ], + [ + 49.223399288610565, + 27.331284925616337 + ], + [ + 49.23406008539224, + 27.333889014477798 + ], + [ + 49.24577883573682, + 27.33942287114311 + ], + [ + 49.25733483280938, + 27.346909904178943 + ], + [ + 49.26742597751787, + 27.355210682950233 + ], + [ + 49.27881920030009, + 27.358791356912285 + ], + [ + 49.292165557396, + 27.35545479251973 + ], + [ + 49.31275474786692, + 27.34495672621934 + ], + [ + 49.304860880026716, + 27.325506956680385 + ], + [ + 49.30787193494628, + 27.306301127689803 + ], + [ + 49.31511477944424, + 27.28681060974279 + ], + [ + 49.31902103369, + 27.26642490030346 + ], + [ + 49.31706790097398, + 27.223700231020505 + ], + [ + 49.32260174963075, + 27.20571516381844 + ], + [ + 49.33952885164242, + 27.207831196248236 + ], + [ + 49.338389525381984, + 27.189602004208997 + ], + [ + 49.34522545446594, + 27.182806688452896 + ], + [ + 49.35596764665934, + 27.185003993504356 + ], + [ + 49.36687259935448, + 27.194159303656214 + ], + [ + 49.361827014907426, + 27.20913317350294 + ], + [ + 49.37086023056609, + 27.218736135865754 + ], + [ + 49.38640384961135, + 27.2196313105022 + ], + [ + 49.40088952865446, + 27.207831196248236 + ], + [ + 49.407074415841535, + 27.215277417467178 + ], + [ + 49.412364126644555, + 27.204006233883643 + ], + [ + 49.409434432675475, + 27.19391504192412 + ], + [ + 49.403981976467854, + 27.183295061940324 + ], + [ + 49.40088952451627, + 27.170233508540537 + ], + [ + 49.39747154925149, + 27.16258372022367 + ], + [ + 49.388845251457724, + 27.159328544693363 + ], + [ + 49.37769615304345, + 27.159165703281946 + ], + [ + 49.36687260158882, + 27.160630675051358 + ], + [ + 49.374847855887886, + 27.14907464104518 + ], + [ + 49.39909915034383, + 27.144720734022762 + ], + [ + 49.40707441344202, + 27.13271717795268 + ], + [ + 49.41716555887292, + 27.138128956562323 + ], + [ + 49.423594588442306, + 27.146470378918092 + ], + [ + 49.435069206451445, + 27.166815492770883 + ], + [ + 49.43588301203006, + 27.162339608364274 + ], + [ + 49.43677819617974, + 27.16176996394114 + ], + [ + 49.43848717904044, + 27.162054786154528 + ], + [ + 49.441905153603436, + 27.160630675051358 + ], + [ + 49.43189538447788, + 27.142767687303582 + ], + [ + 49.440196168210676, + 27.139797331411458 + ], + [ + 49.465668168525774, + 27.146958753201123 + ], + [ + 49.48129316131722, + 27.14443591159034 + ], + [ + 49.508311396130836, + 27.1339785994405 + ], + [ + 49.5244246734383, + 27.13271717795268 + ], + [ + 49.497325073243594, + 27.1590844327985 + ], + [ + 49.48910566950685, + 27.174750101682427 + ], + [ + 49.5040796193676, + 27.187933633081734 + ], + [ + 49.51644942074673, + 27.18838129615559 + ], + [ + 49.52613365745665, + 27.182806688452896 + ], + [ + 49.53492272081389, + 27.17617421188125 + ], + [ + 49.54493248013819, + 27.173651373561285 + ], + [ + 49.55274498460824, + 27.176743855935086 + ], + [ + 49.57211348438508, + 27.194159303656214 + ], + [ + 49.568614127823125, + 27.178290096959536 + ], + [ + 49.55941815559861, + 27.15399804164192 + ], + [ + 49.55860435548307, + 27.139553069082975 + ], + [ + 49.564626491186544, + 27.116685236421052 + ], + [ + 49.57007896598007, + 27.104071309506466 + ], + [ + 49.5755314538032, + 27.098578252283435 + ], + [ + 49.59424889866017, + 27.090725038009 + ], + [ + 49.612478054831136, + 27.071966816283414 + ], + [ + 49.67017663447685, + 26.990912219569346 + ], + [ + 49.699473511856105, + 26.95823808417579 + ], + [ + 49.70826256321254, + 26.952134485287118 + ], + [ + 49.736664259138834, + 26.94090404008129 + ], + [ + 49.74586021513311, + 26.934271498480687 + ], + [ + 49.7605086532564, + 26.920640314403023 + ], + [ + 49.770843941036865, + 26.913560250277325 + ], + [ + 49.83301843204715, + 26.888006958018256 + ], + [ + 49.87183678453858, + 26.86249420439286 + ], + [ + 49.89405357299658, + 26.860296871647595 + ], + [ + 49.91724693198152, + 26.8614768845689 + ], + [ + 49.942149283295905, + 26.8583438036946 + ], + [ + 49.97299237780256, + 26.842352557584654 + ], + [ + 50.001963746733864, + 26.81696204932027 + ], + [ + 50.05201255939627, + 26.75592677315441 + ], + [ + 50.069102416305014, + 26.728583124584922 + ], + [ + 50.141937691798454, + 26.681341830885945 + ], + [ + 50.15845788535245, + 26.664862422111216 + ], + [ + 50.16187585546132, + 26.63922767287392 + ], + [ + 50.116709837624455, + 26.67536046336989 + ], + [ + 50.092539917292214, + 26.68911373149408 + ], + [ + 50.037852415066794, + 26.695217229972943 + ], + [ + 50.02369225441611, + 26.6995303442822 + ], + [ + 50.01400801722449, + 26.71076087383962 + ], + [ + 50.00635827544047, + 26.74762609464101 + ], + [ + 49.997569206091875, + 26.741359760854106 + ], + [ + 49.98845462595955, + 26.72443270731975 + ], + [ + 49.98373456459335, + 26.708197282450406 + ], + [ + 49.98292076782725, + 26.69570546173776 + ], + [ + 49.98324628999194, + 26.68374257993577 + ], + [ + 49.98650150518409, + 26.67275630883269 + ], + [ + 49.99366296614077, + 26.663153459354277 + ], + [ + 50.00367271903391, + 26.653631879508954 + ], + [ + 50.006358260357615, + 26.64858626153128 + ], + [ + 50.002207886457526, + 26.587388473363138 + ], + [ + 50.003672722280605, + 26.570705473236234 + ], + [ + 50.0306095677675, + 26.49461495009857 + ], + [ + 50.04184004132651, + 26.47846101563926 + ], + [ + 50.05827884039157, + 26.463934624088505 + ], + [ + 50.07650800474191, + 26.453762076804324 + ], + [ + 50.16228273878507, + 26.427069328971715 + ], + [ + 50.19157962587848, + 26.403550546152562 + ], + [ + 50.2092391364284, + 26.369533655886542 + ], + [ + 50.216563353506864, + 26.323920041636715 + ], + [ + 50.215993688709275, + 26.2150739821043 + ], + [ + 50.212250197883534, + 26.19131095539686 + ], + [ + 50.20199628692857, + 26.171372763846765 + ], + [ + 50.182383663103735, + 26.160101655449353 + ], + [ + 50.181895381112014, + 26.175482506296532 + ], + [ + 50.17408287633836, + 26.18073149020648 + ], + [ + 50.16342207449777, + 26.177232192652568 + ], + [ + 50.15455162944198, + 26.166245838623862 + ], + [ + 50.160980667493085, + 26.141099371481673 + ], + [ + 50.15837649657927, + 26.102484430291167 + ], + [ + 50.15040123657741, + 26.06321848023696 + ], + [ + 50.1413680377305, + 26.035956144629093 + ], + [ + 50.125824417613, + 26.04645419064403 + ], + [ + 50.121429880322474, + 26.060736364569088 + ], + [ + 50.12183678562618, + 26.076483471174413 + ], + [ + 50.12029056542752, + 26.091213319548363 + ], + [ + 50.11329186499054, + 26.103257570417632 + ], + [ + 50.10434003685215, + 26.111232789047442 + ], + [ + 50.0948999366324, + 26.117621166211816 + ], + [ + 50.08676191067253, + 26.125311555349477 + ], + [ + 50.08130943953666, + 26.129095757946537 + ], + [ + 50.076670767536754, + 26.129095757946537 + ], + [ + 50.07357831917807, + 26.13153716199369 + ], + [ + 50.071625199757214, + 26.159247167878174 + ], + [ + 50.06959069154075, + 26.165961009441332 + ], + [ + 50.06568444160004, + 26.173732819925736 + ], + [ + 50.05787194550071, + 26.183579856927462 + ], + [ + 50.045664905798944, + 26.194525423551074 + ], + [ + 50.032399936464664, + 26.20107656880889 + ], + [ + 50.02100670982853, + 26.19765861919877 + ], + [ + 49.994883661850096, + 26.152167074236228 + ], + [ + 49.98682701973895, + 26.145819409089544 + ], + [ + 49.97584068926967, + 26.13959380272929 + ], + [ + 49.98096764566991, + 26.126125406784812 + ], + [ + 49.99154706806399, + 26.113104534742842 + ], + [ + 49.99732506350743, + 26.108221726400707 + ], + [ + 49.99952233028219, + 26.100897513795722 + ], + [ + 50.00879967200433, + 26.086493206206548 + ], + [ + 50.01042727907899, + 26.076890359371443 + ], + [ + 50.00709068782799, + 26.074408243720274 + ], + [ + 50.000173373733006, + 26.07217032107427 + ], + [ + 49.993174670598385, + 26.06806057750555 + ], + [ + 49.99000084342238, + 26.06045153531759 + ], + [ + 49.99236087602707, + 26.045884532142146 + ], + [ + 49.996104361934584, + 26.031724342140862 + ], + [ + 49.99691816911007, + 26.01727939821205 + ], + [ + 49.990000844139246, + 26.001776410153795 + ], + [ + 50.006846551682756, + 25.996527425027654 + ], + [ + 50.02100671016078, + 26.004462007324406 + ], + [ + 50.02816816252955, + 26.01947660945159 + ], + [ + 50.02409915772408, + 26.035956144629093 + ], + [ + 50.03370202081004, + 26.033351970036406 + ], + [ + 50.040537955534006, + 26.028265679817704 + ], + [ + 50.052012563559124, + 26.015448288700668 + ], + [ + 50.05738365889035, + 26.01316965477065 + ], + [ + 50.06169680804622, + 26.014146201437686 + ], + [ + 50.0646265006962, + 26.01337313641969 + ], + [ + 50.06568443830379, + 26.005519901565656 + ], + [ + 50.065765817027966, + 25.999457064934436 + ], + [ + 50.06690514846149, + 25.996283307147994 + ], + [ + 50.069834834627336, + 25.99510327887634 + ], + [ + 50.075938344498695, + 25.995021856174578 + ], + [ + 50.10132897427144, + 25.98948804191 + ], + [ + 50.11150149473038, + 25.97601957075565 + ], + [ + 50.11670983235801, + 25.958238025986446 + ], + [ + 50.127696159136974, + 25.940375059789957 + ], + [ + 50.127696163557374, + 25.933539159732852 + ], + [ + 50.10775800704026, + 25.914740285588117 + ], + [ + 50.11833743799617, + 25.86786531877567 + ], + [ + 50.141937696189295, + 25.816107490596245 + ], + [ + 50.161875850074914, + 25.78270093999808 + ], + [ + 50.22201581809905, + 25.717352581370882 + ], + [ + 50.247243688790284, + 25.679429452750444 + ], + [ + 50.25749759154854, + 25.631903383142685 + ], + [ + 50.25123131554863, + 25.631903383142685 + ], + [ + 50.23373456995606, + 25.679510800111203 + ], + [ + 50.226735871014256, + 25.68716053210088 + ], + [ + 50.21461022152565, + 25.689642640962862 + ], + [ + 50.199961785068645, + 25.69586823158348 + ], + [ + 50.18751061484278, + 25.703558676672742 + ], + [ + 50.17497806167835, + 25.720445059762692 + ], + [ + 50.15919030345626, + 25.73175693234528 + ], + [ + 50.14470462636027, + 25.73334384553475 + ], + [ + 50.14136803649685, + 25.7138125797316 + ], + [ + 50.14869225044422, + 25.699855830723838 + ], + [ + 50.174327019688235, + 25.683010163864846 + ], + [ + 50.182383657748666, + 25.672837612800894 + ], + [ + 50.187673368702534, + 25.682928741386807 + ], + [ + 50.18921959501573, + 25.68716053210088 + ], + [ + 50.19605553301552, + 25.68716053210088 + ], + [ + 50.23406009207943, + 25.615179755679517 + ], + [ + 50.3479923858816, + 25.482123130245764 + ], + [ + 50.37427819062369, + 25.461167706746135 + ], + [ + 50.37134850393164, + 25.47451406440905 + ], + [ + 50.36475670866515, + 25.49005769836237 + ], + [ + 50.36198978055103, + 25.502997141747944 + ], + [ + 50.37077884168766, + 25.50836822830982 + ], + [ + 50.381358268983625, + 25.51288483285881 + ], + [ + 50.38591556205521, + 25.51064688608228 + ], + [ + 50.38998457261291, + 25.488674234906547 + ], + [ + 50.39503014239871, + 25.483303113188 + ], + [ + 50.39991295875033, + 25.48037345509883 + ], + [ + 50.402110224059975, + 25.477972740773172 + ], + [ + 50.41016686335454, + 25.46409740106143 + ], + [ + 50.428721549225415, + 25.456203511307987 + ], + [ + 50.462901236493856, + 25.446926160986475 + ], + [ + 50.47152754176527, + 25.43720125426098 + ], + [ + 50.49089602881618, + 25.392279353730554 + ], + [ + 50.483409051294416, + 25.38544343823654 + ], + [ + 50.49561608311623, + 25.370062576699375 + ], + [ + 50.50912519561085, + 25.343573305611084 + ], + [ + 50.52035566504099, + 25.314764716357093 + ], + [ + 50.52507571714375, + 25.292669990256183 + ], + [ + 50.523936393473846, + 25.280218812395457 + ], + [ + 50.51872806044639, + 25.25800201514545 + ], + [ + 50.51758873879961, + 25.244859124018436 + ], + [ + 50.51978600481564, + 25.232123121166634 + ], + [ + 50.5244246746659, + 25.223089908061983 + ], + [ + 50.529063346935146, + 25.216294663429267 + ], + [ + 50.53467858115384, + 25.199042051545202 + ], + [ + 50.54908287882015, + 25.17479075541214 + ], + [ + 50.551605665973, + 25.15949128659707 + ], + [ + 50.545420768562515, + 25.11859771912013 + ], + [ + 50.55347741005512, + 25.07794830948981 + ], + [ + 50.56218509183491, + 25.0548363285281 + ], + [ + 50.57276451906373, + 25.042873440568407 + ], + [ + 50.580414258977655, + 25.06216054880051 + ], + [ + 50.6062931649265, + 25.042710678344122 + ], + [ + 50.63347415495063, + 25.011419988558618 + ], + [ + 50.64478599018623, + 24.99506244343217 + ], + [ + 50.661631711280556, + 24.979966577327026 + ], + [ + 50.681407105472836, + 24.913885885266335 + ], + [ + 50.70655358529931, + 24.89887119072071 + ], + [ + 50.72641036452215, + 24.88165935992522 + ], + [ + 50.73503664851643, + 24.843410490349708 + ], + [ + 50.73731528480538, + 24.782171803842953 + ], + [ + 50.741465697792954, + 24.77057532381943 + ], + [ + 50.75001062569859, + 24.753119323714596 + ], + [ + 50.760590033207855, + 24.73639551303246 + ], + [ + 50.7713322110961, + 24.726955325818626 + ], + [ + 50.78614344069171, + 24.727240445198436 + ], + [ + 50.80787195424011, + 24.746649601577193 + ] + ] + ], + [ + [ + [ + 42.186438239615, + 16.70552810004121 + ], + [ + 42.186307022639724, + 16.691396353018582 + ], + [ + 42.18346073394228, + 16.673433530111566 + ], + [ + 42.17655633641758, + 16.651644437833117 + ], + [ + 42.17908486534516, + 16.63491232273207 + ], + [ + 42.188199091878104, + 16.60526429585911 + ], + [ + 42.17823327350583, + 16.58510983764397 + ], + [ + 42.17855878657076, + 16.58348211098981 + ], + [ + 42.1558360911327, + 16.584976597191716 + ], + [ + 42.12797547228156, + 16.6173567301354 + ], + [ + 42.10525303045871, + 16.62525697218902 + ], + [ + 42.083815261095666, + 16.626718260841624 + ], + [ + 42.07317025375067, + 16.6358012933438 + ], + [ + 42.10142829603251, + 16.647137846639225 + ], + [ + 42.11763294795134, + 16.65985532342145 + ], + [ + 42.11111396103378, + 16.680469886714693 + ], + [ + 42.08575343229332, + 16.69352474492945 + ], + [ + 42.06024241713706, + 16.689877682520205 + ], + [ + 42.03072149083468, + 16.68754079260659 + ], + [ + 42.010559831942594, + 16.68255681941359 + ], + [ + 41.99169371926451, + 16.67241913028906 + ], + [ + 41.97553175631113, + 16.66355330880976 + ], + [ + 41.95545749739482, + 16.6701149871048 + ], + [ + 41.93283447578159, + 16.690844914898445 + ], + [ + 41.9168630853737, + 16.70509923711795 + ], + [ + 41.89408681839886, + 16.71039430471015 + ], + [ + 41.86739568137893, + 16.728568628640364 + ], + [ + 41.8433680742343, + 16.746720119295606 + ], + [ + 41.831420674746, + 16.76735360621892 + ], + [ + 41.82494075378348, + 16.798237289855066 + ], + [ + 41.807561381763364, + 16.80992008436051 + ], + [ + 41.79008887279111, + 16.810037402003832 + ], + [ + 41.778168169665534, + 16.812689591893918 + ], + [ + 41.78077233280133, + 16.819322019341882 + ], + [ + 41.779560070444255, + 16.840952026993513 + ], + [ + 41.76489904683401, + 16.8590438780696 + ], + [ + 41.7556139400297, + 16.878387166455667 + ], + [ + 41.75708464401002, + 16.89637236355231 + ], + [ + 41.77185677677245, + 16.892413907811466 + ], + [ + 41.77718151651759, + 16.88466568724123 + ], + [ + 41.78921826063644, + 16.87558626448093 + ], + [ + 41.82808435027747, + 16.85860795519723 + ], + [ + 41.84942430175808, + 16.835329492917033 + ], + [ + 41.86005957727075, + 16.821122341907117 + ], + [ + 41.86391631709535, + 16.79668737503222 + ], + [ + 41.86329186345702, + 16.78514232703747 + ], + [ + 41.88113712175802, + 16.765737446627384 + ], + [ + 41.89846671413765, + 16.7514837269532 + ], + [ + 41.90514277048496, + 16.747581450224466 + ], + [ + 41.94139070153179, + 16.75116872678883 + ], + [ + 41.95332057950796, + 16.733098202004292 + ], + [ + 41.973427293507314, + 16.731661398625157 + ], + [ + 41.99359951352705, + 16.73793060811217 + ], + [ + 42.01104810177633, + 16.739080201016275 + ], + [ + 42.023020017508784, + 16.72742684687575 + ], + [ + 42.022920537378745, + 16.715867226431598 + ], + [ + 42.03499040895085, + 16.715773041826516 + ], + [ + 42.06460613232954, + 16.72838236244028 + ], + [ + 42.03648755331242, + 16.733744275325897 + ], + [ + 42.021739132068234, + 16.755804802149438 + ], + [ + 42.03386477615059, + 16.773830411918805 + ], + [ + 42.04135175709046, + 16.80231351474149 + ], + [ + 42.04786217177048, + 16.81207911955084 + ], + [ + 42.06218509128954, + 16.814195043126205 + ], + [ + 42.06853274515122, + 16.811753604401055 + ], + [ + 42.076508004776215, + 16.808661135359035 + ], + [ + 42.10407567316329, + 16.79228323149841 + ], + [ + 42.10526674340259, + 16.7755765071669 + ], + [ + 42.11849352170639, + 16.75491613216501 + ], + [ + 42.11654707009748, + 16.74416737115207 + ], + [ + 42.14116511564865, + 16.74059601729286 + ], + [ + 42.14769434373638, + 16.721272701704553 + ], + [ + 42.186438239615, + 16.70552810004121 + ] + ] + ], + [ + [ + [ + 41.91889265798304, + 16.791154818987 + ], + [ + 41.90422260203356, + 16.802820789629955 + ], + [ + 41.88959525665469, + 16.820911740969944 + ], + [ + 41.86431311181135, + 16.85192685879624 + ], + [ + 41.84302971399683, + 16.880346716281537 + ], + [ + 41.83497154879237, + 16.891668993492562 + ], + [ + 41.83497155109749, + 16.891750409818687 + ], + [ + 41.84620202140662, + 16.90127191385223 + ], + [ + 41.87037194423485, + 16.90265539050291 + ], + [ + 41.887950070685825, + 16.90778236565883 + ], + [ + 41.900889516357985, + 16.918361680629197 + ], + [ + 41.91098066399632, + 16.936021210680686 + ], + [ + 41.9212345758596, + 16.935207498152437 + ], + [ + 41.92310631609956, + 16.93504466551782 + ], + [ + 41.92847740670482, + 16.95490138377633 + ], + [ + 41.920909046868104, + 16.978949238315113 + ], + [ + 41.90748131585528, + 16.984808658795227 + ], + [ + 41.89405358483615, + 16.990668079182754 + ], + [ + 41.88111413184675, + 16.99168533235512 + ], + [ + 41.85857181323316, + 16.99640537502094 + ], + [ + 41.84620202249975, + 16.99746333632939 + ], + [ + 41.84376061740252, + 17.001898572075234 + ], + [ + 41.851410353160716, + 17.009914472673174 + ], + [ + 41.860850457459605, + 17.013617261994195 + ], + [ + 41.86329186756386, + 17.004950331490225 + ], + [ + 41.89568119040795, + 17.001898572075234 + ], + [ + 41.92115319352129, + 16.992010847361108 + ], + [ + 41.93816165284449, + 16.972886427184434 + ], + [ + 41.93905683465371, + 16.968817414272873 + ], + [ + 41.945160356013574, + 16.94228756318583 + ], + [ + 41.945467517773956, + 16.923272196328785 + ], + [ + 41.939919297618125, + 16.90147320144341 + ], + [ + 41.9438016072209, + 16.88345856250199 + ], + [ + 41.975963027309135, + 16.87550484815166 + ], + [ + 41.985180772612935, + 16.85359634427932 + ], + [ + 41.944102406557384, + 16.85301336127127 + ], + [ + 41.93230228354981, + 16.838365030425766 + ], + [ + 41.9381616559479, + 16.821356526543973 + ], + [ + 41.96265709506672, + 16.813137081339743 + ], + [ + 41.9765731104797, + 16.804999052329393 + ], + [ + 41.99544166595118, + 16.79700147387879 + ], + [ + 42.0019584707104, + 16.772556441353977 + ], + [ + 42.00184477744908, + 16.760987508642522 + ], + [ + 41.97246962340734, + 16.777909791524543 + ], + [ + 41.93632268495914, + 16.78845576199983 + ], + [ + 41.91889265798304, + 16.791154818987 + ] + ] + ], + [ + [ + [ + 49.56544029578269, + 27.35175198801208 + ], + [ + 49.5851343025443, + 27.344305666855277 + ], + [ + 49.63843834829079, + 27.330633865790965 + ], + [ + 49.68881269365889, + 27.317694385242646 + ], + [ + 49.67042077756904, + 27.311428192048268 + ], + [ + 49.65512128589494, + 27.31460192383533 + ], + [ + 49.64039146463935, + 27.320990246129643 + ], + [ + 49.62378990823264, + 27.32444894658331 + ], + [ + 49.607269735103465, + 27.322455206542518 + ], + [ + 49.5918074871986, + 27.316799214908713 + ], + [ + 49.57764733602165, + 27.308295019592236 + ], + [ + 49.56544029814265, + 27.297796927856457 + ], + [ + 49.557465040654, + 27.305487376977673 + ], + [ + 49.55640709519967, + 27.30483631629523 + ], + [ + 49.55176842992857, + 27.30402256552287 + ], + [ + 49.54363041267728, + 27.30927161043704 + ], + [ + 49.53825931954626, + 27.311428192048268 + ], + [ + 49.53809654144491, + 27.311468751884078 + ], + [ + 49.53809654766596, + 27.317694385242646 + ], + [ + 49.55144289716195, + 27.32282129640705 + ], + [ + 49.55404707842245, + 27.328273886406986 + ], + [ + 49.5498152905454, + 27.334458654175112 + ], + [ + 49.545502151110014, + 27.338324302025796 + ], + [ + 49.541514511646106, + 27.341864269154154 + ], + [ + 49.531260606271935, + 27.346177424912067 + ], + [ + 49.52027427769858, + 27.344631196540043 + ], + [ + 49.509613485969695, + 27.340887830163993 + ], + [ + 49.50025474539601, + 27.338771811591734 + ], + [ + 49.48755945014219, + 27.334133274539944 + ], + [ + 49.474945509188956, + 27.322333076438454 + ], + [ + 49.46387779514912, + 27.306626658009627 + ], + [ + 49.45622805224502, + 27.2903505861492 + ], + [ + 49.45362388673952, + 27.316392264662838 + ], + [ + 49.472178585173005, + 27.3420271091286 + ], + [ + 49.501231322707405, + 27.360541133907464 + ], + [ + 49.53126061948311, + 27.365464634157764 + ], + [ + 49.54249107495917, + 27.363714857617556 + ], + [ + 49.55103599907752, + 27.360052764674787 + ], + [ + 49.56544029578269, + 27.35175198801208 + ] + ] + ], + [ + [ + [ + 37.02686608108911, + 25.419623103248828 + ], + [ + 37.037364128385946, + 25.411810606749434 + ], + [ + 37.04232832139591, + 25.40737539767452 + ], + [ + 37.04004967608035, + 25.40643953275936 + ], + [ + 37.035655144821554, + 25.408189204701795 + ], + [ + 37.02808678449511, + 25.409328512035387 + ], + [ + 37.0271916022586, + 25.405178130054715 + ], + [ + 37.03126061349393, + 25.398749096837918 + ], + [ + 37.0232853526298, + 25.399847730445035 + ], + [ + 37.00359134173724, + 25.41152577989437 + ], + [ + 36.99854576947273, + 25.422430736581184 + ], + [ + 37.00025475274703, + 25.429185274212863 + ], + [ + 36.990570510375456, + 25.43012117723402 + ], + [ + 36.978282096905446, + 25.42694733188219 + ], + [ + 36.97144616067636, + 25.43528881198289 + ], + [ + 36.96656334554615, + 25.448960661854795 + ], + [ + 36.95753014254652, + 25.448960661854795 + ], + [ + 36.94654381445417, + 25.441880582749445 + ], + [ + 36.94434655095976, + 25.448797930324403 + ], + [ + 36.951833529873, + 25.467515365503825 + ], + [ + 36.961436392937244, + 25.477769260495 + ], + [ + 36.973643424327925, + 25.4778506450949 + ], + [ + 36.98747805993925, + 25.47601958552606 + ], + [ + 36.99927819161976, + 25.469427809288504 + ], + [ + 37.00896243543009, + 25.449855854287172 + ], + [ + 37.015391471545335, + 25.45058827764529 + ], + [ + 37.017588739472174, + 25.457709069322778 + ], + [ + 37.02173912889801, + 25.452785547798577 + ], + [ + 37.02686608108911, + 25.419623103248828 + ] + ] + ], + [ + [ + [ + 36.942149286408934, + 25.41836173766708 + ], + [ + 36.95834394718088, + 25.41901277596243 + ], + [ + 36.96143639256508, + 25.414496144027044 + ], + [ + 36.94312584550641, + 25.405503630310953 + ], + [ + 36.93539472652154, + 25.399969788329056 + ], + [ + 36.924815301102335, + 25.38910554907859 + ], + [ + 36.914805534774366, + 25.370917056317214 + ], + [ + 36.89975019590251, + 25.361029362838988 + ], + [ + 36.878672722756605, + 25.373724685998717 + ], + [ + 36.85971113418048, + 25.392889718143735 + ], + [ + 36.84148196590779, + 25.405951226029583 + ], + [ + 36.80128014325912, + 25.4448916602202 + ], + [ + 36.79867597811642, + 25.447414468226118 + ], + [ + 36.795095246948975, + 25.453273817552088 + ], + [ + 36.79509524933775, + 25.456976645837475 + ], + [ + 36.797048374275455, + 25.456610434099673 + ], + [ + 36.79908287857364, + 25.458685608952546 + ], + [ + 36.79721113293291, + 25.464504286374286 + ], + [ + 36.78760826864621, + 25.474432679815575 + ], + [ + 36.7761336602604, + 25.48916250507524 + ], + [ + 36.776540559547506, + 25.496405323850478 + ], + [ + 36.787119987006356, + 25.494085993268577 + ], + [ + 36.79688561405828, + 25.48655834749707 + ], + [ + 36.815196158904556, + 25.465887749046416 + ], + [ + 36.823741082151926, + 25.459865628795935 + ], + [ + 36.84205162923163, + 25.450751046739207 + ], + [ + 36.87712649822844, + 25.436957100702415 + ], + [ + 36.89389082064184, + 25.432928773761688 + ], + [ + 36.90642337314539, + 25.431626696719178 + ], + [ + 36.91570071584936, + 25.426703178386866 + ], + [ + 36.92025800948885, + 25.419582429785297 + ], + [ + 36.899424675422075, + 25.418850006998497 + ], + [ + 36.896332225906185, + 25.405951226029583 + ], + [ + 36.904307487194764, + 25.39411040944385 + ], + [ + 36.9162703776427, + 25.39687732990184 + ], + [ + 36.92847741022466, + 25.409125069659932 + ], + [ + 36.942149286408934, + 25.41836173766708 + ] + ] + ], + [ + [ + [ + 36.84937584698849, + 25.533026433863824 + ], + [ + 36.83985436173143, + 25.535834037096226 + ], + [ + 36.826996289497394, + 25.547186585098256 + ], + [ + 36.82894941444277, + 25.561346740464977 + ], + [ + 36.84131920771506, + 25.57001374737543 + ], + [ + 36.85564212193473, + 25.568304742523644 + ], + [ + 36.866547071496214, + 25.55752188281405 + ], + [ + 36.866058789799034, + 25.54588450464197 + ], + [ + 36.855479364169156, + 25.536688557727246 + ], + [ + 36.84937584698849, + 25.533026433863824 + ] + ] + ], + [ + [ + [ + 36.79021243499903, + 25.497870172187437 + ], + [ + 36.78060957139445, + 25.504380605652717 + ], + [ + 36.77588951829193, + 25.505519915645365 + ], + [ + 36.771332227079434, + 25.507066148936207 + ], + [ + 36.76596113548502, + 25.5142276235115 + ], + [ + 36.76539147228105, + 25.524237375310822 + ], + [ + 36.75652103046265, + 25.527004304450887 + ], + [ + 36.74252363514161, + 25.529201578453662 + ], + [ + 36.73991946858039, + 25.53270093262101 + ], + [ + 36.74398847752032, + 25.53143952612992 + ], + [ + 36.74293053552873, + 25.53587474822691 + ], + [ + 36.73438561305011, + 25.546616929588875 + ], + [ + 36.71924889522963, + 25.55565014646831 + ], + [ + 36.701345247760145, + 25.5546735671755 + ], + [ + 36.693207227998286, + 25.550197669759886 + ], + [ + 36.688812694847826, + 25.546372775419876 + ], + [ + 36.68116295649478, + 25.544134827042164 + ], + [ + 36.681407097361166, + 25.553452871254077 + ], + [ + 36.69125410052328, + 25.567206104625754 + ], + [ + 36.70679772214478, + 25.571234443701098 + ], + [ + 36.725596548418594, + 25.565171598409023 + ], + [ + 36.775075718491756, + 25.53538647755595 + ], + [ + 36.78060957168858, + 25.527736729107005 + ], + [ + 36.785817905216724, + 25.516017973553545 + ], + [ + 36.80103600357277, + 25.50763580396297 + ], + [ + 36.816661003124516, + 25.502386775679057 + ], + [ + 36.83904056003759, + 25.4899356026499 + ], + [ + 36.87452233352076, + 25.463324303955478 + ], + [ + 36.88331139452381, + 25.454331779187076 + ], + [ + 36.88184655023183, + 25.450751046739207 + ], + [ + 36.87794030079012, + 25.447699295340474 + ], + [ + 36.87916100266321, + 25.443345429190565 + ], + [ + 36.873789910899646, + 25.445949621637435 + ], + [ + 36.8584090492572, + 25.45685455022028 + ], + [ + 36.84506269454442, + 25.46442290180011 + ], + [ + 36.834808791128495, + 25.466742268334656 + ], + [ + 36.830739781433856, + 25.473089927936197 + ], + [ + 36.82545006538517, + 25.484116921742284 + ], + [ + 36.81617272130582, + 25.488267311806528 + ], + [ + 36.80974368510442, + 25.485785212426123 + ], + [ + 36.80062910069383, + 25.488470754577857 + ], + [ + 36.79021243499903, + 25.497870172187437 + ] + ] + ], + [ + [ + [ + 36.90072675894059, + 25.549302475303328 + ], + [ + 36.89942467600959, + 25.577785560799885 + ], + [ + 36.898122590990674, + 25.584051813207886 + ], + [ + 36.89820397128942, + 25.595445045705336 + ], + [ + 36.904633010308544, + 25.603176189259607 + ], + [ + 36.91439863437389, + 25.606634837357273 + ], + [ + 36.92302493574345, + 25.60285065000891 + ], + [ + 36.9277449887499, + 25.593085036746306 + ], + [ + 36.928396031063464, + 25.58380769641358 + ], + [ + 36.92579186456827, + 25.576564864318037 + ], + [ + 36.92115319101985, + 25.57623932523099 + ], + [ + 36.915049676452206, + 25.58055249296224 + ], + [ + 36.91391035304003, + 25.578802814149526 + ], + [ + 36.91651451847241, + 25.571437886832175 + ], + [ + 36.91586347620013, + 25.56801991464667 + ], + [ + 36.91358483343014, + 25.569159263720547 + ], + [ + 36.92042076929495, + 25.555121164450792 + ], + [ + 36.92758222651765, + 25.52850982734252 + ], + [ + 36.92318769617482, + 25.519435942051107 + ], + [ + 36.91195722657681, + 25.534979554036987 + ], + [ + 36.90544681089388, + 25.53912994875545 + ], + [ + 36.90072675894059, + 25.549302475303328 + ] + ] + ], + [ + [ + [ + 36.6831160825685, + 25.57233308168615 + ], + [ + 36.681976758236864, + 25.56635162101826 + ], + [ + 36.67603600416238, + 25.554754951912212 + ], + [ + 36.667653842469065, + 25.549750072529566 + ], + [ + 36.660980665503764, + 25.55280183093792 + ], + [ + 36.647797069456345, + 25.56146879880831 + ], + [ + 36.567718946952226, + 25.59845613321098 + ], + [ + 36.54607181090561, + 25.603216862887834 + ], + [ + 36.539398635182174, + 25.589178791939915 + ], + [ + 36.52947024904948, + 25.593817462374016 + ], + [ + 36.51050866110067, + 25.610419024966312 + ], + [ + 36.49773196809032, + 25.623968829834897 + ], + [ + 36.491465690907376, + 25.645086979910264 + ], + [ + 36.49968508933927, + 25.66254300477807 + ], + [ + 36.52442467636975, + 25.68577710103113 + ], + [ + 36.535329621514464, + 25.69814685963546 + ], + [ + 36.54363040773671, + 25.70286696096834 + ], + [ + 36.545258010440676, + 25.696478599836567 + ], + [ + 36.5393986313322, + 25.684963251786144 + ], + [ + 36.522634311348206, + 25.662176829083023 + ], + [ + 36.52393639370236, + 25.652899477505905 + ], + [ + 36.53101646950266, + 25.644598670676718 + ], + [ + 36.5379337882572, + 25.639837937532192 + ], + [ + 36.5439559271039, + 25.639634531703656 + ], + [ + 36.54883873772844, + 25.637844139810372 + ], + [ + 36.55396569106144, + 25.631333726720882 + ], + [ + 36.562022331121014, + 25.627183324672576 + ], + [ + 36.570323113284374, + 25.624457101339978 + ], + [ + 36.59620201902554, + 25.600246486299486 + ], + [ + 36.609385612721844, + 25.591538800725772 + ], + [ + 36.62289472658599, + 25.590521547128734 + ], + [ + 36.63111412984408, + 25.59243399592532 + ], + [ + 36.63379967370341, + 25.589992564750172 + ], + [ + 36.63453209694574, + 25.582912501360553 + ], + [ + 36.63795006463612, + 25.574611704939578 + ], + [ + 36.64714603040832, + 25.5709496158077 + ], + [ + 36.65593509341472, + 25.571844810653126 + ], + [ + 36.657399934507, + 25.57257719842623 + ], + [ + 36.65414472773088, + 25.573716547602128 + ], + [ + 36.65479576974217, + 25.57807038873125 + ], + [ + 36.659434440243615, + 25.582098691103504 + ], + [ + 36.66773522080187, + 25.581000052910152 + ], + [ + 36.6831160825685, + 25.57233308168615 + ] + ] + ], + [ + [ + [ + 36.54428144324582, + 25.73134996990157 + ], + [ + 36.54273522074705, + 25.739325247405862 + ], + [ + 36.54004967738025, + 25.760484144676962 + ], + [ + 36.542491080711045, + 25.801947318062872 + ], + [ + 36.55844159950288, + 25.836371132155822 + ], + [ + 36.583669467124, + 25.857896227428256 + ], + [ + 36.59083092745842, + 25.86054111131558 + ], + [ + 36.57748457321273, + 25.848578217519186 + ], + [ + 36.56657962419958, + 25.83299389585596 + ], + [ + 36.55836022231801, + 25.81582266167835 + ], + [ + 36.55543053415073, + 25.79633208815673 + ], + [ + 36.56413821873103, + 25.77879468408444 + ], + [ + 36.5832625645899, + 25.762274464624483 + ], + [ + 36.590830928074176, + 25.759344829699497 + ], + [ + 36.597829621159995, + 25.758368209634327 + ], + [ + 36.59734134511395, + 25.7516950901773 + ], + [ + 36.588715041088896, + 25.738511472666598 + ], + [ + 36.58545983202877, + 25.725490627334242 + ], + [ + 36.58668053225735, + 25.719793980042823 + ], + [ + 36.58838952073505, + 25.714260178223352 + ], + [ + 36.59603925956782, + 25.708889071619463 + ], + [ + 36.607595250712365, + 25.711249122606723 + ], + [ + 36.611094597234484, + 25.709458728731587 + ], + [ + 36.6056421250197, + 25.70111727855586 + ], + [ + 36.595550977468335, + 25.696600658465233 + ], + [ + 36.58301842778638, + 25.69867588052474 + ], + [ + 36.562998890805034, + 25.713283558728737 + ], + [ + 36.55176842225991, + 25.719793980042823 + ], + [ + 36.54428144324582, + 25.73134996990157 + ] + ] + ] + ] + }, + "type": "Feature", + "properties": { + "source": "https://simplemaps.com", + "id": "SA", + "name": "Saudi Arabia" + }, + "id": 1 + } + ] +} \ No newline at end of file diff --git a/test-backend/saudi_meters.json b/test-backend/saudi_meters.json new file mode 100644 index 0000000..b3f3788 --- /dev/null +++ b/test-backend/saudi_meters.json @@ -0,0 +1,320005 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.66959394783356, + 28.350165260995468 + ] + }, + "properties": { + "id": "meter-1", + "maker": "Maker C", + "model": "Model 1", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.703456308721115, + 24.556177036566083 + ] + }, + "properties": { + "id": "meter-2", + "maker": "Maker G", + "model": "Model 2", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02302518761193, + 26.366254949572117 + ] + }, + "properties": { + "id": "meter-3", + "maker": "Maker F", + "model": "Model 3", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12540643655005, + 26.17838787111901 + ] + }, + "properties": { + "id": "meter-4", + "maker": "Maker D", + "model": "Model 4", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17246472386439, + 26.40283429658714 + ] + }, + "properties": { + "id": "meter-5", + "maker": "Maker H", + "model": "Model 5", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.31211742884857, + 21.580527092217498 + ] + }, + "properties": { + "id": "meter-6", + "maker": "Maker E", + "model": "Model 6", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.85474765440542, + 27.455435074556448 + ] + }, + "properties": { + "id": "meter-7", + "maker": "Maker E", + "model": "Model 7", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00169286020872, + 26.3142245890024 + ] + }, + "properties": { + "id": "meter-8", + "maker": "Maker J", + "model": "Model 8", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.64720467474839, + 24.75296668709359 + ] + }, + "properties": { + "id": "meter-9", + "maker": "Maker E", + "model": "Model 9", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.41730704518546, + 28.354971453039145 + ] + }, + "properties": { + "id": "meter-10", + "maker": "Maker G", + "model": "Model 10", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.208715401364884, + 26.266916474011463 + ] + }, + "properties": { + "id": "meter-11", + "maker": "Maker H", + "model": "Model 11", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.137088132053485, + 21.58590380407758 + ] + }, + "properties": { + "id": "meter-12", + "maker": "Maker I", + "model": "Model 12", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.52268127972225, + 28.36684792036257 + ] + }, + "properties": { + "id": "meter-13", + "maker": "Maker G", + "model": "Model 13", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.208442125702504, + 30.819593084556743 + ] + }, + "properties": { + "id": "meter-14", + "maker": "Maker G", + "model": "Model 14", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.30247013464754, + 17.559740660867046 + ] + }, + "properties": { + "id": "meter-15", + "maker": "Maker F", + "model": "Model 15", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57771494014985, + 25.33961666067227 + ] + }, + "properties": { + "id": "meter-16", + "maker": "Maker A", + "model": "Model 16", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.79252300791559, + 24.511269680712505 + ] + }, + "properties": { + "id": "meter-17", + "maker": "Maker H", + "model": "Model 17", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.72797627789651, + 28.467987510679517 + ] + }, + "properties": { + "id": "meter-18", + "maker": "Maker B", + "model": "Model 18", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00272884288226, + 26.302890716309275 + ] + }, + "properties": { + "id": "meter-19", + "maker": "Maker B", + "model": "Model 19", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.437889470581325, + 25.352540218754015 + ] + }, + "properties": { + "id": "meter-20", + "maker": "Maker A", + "model": "Model 20", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.143805076527066, + 17.762394227929477 + ] + }, + "properties": { + "id": "meter-21", + "maker": "Maker F", + "model": "Model 21", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.572741560973455, + 20.169649724220715 + ] + }, + "properties": { + "id": "meter-22", + "maker": "Maker F", + "model": "Model 22", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.58248948488902, + 28.331755466080732 + ] + }, + "properties": { + "id": "meter-23", + "maker": "Maker J", + "model": "Model 23", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.41827060712072, + 19.87252877410959 + ] + }, + "properties": { + "id": "meter-24", + "maker": "Maker H", + "model": "Model 24", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.62537404064166, + 18.14801114059782 + ] + }, + "properties": { + "id": "meter-25", + "maker": "Maker G", + "model": "Model 25", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.380915292783975, + 17.611436299010137 + ] + }, + "properties": { + "id": "meter-26", + "maker": "Maker B", + "model": "Model 26", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.951741137779145, + 17.48680020616063 + ] + }, + "properties": { + "id": "meter-27", + "maker": "Maker C", + "model": "Model 27", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.801536108963624, + 18.09370565351698 + ] + }, + "properties": { + "id": "meter-28", + "maker": "Maker I", + "model": "Model 28", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.22372948857722, + 24.125516010658007 + ] + }, + "properties": { + "id": "meter-29", + "maker": "Maker D", + "model": "Model 29", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.027765985291076, + 30.986181946731644 + ] + }, + "properties": { + "id": "meter-30", + "maker": "Maker A", + "model": "Model 30", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00026314280009, + 26.789630443316067 + ] + }, + "properties": { + "id": "meter-31", + "maker": "Maker G", + "model": "Model 31", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.72630026207949, + 28.294826885848 + ] + }, + "properties": { + "id": "meter-32", + "maker": "Maker I", + "model": "Model 32", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.28553281486828, + 21.52487605779678 + ] + }, + "properties": { + "id": "meter-33", + "maker": "Maker C", + "model": "Model 33", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.66616157330716, + 25.268860574752722 + ] + }, + "properties": { + "id": "meter-34", + "maker": "Maker A", + "model": "Model 34", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.6822452009682, + 24.71600611461091 + ] + }, + "properties": { + "id": "meter-35", + "maker": "Maker E", + "model": "Model 35", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.904212605609914, + 26.764162186285976 + ] + }, + "properties": { + "id": "meter-36", + "maker": "Maker B", + "model": "Model 36", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.632319980626036, + 24.68330489467642 + ] + }, + "properties": { + "id": "meter-37", + "maker": "Maker E", + "model": "Model 37", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.165907826575555, + 21.38295799957373 + ] + }, + "properties": { + "id": "meter-38", + "maker": "Maker F", + "model": "Model 38", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.861034297676234, + 26.172635276122794 + ] + }, + "properties": { + "id": "meter-39", + "maker": "Maker E", + "model": "Model 39", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98322729421358, + 26.70728246871522 + ] + }, + "properties": { + "id": "meter-40", + "maker": "Maker I", + "model": "Model 40", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.0501371148081, + 26.567014179050613 + ] + }, + "properties": { + "id": "meter-41", + "maker": "Maker G", + "model": "Model 41", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.801005254578776, + 21.241983363199836 + ] + }, + "properties": { + "id": "meter-42", + "maker": "Maker C", + "model": "Model 42", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.461578901085836, + 25.410229957989934 + ] + }, + "properties": { + "id": "meter-43", + "maker": "Maker E", + "model": "Model 43", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45640316114199, + 27.387583224196614 + ] + }, + "properties": { + "id": "meter-44", + "maker": "Maker J", + "model": "Model 44", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.024980718649765, + 26.390050070856415 + ] + }, + "properties": { + "id": "meter-45", + "maker": "Maker F", + "model": "Model 45", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.47247741355575, + 18.232386514108395 + ] + }, + "properties": { + "id": "meter-46", + "maker": "Maker B", + "model": "Model 46", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.16424456400479, + 17.70017375094016 + ] + }, + "properties": { + "id": "meter-47", + "maker": "Maker F", + "model": "Model 47", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.974886500443375, + 26.26578627161462 + ] + }, + "properties": { + "id": "meter-48", + "maker": "Maker D", + "model": "Model 48", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.73914184535637, + 21.273858030054505 + ] + }, + "properties": { + "id": "meter-49", + "maker": "Maker C", + "model": "Model 49", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84375113330983, + 21.40298511549918 + ] + }, + "properties": { + "id": "meter-50", + "maker": "Maker G", + "model": "Model 50", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.211018702047134, + 26.271307375011926 + ] + }, + "properties": { + "id": "meter-51", + "maker": "Maker F", + "model": "Model 51", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.913993037977484, + 26.09221142190614 + ] + }, + "properties": { + "id": "meter-52", + "maker": "Maker F", + "model": "Model 52", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.17498786021508, + 24.350806950449606 + ] + }, + "properties": { + "id": "meter-53", + "maker": "Maker E", + "model": "Model 53", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08521096922394, + 26.377049992739707 + ] + }, + "properties": { + "id": "meter-54", + "maker": "Maker C", + "model": "Model 54", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.60707346838031, + 18.470486477073813 + ] + }, + "properties": { + "id": "meter-55", + "maker": "Maker I", + "model": "Model 55", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.48348751432183, + 24.88691885495733 + ] + }, + "properties": { + "id": "meter-56", + "maker": "Maker H", + "model": "Model 56", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.99521554438453, + 29.886997185514588 + ] + }, + "properties": { + "id": "meter-57", + "maker": "Maker F", + "model": "Model 57", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48138472895656, + 20.08271938874416 + ] + }, + "properties": { + "id": "meter-58", + "maker": "Maker C", + "model": "Model 58", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06566067107009, + 24.160962469391325 + ] + }, + "properties": { + "id": "meter-59", + "maker": "Maker G", + "model": "Model 59", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.53985827060226, + 19.957380878732547 + ] + }, + "properties": { + "id": "meter-60", + "maker": "Maker H", + "model": "Model 60", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67529451086422, + 21.348272909292326 + ] + }, + "properties": { + "id": "meter-61", + "maker": "Maker G", + "model": "Model 61", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.084199501858166, + 24.114442090048325 + ] + }, + "properties": { + "id": "meter-62", + "maker": "Maker C", + "model": "Model 62", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00983476104912, + 26.50331314180572 + ] + }, + "properties": { + "id": "meter-63", + "maker": "Maker H", + "model": "Model 63", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9907990601323, + 26.509687375552446 + ] + }, + "properties": { + "id": "meter-64", + "maker": "Maker E", + "model": "Model 64", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.426451289002244, + 24.450316395871514 + ] + }, + "properties": { + "id": "meter-65", + "maker": "Maker F", + "model": "Model 65", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51295306407556, + 28.195408229071237 + ] + }, + "properties": { + "id": "meter-66", + "maker": "Maker E", + "model": "Model 66", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01966323828948, + 26.455716861245723 + ] + }, + "properties": { + "id": "meter-67", + "maker": "Maker D", + "model": "Model 67", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.760249813693, + 18.34649658147718 + ] + }, + "properties": { + "id": "meter-68", + "maker": "Maker F", + "model": "Model 68", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.85592910582073, + 30.79548298960632 + ] + }, + "properties": { + "id": "meter-69", + "maker": "Maker G", + "model": "Model 69", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.44083667375883, + 24.8985534485532 + ] + }, + "properties": { + "id": "meter-70", + "maker": "Maker F", + "model": "Model 70", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.27624490238377, + 21.411752819768875 + ] + }, + "properties": { + "id": "meter-71", + "maker": "Maker C", + "model": "Model 71", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.181472781414634, + 26.33895289388212 + ] + }, + "properties": { + "id": "meter-72", + "maker": "Maker C", + "model": "Model 72", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.43035275930966, + 20.241135615966275 + ] + }, + "properties": { + "id": "meter-73", + "maker": "Maker J", + "model": "Model 73", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.160213036347365, + 26.139912138361318 + ] + }, + "properties": { + "id": "meter-74", + "maker": "Maker H", + "model": "Model 74", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.308502525215, + 19.907186152279312 + ] + }, + "properties": { + "id": "meter-75", + "maker": "Maker F", + "model": "Model 75", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65372532630827, + 24.741880628769017 + ] + }, + "properties": { + "id": "meter-76", + "maker": "Maker C", + "model": "Model 76", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.67672273855856, + 18.227609535656597 + ] + }, + "properties": { + "id": "meter-77", + "maker": "Maker A", + "model": "Model 77", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.80519223909003, + 26.58417425375671 + ] + }, + "properties": { + "id": "meter-78", + "maker": "Maker H", + "model": "Model 78", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.5242872784988, + 25.559010115121122 + ] + }, + "properties": { + "id": "meter-79", + "maker": "Maker G", + "model": "Model 79", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89866251257286, + 21.41018213190971 + ] + }, + "properties": { + "id": "meter-80", + "maker": "Maker G", + "model": "Model 80", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97410198839291, + 26.4887909371025 + ] + }, + "properties": { + "id": "meter-81", + "maker": "Maker J", + "model": "Model 81", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10731080553586, + 26.35182081637399 + ] + }, + "properties": { + "id": "meter-82", + "maker": "Maker I", + "model": "Model 82", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12769066139847, + 17.60772437023485 + ] + }, + "properties": { + "id": "meter-83", + "maker": "Maker I", + "model": "Model 83", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.728277133443896, + 18.066248284566846 + ] + }, + "properties": { + "id": "meter-84", + "maker": "Maker H", + "model": "Model 84", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.42763143499147, + 21.667623587264856 + ] + }, + "properties": { + "id": "meter-85", + "maker": "Maker F", + "model": "Model 85", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.235073614676146, + 29.97176297934702 + ] + }, + "properties": { + "id": "meter-86", + "maker": "Maker D", + "model": "Model 86", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.83378070165929, + 24.494619747285338 + ] + }, + "properties": { + "id": "meter-87", + "maker": "Maker H", + "model": "Model 87", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87000840727299, + 26.368800932616516 + ] + }, + "properties": { + "id": "meter-88", + "maker": "Maker B", + "model": "Model 88", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.90679062715524, + 30.95288560363543 + ] + }, + "properties": { + "id": "meter-89", + "maker": "Maker I", + "model": "Model 89", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.11859154986823, + 24.1999246866932 + ] + }, + "properties": { + "id": "meter-90", + "maker": "Maker A", + "model": "Model 90", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99940019101171, + 17.457524341879562 + ] + }, + "properties": { + "id": "meter-91", + "maker": "Maker G", + "model": "Model 91", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.93714347768068, + 21.637274528553412 + ] + }, + "properties": { + "id": "meter-92", + "maker": "Maker A", + "model": "Model 92", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.79574144784563, + 24.4664394619172 + ] + }, + "properties": { + "id": "meter-93", + "maker": "Maker F", + "model": "Model 93", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46618557834583, + 20.01012406794646 + ] + }, + "properties": { + "id": "meter-94", + "maker": "Maker I", + "model": "Model 94", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.078319125842484, + 31.24606143076512 + ] + }, + "properties": { + "id": "meter-95", + "maker": "Maker J", + "model": "Model 95", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.61694027337122, + 25.205599148434406 + ] + }, + "properties": { + "id": "meter-96", + "maker": "Maker A", + "model": "Model 96", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07288164691071, + 26.208374536582006 + ] + }, + "properties": { + "id": "meter-97", + "maker": "Maker B", + "model": "Model 97", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.86762392220804, + 26.49975492219404 + ] + }, + "properties": { + "id": "meter-98", + "maker": "Maker I", + "model": "Model 98", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.8162784858851, + 27.24278845864605 + ] + }, + "properties": { + "id": "meter-99", + "maker": "Maker D", + "model": "Model 99", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18661070167192, + 26.325002056963456 + ] + }, + "properties": { + "id": "meter-100", + "maker": "Maker J", + "model": "Model 100", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.11358941691812, + 24.06834214883642 + ] + }, + "properties": { + "id": "meter-101", + "maker": "Maker I", + "model": "Model 101", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.6845264852561, + 24.580972453820838 + ] + }, + "properties": { + "id": "meter-102", + "maker": "Maker I", + "model": "Model 102", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.02025474141808, + 24.311615108977215 + ] + }, + "properties": { + "id": "meter-103", + "maker": "Maker I", + "model": "Model 103", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55074896343065, + 19.85703304963862 + ] + }, + "properties": { + "id": "meter-104", + "maker": "Maker E", + "model": "Model 104", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.086219767306645, + 26.281768704951624 + ] + }, + "properties": { + "id": "meter-105", + "maker": "Maker H", + "model": "Model 105", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.24104510461128, + 24.044742517188233 + ] + }, + "properties": { + "id": "meter-106", + "maker": "Maker C", + "model": "Model 106", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.51946658953774, + 24.504900914377874 + ] + }, + "properties": { + "id": "meter-107", + "maker": "Maker H", + "model": "Model 107", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.209200778093475, + 26.27500649690506 + ] + }, + "properties": { + "id": "meter-108", + "maker": "Maker A", + "model": "Model 108", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.179274475905174, + 26.38877044407223 + ] + }, + "properties": { + "id": "meter-109", + "maker": "Maker I", + "model": "Model 109", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.8058628991379, + 18.3212240857536 + ] + }, + "properties": { + "id": "meter-110", + "maker": "Maker I", + "model": "Model 110", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.77859978451566, + 18.420425030982116 + ] + }, + "properties": { + "id": "meter-111", + "maker": "Maker A", + "model": "Model 111", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.16251154181339, + 17.56390440636367 + ] + }, + "properties": { + "id": "meter-112", + "maker": "Maker C", + "model": "Model 112", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.85126847560411, + 28.451928804874047 + ] + }, + "properties": { + "id": "meter-113", + "maker": "Maker F", + "model": "Model 113", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.71228320651289, + 24.73219789161785 + ] + }, + "properties": { + "id": "meter-114", + "maker": "Maker F", + "model": "Model 114", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.780105579702685, + 28.30619792178258 + ] + }, + "properties": { + "id": "meter-115", + "maker": "Maker I", + "model": "Model 115", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96709707137552, + 17.44763096239509 + ] + }, + "properties": { + "id": "meter-116", + "maker": "Maker G", + "model": "Model 116", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.126211939336535, + 17.783165908512373 + ] + }, + "properties": { + "id": "meter-117", + "maker": "Maker D", + "model": "Model 117", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.56584280496409, + 18.296547057858 + ] + }, + "properties": { + "id": "meter-118", + "maker": "Maker C", + "model": "Model 118", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14421925532687, + 17.509736262811924 + ] + }, + "properties": { + "id": "meter-119", + "maker": "Maker I", + "model": "Model 119", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98664177241057, + 17.42746930863969 + ] + }, + "properties": { + "id": "meter-120", + "maker": "Maker H", + "model": "Model 120", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.22046789621938, + 29.976275004267915 + ] + }, + "properties": { + "id": "meter-121", + "maker": "Maker B", + "model": "Model 121", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.669839480047955, + 24.659133636910617 + ] + }, + "properties": { + "id": "meter-122", + "maker": "Maker J", + "model": "Model 122", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01270738268756, + 26.39804790823076 + ] + }, + "properties": { + "id": "meter-123", + "maker": "Maker H", + "model": "Model 123", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.60346652693724, + 24.713320414883515 + ] + }, + "properties": { + "id": "meter-124", + "maker": "Maker A", + "model": "Model 124", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.12283852117167, + 29.89778705120944 + ] + }, + "properties": { + "id": "meter-125", + "maker": "Maker J", + "model": "Model 125", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.63534269063093, + 24.78218938537416 + ] + }, + "properties": { + "id": "meter-126", + "maker": "Maker G", + "model": "Model 126", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.062366186259204, + 26.37298466505448 + ] + }, + "properties": { + "id": "meter-127", + "maker": "Maker D", + "model": "Model 127", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.98794135073128, + 24.116397480293344 + ] + }, + "properties": { + "id": "meter-128", + "maker": "Maker F", + "model": "Model 128", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.43625569734093, + 24.89031186121593 + ] + }, + "properties": { + "id": "meter-129", + "maker": "Maker D", + "model": "Model 129", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.997035138170695, + 26.537593435606897 + ] + }, + "properties": { + "id": "meter-130", + "maker": "Maker C", + "model": "Model 130", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.08691418403016, + 31.225396548794517 + ] + }, + "properties": { + "id": "meter-131", + "maker": "Maker J", + "model": "Model 131", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10416592395427, + 26.39359768011511 + ] + }, + "properties": { + "id": "meter-132", + "maker": "Maker F", + "model": "Model 132", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.48309353386842, + 25.352786047495258 + ] + }, + "properties": { + "id": "meter-133", + "maker": "Maker C", + "model": "Model 133", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10740117504928, + 17.498285555182427 + ] + }, + "properties": { + "id": "meter-134", + "maker": "Maker C", + "model": "Model 134", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.63193945781237, + 27.509003171839044 + ] + }, + "properties": { + "id": "meter-135", + "maker": "Maker J", + "model": "Model 135", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.88687985925714, + 26.340326174541794 + ] + }, + "properties": { + "id": "meter-136", + "maker": "Maker J", + "model": "Model 136", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.40610810325736, + 24.48260663837035 + ] + }, + "properties": { + "id": "meter-137", + "maker": "Maker A", + "model": "Model 137", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.59138074211656, + 18.410977334668264 + ] + }, + "properties": { + "id": "meter-138", + "maker": "Maker G", + "model": "Model 138", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.56514860499712, + 28.280788558278307 + ] + }, + "properties": { + "id": "meter-139", + "maker": "Maker E", + "model": "Model 139", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23313951481286, + 29.921235894080546 + ] + }, + "properties": { + "id": "meter-140", + "maker": "Maker E", + "model": "Model 140", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.647152671669936, + 24.751016068877654 + ] + }, + "properties": { + "id": "meter-141", + "maker": "Maker F", + "model": "Model 141", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60204173492228, + 24.270522699936368 + ] + }, + "properties": { + "id": "meter-142", + "maker": "Maker I", + "model": "Model 142", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.012697460328916, + 30.05236873324697 + ] + }, + "properties": { + "id": "meter-143", + "maker": "Maker C", + "model": "Model 143", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.44791206773523, + 19.834775897141792 + ] + }, + "properties": { + "id": "meter-144", + "maker": "Maker A", + "model": "Model 144", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72969720861315, + 18.140661127918996 + ] + }, + "properties": { + "id": "meter-145", + "maker": "Maker D", + "model": "Model 145", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.530868503178986, + 28.38112836956462 + ] + }, + "properties": { + "id": "meter-146", + "maker": "Maker B", + "model": "Model 146", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.01388282016848, + 24.26654483804532 + ] + }, + "properties": { + "id": "meter-147", + "maker": "Maker J", + "model": "Model 147", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.18687430679551, + 29.89044041206926 + ] + }, + "properties": { + "id": "meter-148", + "maker": "Maker B", + "model": "Model 148", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12316659683507, + 26.139249169497784 + ] + }, + "properties": { + "id": "meter-149", + "maker": "Maker I", + "model": "Model 149", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.008361745413886, + 30.837950882766446 + ] + }, + "properties": { + "id": "meter-150", + "maker": "Maker H", + "model": "Model 150", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.2425449271116, + 24.160484361016156 + ] + }, + "properties": { + "id": "meter-151", + "maker": "Maker C", + "model": "Model 151", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.247539239302974, + 24.113975723290732 + ] + }, + "properties": { + "id": "meter-152", + "maker": "Maker J", + "model": "Model 152", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.2284276223426, + 30.058339936345316 + ] + }, + "properties": { + "id": "meter-153", + "maker": "Maker H", + "model": "Model 153", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.08189375578875, + 31.070831313669636 + ] + }, + "properties": { + "id": "meter-154", + "maker": "Maker A", + "model": "Model 154", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.15418768549316, + 26.41807240084562 + ] + }, + "properties": { + "id": "meter-155", + "maker": "Maker G", + "model": "Model 155", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.44821356893834, + 28.364272059336685 + ] + }, + "properties": { + "id": "meter-156", + "maker": "Maker B", + "model": "Model 156", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.33835050469168, + 19.872132647444236 + ] + }, + "properties": { + "id": "meter-157", + "maker": "Maker C", + "model": "Model 157", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03983147694721, + 26.470411897536767 + ] + }, + "properties": { + "id": "meter-158", + "maker": "Maker G", + "model": "Model 158", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.209220885511975, + 26.309338313395642 + ] + }, + "properties": { + "id": "meter-159", + "maker": "Maker D", + "model": "Model 159", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.88779368526031, + 30.838594023607033 + ] + }, + "properties": { + "id": "meter-160", + "maker": "Maker A", + "model": "Model 160", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05939467765908, + 26.3877748498426 + ] + }, + "properties": { + "id": "meter-161", + "maker": "Maker C", + "model": "Model 161", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95022026009818, + 26.561482259692152 + ] + }, + "properties": { + "id": "meter-162", + "maker": "Maker H", + "model": "Model 162", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.750603521478425, + 19.955031170435316 + ] + }, + "properties": { + "id": "meter-163", + "maker": "Maker H", + "model": "Model 163", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.153548093722925, + 30.894706974734365 + ] + }, + "properties": { + "id": "meter-164", + "maker": "Maker J", + "model": "Model 164", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.53426435706475, + 19.83285322816495 + ] + }, + "properties": { + "id": "meter-165", + "maker": "Maker F", + "model": "Model 165", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.19052555011539, + 30.043646468210202 + ] + }, + "properties": { + "id": "meter-166", + "maker": "Maker G", + "model": "Model 166", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85838566486091, + 21.389132295140794 + ] + }, + "properties": { + "id": "meter-167", + "maker": "Maker F", + "model": "Model 167", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12926426575661, + 17.505074496135773 + ] + }, + "properties": { + "id": "meter-168", + "maker": "Maker I", + "model": "Model 168", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.38888410608672, + 19.998666794765874 + ] + }, + "properties": { + "id": "meter-169", + "maker": "Maker I", + "model": "Model 169", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.600130192217954, + 24.579347223051535 + ] + }, + "properties": { + "id": "meter-170", + "maker": "Maker J", + "model": "Model 170", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02725778277791, + 26.215353873564347 + ] + }, + "properties": { + "id": "meter-171", + "maker": "Maker C", + "model": "Model 171", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.37735822894344, + 17.42694129232575 + ] + }, + "properties": { + "id": "meter-172", + "maker": "Maker C", + "model": "Model 172", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.34775965668374, + 18.34347977146285 + ] + }, + "properties": { + "id": "meter-173", + "maker": "Maker H", + "model": "Model 173", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.561349221392376, + 25.49499024197457 + ] + }, + "properties": { + "id": "meter-174", + "maker": "Maker G", + "model": "Model 174", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.845712403143374, + 24.586135264954216 + ] + }, + "properties": { + "id": "meter-175", + "maker": "Maker I", + "model": "Model 175", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.8623857602744, + 31.030843273163445 + ] + }, + "properties": { + "id": "meter-176", + "maker": "Maker A", + "model": "Model 176", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.93720992506514, + 31.069711138324745 + ] + }, + "properties": { + "id": "meter-177", + "maker": "Maker I", + "model": "Model 177", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.375605608162154, + 21.467433994861075 + ] + }, + "properties": { + "id": "meter-178", + "maker": "Maker F", + "model": "Model 178", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.739709173397884, + 27.475473360966053 + ] + }, + "properties": { + "id": "meter-179", + "maker": "Maker J", + "model": "Model 179", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.802569191603666, + 26.432809843662717 + ] + }, + "properties": { + "id": "meter-180", + "maker": "Maker D", + "model": "Model 180", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.72030797178686, + 28.340393053130928 + ] + }, + "properties": { + "id": "meter-181", + "maker": "Maker J", + "model": "Model 181", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.67170042505389, + 28.35938481606129 + ] + }, + "properties": { + "id": "meter-182", + "maker": "Maker A", + "model": "Model 182", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.292292845920564, + 17.420417073874297 + ] + }, + "properties": { + "id": "meter-183", + "maker": "Maker B", + "model": "Model 183", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89091690383813, + 21.356631041117893 + ] + }, + "properties": { + "id": "meter-184", + "maker": "Maker A", + "model": "Model 184", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.59576097989506, + 28.39296638126196 + ] + }, + "properties": { + "id": "meter-185", + "maker": "Maker E", + "model": "Model 185", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.594450034813114, + 27.394122526769042 + ] + }, + "properties": { + "id": "meter-186", + "maker": "Maker D", + "model": "Model 186", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.62547444753335, + 18.29096641371272 + ] + }, + "properties": { + "id": "meter-187", + "maker": "Maker J", + "model": "Model 187", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.6682623324008, + 25.554443498993287 + ] + }, + "properties": { + "id": "meter-188", + "maker": "Maker I", + "model": "Model 188", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.05279032754724, + 26.566531018179653 + ] + }, + "properties": { + "id": "meter-189", + "maker": "Maker I", + "model": "Model 189", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.202066577359204, + 26.279541519219745 + ] + }, + "properties": { + "id": "meter-190", + "maker": "Maker H", + "model": "Model 190", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.991859279055824, + 21.289260320307026 + ] + }, + "properties": { + "id": "meter-191", + "maker": "Maker B", + "model": "Model 191", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.850790054999884, + 24.73590576940078 + ] + }, + "properties": { + "id": "meter-192", + "maker": "Maker D", + "model": "Model 192", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.94594175519544, + 31.091944854055004 + ] + }, + "properties": { + "id": "meter-193", + "maker": "Maker D", + "model": "Model 193", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85747508092806, + 21.514083144355222 + ] + }, + "properties": { + "id": "meter-194", + "maker": "Maker A", + "model": "Model 194", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26604954450994, + 21.49834661957814 + ] + }, + "properties": { + "id": "meter-195", + "maker": "Maker H", + "model": "Model 195", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.92575662073304, + 30.738420164044573 + ] + }, + "properties": { + "id": "meter-196", + "maker": "Maker I", + "model": "Model 196", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.60076192765784, + 28.352874322985585 + ] + }, + "properties": { + "id": "meter-197", + "maker": "Maker J", + "model": "Model 197", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.17243512545667, + 30.852461232527613 + ] + }, + "properties": { + "id": "meter-198", + "maker": "Maker I", + "model": "Model 198", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.70301624633749, + 24.51120884134552 + ] + }, + "properties": { + "id": "meter-199", + "maker": "Maker H", + "model": "Model 199", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.32235867057527, + 28.381592470618912 + ] + }, + "properties": { + "id": "meter-200", + "maker": "Maker B", + "model": "Model 200", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97430397730132, + 26.599135870868412 + ] + }, + "properties": { + "id": "meter-201", + "maker": "Maker D", + "model": "Model 201", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67765335901432, + 24.46200056566474 + ] + }, + "properties": { + "id": "meter-202", + "maker": "Maker E", + "model": "Model 202", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.64119705187005, + 24.690241616826604 + ] + }, + "properties": { + "id": "meter-203", + "maker": "Maker H", + "model": "Model 203", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.87845042158263, + 21.38957232494072 + ] + }, + "properties": { + "id": "meter-204", + "maker": "Maker H", + "model": "Model 204", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69076300637831, + 27.50959633173349 + ] + }, + "properties": { + "id": "meter-205", + "maker": "Maker I", + "model": "Model 205", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.3771020087021, + 18.109300086404115 + ] + }, + "properties": { + "id": "meter-206", + "maker": "Maker I", + "model": "Model 206", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.684836627522934, + 27.31973570249617 + ] + }, + "properties": { + "id": "meter-207", + "maker": "Maker I", + "model": "Model 207", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.17397320272028, + 30.014986737378127 + ] + }, + "properties": { + "id": "meter-208", + "maker": "Maker D", + "model": "Model 208", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.05505549384565, + 30.191661815276102 + ] + }, + "properties": { + "id": "meter-209", + "maker": "Maker G", + "model": "Model 209", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.949214066957964, + 21.367451265632095 + ] + }, + "properties": { + "id": "meter-210", + "maker": "Maker H", + "model": "Model 210", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.44287048981739, + 25.273373143096833 + ] + }, + "properties": { + "id": "meter-211", + "maker": "Maker G", + "model": "Model 211", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.32094596912528, + 29.801494835212758 + ] + }, + "properties": { + "id": "meter-212", + "maker": "Maker I", + "model": "Model 212", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.80441010970972, + 27.51781722813152 + ] + }, + "properties": { + "id": "meter-213", + "maker": "Maker D", + "model": "Model 213", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.728497417263625, + 27.56646951719575 + ] + }, + "properties": { + "id": "meter-214", + "maker": "Maker D", + "model": "Model 214", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.566881623961116, + 19.73633868724177 + ] + }, + "properties": { + "id": "meter-215", + "maker": "Maker H", + "model": "Model 215", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95719272148673, + 26.667311183451325 + ] + }, + "properties": { + "id": "meter-216", + "maker": "Maker G", + "model": "Model 216", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13585446274864, + 26.33917597709132 + ] + }, + "properties": { + "id": "meter-217", + "maker": "Maker F", + "model": "Model 217", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09131706609487, + 26.398444009321317 + ] + }, + "properties": { + "id": "meter-218", + "maker": "Maker E", + "model": "Model 218", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.58360815398139, + 28.419205778611467 + ] + }, + "properties": { + "id": "meter-219", + "maker": "Maker E", + "model": "Model 219", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.85220701545604, + 18.33785588829735 + ] + }, + "properties": { + "id": "meter-220", + "maker": "Maker F", + "model": "Model 220", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.67540177378204, + 25.372082509679885 + ] + }, + "properties": { + "id": "meter-221", + "maker": "Maker D", + "model": "Model 221", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.211597174821804, + 26.273337332852908 + ] + }, + "properties": { + "id": "meter-222", + "maker": "Maker C", + "model": "Model 222", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53681960231726, + 18.231885504768286 + ] + }, + "properties": { + "id": "meter-223", + "maker": "Maker J", + "model": "Model 223", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.74829003292896, + 21.664862295284923 + ] + }, + "properties": { + "id": "meter-224", + "maker": "Maker E", + "model": "Model 224", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06079341887589, + 26.32416166480474 + ] + }, + "properties": { + "id": "meter-225", + "maker": "Maker J", + "model": "Model 225", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.347291613414626, + 30.17982805891162 + ] + }, + "properties": { + "id": "meter-226", + "maker": "Maker G", + "model": "Model 226", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21365501082549, + 26.284329471963982 + ] + }, + "properties": { + "id": "meter-227", + "maker": "Maker F", + "model": "Model 227", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86272892323621, + 21.389024875130723 + ] + }, + "properties": { + "id": "meter-228", + "maker": "Maker E", + "model": "Model 228", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19969062721614, + 26.197336949728474 + ] + }, + "properties": { + "id": "meter-229", + "maker": "Maker H", + "model": "Model 229", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.69751486709775, + 25.30940432328482 + ] + }, + "properties": { + "id": "meter-230", + "maker": "Maker A", + "model": "Model 230", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08371428839344, + 26.386661983080543 + ] + }, + "properties": { + "id": "meter-231", + "maker": "Maker G", + "model": "Model 231", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.692092055425, + 27.51218263662311 + ] + }, + "properties": { + "id": "meter-232", + "maker": "Maker B", + "model": "Model 232", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.94208442936253, + 18.442380180091902 + ] + }, + "properties": { + "id": "meter-233", + "maker": "Maker B", + "model": "Model 233", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.38752409977725, + 17.99778166085812 + ] + }, + "properties": { + "id": "meter-234", + "maker": "Maker I", + "model": "Model 234", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.154910231482624, + 24.265416256728923 + ] + }, + "properties": { + "id": "meter-235", + "maker": "Maker F", + "model": "Model 235", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.10461278562121, + 29.906750312016328 + ] + }, + "properties": { + "id": "meter-236", + "maker": "Maker H", + "model": "Model 236", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.72386884960778, + 26.569271572937375 + ] + }, + "properties": { + "id": "meter-237", + "maker": "Maker C", + "model": "Model 237", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.58350557621203, + 28.369449351597797 + ] + }, + "properties": { + "id": "meter-238", + "maker": "Maker I", + "model": "Model 238", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47484062275556, + 20.00038856163929 + ] + }, + "properties": { + "id": "meter-239", + "maker": "Maker I", + "model": "Model 239", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.200269762589485, + 21.447990847479485 + ] + }, + "properties": { + "id": "meter-240", + "maker": "Maker I", + "model": "Model 240", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10887937106332, + 17.464420135764104 + ] + }, + "properties": { + "id": "meter-241", + "maker": "Maker C", + "model": "Model 241", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.18216372754887, + 31.131811479442305 + ] + }, + "properties": { + "id": "meter-242", + "maker": "Maker D", + "model": "Model 242", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.927827351105805, + 26.372854599852143 + ] + }, + "properties": { + "id": "meter-243", + "maker": "Maker A", + "model": "Model 243", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26939877115226, + 21.47509069205631 + ] + }, + "properties": { + "id": "meter-244", + "maker": "Maker A", + "model": "Model 244", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.08573377422321, + 21.532034106818042 + ] + }, + "properties": { + "id": "meter-245", + "maker": "Maker C", + "model": "Model 245", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.741706284097546, + 24.57078760448559 + ] + }, + "properties": { + "id": "meter-246", + "maker": "Maker H", + "model": "Model 246", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.56945483045729, + 27.467538850784692 + ] + }, + "properties": { + "id": "meter-247", + "maker": "Maker J", + "model": "Model 247", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11537910943014, + 26.276111490830868 + ] + }, + "properties": { + "id": "meter-248", + "maker": "Maker A", + "model": "Model 248", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99944421624907, + 26.29475088715389 + ] + }, + "properties": { + "id": "meter-249", + "maker": "Maker B", + "model": "Model 249", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.23727673014262, + 20.12867009273085 + ] + }, + "properties": { + "id": "meter-250", + "maker": "Maker G", + "model": "Model 250", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.751407214063846, + 25.530248832493616 + ] + }, + "properties": { + "id": "meter-251", + "maker": "Maker H", + "model": "Model 251", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.60388983116979, + 27.344361536390775 + ] + }, + "properties": { + "id": "meter-252", + "maker": "Maker E", + "model": "Model 252", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10705403397297, + 17.481929555710693 + ] + }, + "properties": { + "id": "meter-253", + "maker": "Maker B", + "model": "Model 253", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.58209064334443, + 28.546066329041643 + ] + }, + "properties": { + "id": "meter-254", + "maker": "Maker E", + "model": "Model 254", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.740836323237545, + 24.5611933061492 + ] + }, + "properties": { + "id": "meter-255", + "maker": "Maker A", + "model": "Model 255", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.91735206928322, + 17.623374258319988 + ] + }, + "properties": { + "id": "meter-256", + "maker": "Maker G", + "model": "Model 256", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23582268421846, + 21.487196803237655 + ] + }, + "properties": { + "id": "meter-257", + "maker": "Maker H", + "model": "Model 257", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.60897939754761, + 28.36651374435138 + ] + }, + "properties": { + "id": "meter-258", + "maker": "Maker H", + "model": "Model 258", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.805402878044895, + 31.032671048386835 + ] + }, + "properties": { + "id": "meter-259", + "maker": "Maker E", + "model": "Model 259", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.891887817153396, + 31.165689163080547 + ] + }, + "properties": { + "id": "meter-260", + "maker": "Maker E", + "model": "Model 260", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.64875326932716, + 18.574450235008754 + ] + }, + "properties": { + "id": "meter-261", + "maker": "Maker F", + "model": "Model 261", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14220514845072, + 17.622868817593343 + ] + }, + "properties": { + "id": "meter-262", + "maker": "Maker E", + "model": "Model 262", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.66464433485776, + 24.72076665726238 + ] + }, + "properties": { + "id": "meter-263", + "maker": "Maker B", + "model": "Model 263", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.825074787766134, + 18.1286486498151 + ] + }, + "properties": { + "id": "meter-264", + "maker": "Maker H", + "model": "Model 264", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.52334680833966, + 19.959286601356617 + ] + }, + "properties": { + "id": "meter-265", + "maker": "Maker J", + "model": "Model 265", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.56677651788848, + 28.250289501612606 + ] + }, + "properties": { + "id": "meter-266", + "maker": "Maker G", + "model": "Model 266", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.610894950493595, + 19.772502166783013 + ] + }, + "properties": { + "id": "meter-267", + "maker": "Maker I", + "model": "Model 267", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.72192889091142, + 21.13487104805786 + ] + }, + "properties": { + "id": "meter-268", + "maker": "Maker H", + "model": "Model 268", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.940557397736626, + 18.20134063863035 + ] + }, + "properties": { + "id": "meter-269", + "maker": "Maker D", + "model": "Model 269", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49598687109102, + 18.22963647291659 + ] + }, + "properties": { + "id": "meter-270", + "maker": "Maker G", + "model": "Model 270", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.556808122688146, + 27.61636477137366 + ] + }, + "properties": { + "id": "meter-271", + "maker": "Maker D", + "model": "Model 271", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.71272646388943, + 24.943685195455583 + ] + }, + "properties": { + "id": "meter-272", + "maker": "Maker H", + "model": "Model 272", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.997459877561816, + 30.96464056278122 + ] + }, + "properties": { + "id": "meter-273", + "maker": "Maker J", + "model": "Model 273", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.519785851969075, + 24.387451916168594 + ] + }, + "properties": { + "id": "meter-274", + "maker": "Maker G", + "model": "Model 274", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.994476647651794, + 29.80341210690439 + ] + }, + "properties": { + "id": "meter-275", + "maker": "Maker E", + "model": "Model 275", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.89774725168722, + 30.88145957706783 + ] + }, + "properties": { + "id": "meter-276", + "maker": "Maker A", + "model": "Model 276", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.1691245346846, + 24.146912022871682 + ] + }, + "properties": { + "id": "meter-277", + "maker": "Maker I", + "model": "Model 277", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.61944980665095, + 18.312732661440588 + ] + }, + "properties": { + "id": "meter-278", + "maker": "Maker G", + "model": "Model 278", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.369439972712414, + 19.825314901167555 + ] + }, + "properties": { + "id": "meter-279", + "maker": "Maker D", + "model": "Model 279", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.62430799479767, + 28.45833010659049 + ] + }, + "properties": { + "id": "meter-280", + "maker": "Maker A", + "model": "Model 280", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.68629045235469, + 21.495285795397173 + ] + }, + "properties": { + "id": "meter-281", + "maker": "Maker J", + "model": "Model 281", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.72183626754289, + 28.40246487183584 + ] + }, + "properties": { + "id": "meter-282", + "maker": "Maker G", + "model": "Model 282", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92999275197766, + 26.50468242508668 + ] + }, + "properties": { + "id": "meter-283", + "maker": "Maker G", + "model": "Model 283", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.57868826496704, + 27.56058194147223 + ] + }, + "properties": { + "id": "meter-284", + "maker": "Maker I", + "model": "Model 284", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.728506190047646, + 18.03895736406274 + ] + }, + "properties": { + "id": "meter-285", + "maker": "Maker F", + "model": "Model 285", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53182666313296, + 18.48010809558398 + ] + }, + "properties": { + "id": "meter-286", + "maker": "Maker F", + "model": "Model 286", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.82518242422377, + 25.193431498518116 + ] + }, + "properties": { + "id": "meter-287", + "maker": "Maker F", + "model": "Model 287", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.118571677919554, + 17.498942942173098 + ] + }, + "properties": { + "id": "meter-288", + "maker": "Maker E", + "model": "Model 288", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.0371574462204, + 31.220770675756796 + ] + }, + "properties": { + "id": "meter-289", + "maker": "Maker C", + "model": "Model 289", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.946855420485555, + 21.384736487426395 + ] + }, + "properties": { + "id": "meter-290", + "maker": "Maker I", + "model": "Model 290", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03829096470255, + 30.97096490955859 + ] + }, + "properties": { + "id": "meter-291", + "maker": "Maker J", + "model": "Model 291", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.75202689448363, + 24.605047704531206 + ] + }, + "properties": { + "id": "meter-292", + "maker": "Maker I", + "model": "Model 292", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96368628680238, + 17.456992464640717 + ] + }, + "properties": { + "id": "meter-293", + "maker": "Maker B", + "model": "Model 293", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.790222068192925, + 31.09932382389945 + ] + }, + "properties": { + "id": "meter-294", + "maker": "Maker G", + "model": "Model 294", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.037723382967464, + 24.113463241087537 + ] + }, + "properties": { + "id": "meter-295", + "maker": "Maker B", + "model": "Model 295", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.254638920030544, + 21.478270545307534 + ] + }, + "properties": { + "id": "meter-296", + "maker": "Maker A", + "model": "Model 296", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.452466784635185, + 19.722969465497634 + ] + }, + "properties": { + "id": "meter-297", + "maker": "Maker G", + "model": "Model 297", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.582995726545434, + 20.122648116601876 + ] + }, + "properties": { + "id": "meter-298", + "maker": "Maker J", + "model": "Model 298", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.419681896797876, + 27.540874421995543 + ] + }, + "properties": { + "id": "meter-299", + "maker": "Maker C", + "model": "Model 299", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.53922011860864, + 28.45490955984479 + ] + }, + "properties": { + "id": "meter-300", + "maker": "Maker E", + "model": "Model 300", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.83501772755805, + 25.40803432061279 + ] + }, + "properties": { + "id": "meter-301", + "maker": "Maker F", + "model": "Model 301", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12738946785946, + 26.380488244081853 + ] + }, + "properties": { + "id": "meter-302", + "maker": "Maker J", + "model": "Model 302", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.42976063627554, + 18.14352110970268 + ] + }, + "properties": { + "id": "meter-303", + "maker": "Maker H", + "model": "Model 303", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.20884674629992, + 21.49103166562895 + ] + }, + "properties": { + "id": "meter-304", + "maker": "Maker C", + "model": "Model 304", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.41927665855745, + 24.752030995755412 + ] + }, + "properties": { + "id": "meter-305", + "maker": "Maker B", + "model": "Model 305", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.6378615252213, + 24.364596260379784 + ] + }, + "properties": { + "id": "meter-306", + "maker": "Maker C", + "model": "Model 306", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.65683423954522, + 24.517997963691784 + ] + }, + "properties": { + "id": "meter-307", + "maker": "Maker I", + "model": "Model 307", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.6282205962314, + 25.36661366882205 + ] + }, + "properties": { + "id": "meter-308", + "maker": "Maker D", + "model": "Model 308", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.509402226685694, + 19.916297841568348 + ] + }, + "properties": { + "id": "meter-309", + "maker": "Maker H", + "model": "Model 309", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.070843920608084, + 26.3263615804462 + ] + }, + "properties": { + "id": "meter-310", + "maker": "Maker C", + "model": "Model 310", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.06118456669417, + 17.361185787056453 + ] + }, + "properties": { + "id": "meter-311", + "maker": "Maker J", + "model": "Model 311", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.15091241172404, + 31.095413979288924 + ] + }, + "properties": { + "id": "meter-312", + "maker": "Maker D", + "model": "Model 312", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99532974344396, + 26.277330871236835 + ] + }, + "properties": { + "id": "meter-313", + "maker": "Maker A", + "model": "Model 313", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.481932707291975, + 17.971447507802452 + ] + }, + "properties": { + "id": "meter-314", + "maker": "Maker H", + "model": "Model 314", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99580750183159, + 26.51088005039814 + ] + }, + "properties": { + "id": "meter-315", + "maker": "Maker H", + "model": "Model 315", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0315361977325, + 24.385817750462387 + ] + }, + "properties": { + "id": "meter-316", + "maker": "Maker B", + "model": "Model 316", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50093881015188, + 28.283974229838446 + ] + }, + "properties": { + "id": "meter-317", + "maker": "Maker E", + "model": "Model 317", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.39062636991758, + 24.409625061701945 + ] + }, + "properties": { + "id": "meter-318", + "maker": "Maker D", + "model": "Model 318", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.926296693253356, + 30.840599351272544 + ] + }, + "properties": { + "id": "meter-319", + "maker": "Maker I", + "model": "Model 319", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10079729800586, + 17.575405019767814 + ] + }, + "properties": { + "id": "meter-320", + "maker": "Maker D", + "model": "Model 320", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.5355818552206, + 19.962658656050525 + ] + }, + "properties": { + "id": "meter-321", + "maker": "Maker F", + "model": "Model 321", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.607803722459174, + 18.19626678945339 + ] + }, + "properties": { + "id": "meter-322", + "maker": "Maker J", + "model": "Model 322", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97531768711379, + 26.427916507395977 + ] + }, + "properties": { + "id": "meter-323", + "maker": "Maker I", + "model": "Model 323", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.18146081297627, + 30.110366082060956 + ] + }, + "properties": { + "id": "meter-324", + "maker": "Maker H", + "model": "Model 324", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54808839773643, + 25.122515873650773 + ] + }, + "properties": { + "id": "meter-325", + "maker": "Maker A", + "model": "Model 325", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.859019454530845, + 21.393317378965722 + ] + }, + "properties": { + "id": "meter-326", + "maker": "Maker E", + "model": "Model 326", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06125499751296, + 26.23615933029341 + ] + }, + "properties": { + "id": "meter-327", + "maker": "Maker F", + "model": "Model 327", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.91648983765385, + 21.573651474788786 + ] + }, + "properties": { + "id": "meter-328", + "maker": "Maker E", + "model": "Model 328", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77862044310833, + 24.382059100672123 + ] + }, + "properties": { + "id": "meter-329", + "maker": "Maker J", + "model": "Model 329", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.448931087387734, + 18.226209161342126 + ] + }, + "properties": { + "id": "meter-330", + "maker": "Maker E", + "model": "Model 330", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.471313885087625, + 28.525994189789863 + ] + }, + "properties": { + "id": "meter-331", + "maker": "Maker D", + "model": "Model 331", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.76842658435452, + 24.501637288215974 + ] + }, + "properties": { + "id": "meter-332", + "maker": "Maker J", + "model": "Model 332", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.57980565808587, + 17.93088379157898 + ] + }, + "properties": { + "id": "meter-333", + "maker": "Maker D", + "model": "Model 333", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.47559989712996, + 25.119376336297528 + ] + }, + "properties": { + "id": "meter-334", + "maker": "Maker D", + "model": "Model 334", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.31328192101284, + 18.340676060508905 + ] + }, + "properties": { + "id": "meter-335", + "maker": "Maker F", + "model": "Model 335", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26290407871487, + 21.526425613993187 + ] + }, + "properties": { + "id": "meter-336", + "maker": "Maker D", + "model": "Model 336", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.580803307013156, + 25.613729193024895 + ] + }, + "properties": { + "id": "meter-337", + "maker": "Maker A", + "model": "Model 337", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.97594732265612, + 30.894790656267173 + ] + }, + "properties": { + "id": "meter-338", + "maker": "Maker D", + "model": "Model 338", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.609541330867245, + 28.439683819522777 + ] + }, + "properties": { + "id": "meter-339", + "maker": "Maker A", + "model": "Model 339", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.80118747763995, + 24.745953439435244 + ] + }, + "properties": { + "id": "meter-340", + "maker": "Maker J", + "model": "Model 340", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.32355559332436, + 21.605021271505468 + ] + }, + "properties": { + "id": "meter-341", + "maker": "Maker E", + "model": "Model 341", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.34729859692787, + 25.304898755461917 + ] + }, + "properties": { + "id": "meter-342", + "maker": "Maker C", + "model": "Model 342", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.88779587502187, + 26.54633623659954 + ] + }, + "properties": { + "id": "meter-343", + "maker": "Maker J", + "model": "Model 343", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72657790084336, + 18.15650444010851 + ] + }, + "properties": { + "id": "meter-344", + "maker": "Maker I", + "model": "Model 344", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.127795392210835, + 26.2222607784084 + ] + }, + "properties": { + "id": "meter-345", + "maker": "Maker G", + "model": "Model 345", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09005067553788, + 17.55329472939762 + ] + }, + "properties": { + "id": "meter-346", + "maker": "Maker C", + "model": "Model 346", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.77854764872151, + 26.396528371866168 + ] + }, + "properties": { + "id": "meter-347", + "maker": "Maker B", + "model": "Model 347", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.955744720378554, + 21.607686533491226 + ] + }, + "properties": { + "id": "meter-348", + "maker": "Maker B", + "model": "Model 348", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.270747314590245, + 17.45223414670802 + ] + }, + "properties": { + "id": "meter-349", + "maker": "Maker A", + "model": "Model 349", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94498074607661, + 26.583370956226872 + ] + }, + "properties": { + "id": "meter-350", + "maker": "Maker F", + "model": "Model 350", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.824401952503145, + 25.464384244598108 + ] + }, + "properties": { + "id": "meter-351", + "maker": "Maker I", + "model": "Model 351", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.93579539254776, + 17.354039134688325 + ] + }, + "properties": { + "id": "meter-352", + "maker": "Maker I", + "model": "Model 352", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.713656658442936, + 28.391830009256346 + ] + }, + "properties": { + "id": "meter-353", + "maker": "Maker J", + "model": "Model 353", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94773931197971, + 26.46819493226973 + ] + }, + "properties": { + "id": "meter-354", + "maker": "Maker J", + "model": "Model 354", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0600007930298, + 24.08941311163982 + ] + }, + "properties": { + "id": "meter-355", + "maker": "Maker C", + "model": "Model 355", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.17375816556127, + 29.998267757863598 + ] + }, + "properties": { + "id": "meter-356", + "maker": "Maker J", + "model": "Model 356", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.7163387546915, + 27.456163327905312 + ] + }, + "properties": { + "id": "meter-357", + "maker": "Maker B", + "model": "Model 357", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.20067799309812, + 30.904706988525486 + ] + }, + "properties": { + "id": "meter-358", + "maker": "Maker H", + "model": "Model 358", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03392267286651, + 30.977330864247314 + ] + }, + "properties": { + "id": "meter-359", + "maker": "Maker G", + "model": "Model 359", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0037452779852, + 26.07661295827043 + ] + }, + "properties": { + "id": "meter-360", + "maker": "Maker J", + "model": "Model 360", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67144889773944, + 24.71607524936611 + ] + }, + "properties": { + "id": "meter-361", + "maker": "Maker C", + "model": "Model 361", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.34877676006612, + 24.422869861071145 + ] + }, + "properties": { + "id": "meter-362", + "maker": "Maker C", + "model": "Model 362", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.66221676937031, + 24.720174651760665 + ] + }, + "properties": { + "id": "meter-363", + "maker": "Maker A", + "model": "Model 363", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.57290781365439, + 28.418867542286588 + ] + }, + "properties": { + "id": "meter-364", + "maker": "Maker H", + "model": "Model 364", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.31244985170536, + 20.003232808338872 + ] + }, + "properties": { + "id": "meter-365", + "maker": "Maker A", + "model": "Model 365", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.63680889754235, + 24.844949234491775 + ] + }, + "properties": { + "id": "meter-366", + "maker": "Maker G", + "model": "Model 366", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07423152388016, + 26.43453772992087 + ] + }, + "properties": { + "id": "meter-367", + "maker": "Maker B", + "model": "Model 367", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.21737595445601, + 17.41979580250901 + ] + }, + "properties": { + "id": "meter-368", + "maker": "Maker D", + "model": "Model 368", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.02051680096827, + 30.997782620929158 + ] + }, + "properties": { + "id": "meter-369", + "maker": "Maker E", + "model": "Model 369", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23685052587375, + 21.48562003323747 + ] + }, + "properties": { + "id": "meter-370", + "maker": "Maker E", + "model": "Model 370", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54857549564149, + 25.62391810353663 + ] + }, + "properties": { + "id": "meter-371", + "maker": "Maker I", + "model": "Model 371", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.41166276478883, + 19.99640281857843 + ] + }, + "properties": { + "id": "meter-372", + "maker": "Maker I", + "model": "Model 372", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.84161036230863, + 24.654244932763053 + ] + }, + "properties": { + "id": "meter-373", + "maker": "Maker G", + "model": "Model 373", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.70093402497481, + 24.527554109842843 + ] + }, + "properties": { + "id": "meter-374", + "maker": "Maker F", + "model": "Model 374", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.417880848338946, + 21.43579534911047 + ] + }, + "properties": { + "id": "meter-375", + "maker": "Maker F", + "model": "Model 375", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01369047987118, + 26.488747015250063 + ] + }, + "properties": { + "id": "meter-376", + "maker": "Maker B", + "model": "Model 376", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66999756796472, + 18.13792904373543 + ] + }, + "properties": { + "id": "meter-377", + "maker": "Maker B", + "model": "Model 377", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98028640259175, + 26.30869035541095 + ] + }, + "properties": { + "id": "meter-378", + "maker": "Maker C", + "model": "Model 378", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.106167417185105, + 17.46701326090875 + ] + }, + "properties": { + "id": "meter-379", + "maker": "Maker E", + "model": "Model 379", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21467989533481, + 21.447412004559276 + ] + }, + "properties": { + "id": "meter-380", + "maker": "Maker J", + "model": "Model 380", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.77312128480671, + 27.44024367421494 + ] + }, + "properties": { + "id": "meter-381", + "maker": "Maker I", + "model": "Model 381", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.53529884442366, + 28.505396458434678 + ] + }, + "properties": { + "id": "meter-382", + "maker": "Maker D", + "model": "Model 382", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.11775724841441, + 24.376721977096967 + ] + }, + "properties": { + "id": "meter-383", + "maker": "Maker J", + "model": "Model 383", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.723308764119075, + 26.42932156326339 + ] + }, + "properties": { + "id": "meter-384", + "maker": "Maker G", + "model": "Model 384", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.12550706390345, + 24.136698404970822 + ] + }, + "properties": { + "id": "meter-385", + "maker": "Maker F", + "model": "Model 385", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.43364495742102, + 30.045093476587738 + ] + }, + "properties": { + "id": "meter-386", + "maker": "Maker D", + "model": "Model 386", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.59305717063617, + 24.535452221464247 + ] + }, + "properties": { + "id": "meter-387", + "maker": "Maker D", + "model": "Model 387", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.225956604235606, + 17.630976795803583 + ] + }, + "properties": { + "id": "meter-388", + "maker": "Maker G", + "model": "Model 388", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46995680887492, + 20.040100831250953 + ] + }, + "properties": { + "id": "meter-389", + "maker": "Maker J", + "model": "Model 389", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65204494786188, + 27.563650824175248 + ] + }, + "properties": { + "id": "meter-390", + "maker": "Maker G", + "model": "Model 390", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.778225420024434, + 26.460640684486403 + ] + }, + "properties": { + "id": "meter-391", + "maker": "Maker E", + "model": "Model 391", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.923604182289345, + 26.320403300645832 + ] + }, + "properties": { + "id": "meter-392", + "maker": "Maker G", + "model": "Model 392", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96522781529143, + 17.360117274591044 + ] + }, + "properties": { + "id": "meter-393", + "maker": "Maker B", + "model": "Model 393", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.41293646290044, + 18.2547392675826 + ] + }, + "properties": { + "id": "meter-394", + "maker": "Maker B", + "model": "Model 394", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52833374919802, + 18.096439379574345 + ] + }, + "properties": { + "id": "meter-395", + "maker": "Maker I", + "model": "Model 395", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.20369626662889, + 21.4414694154951 + ] + }, + "properties": { + "id": "meter-396", + "maker": "Maker F", + "model": "Model 396", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.91788294648592, + 26.390495430968045 + ] + }, + "properties": { + "id": "meter-397", + "maker": "Maker H", + "model": "Model 397", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63529281774591, + 21.500146288725908 + ] + }, + "properties": { + "id": "meter-398", + "maker": "Maker H", + "model": "Model 398", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.14424001302598, + 24.02735950826205 + ] + }, + "properties": { + "id": "meter-399", + "maker": "Maker G", + "model": "Model 399", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.82131161268314, + 18.382110023055237 + ] + }, + "properties": { + "id": "meter-400", + "maker": "Maker F", + "model": "Model 400", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.55045956369279, + 24.36185655930807 + ] + }, + "properties": { + "id": "meter-401", + "maker": "Maker B", + "model": "Model 401", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94828259401106, + 26.150288280795646 + ] + }, + "properties": { + "id": "meter-402", + "maker": "Maker G", + "model": "Model 402", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.90212120494175, + 26.550996108163233 + ] + }, + "properties": { + "id": "meter-403", + "maker": "Maker D", + "model": "Model 403", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.087923741776684, + 17.51517850544551 + ] + }, + "properties": { + "id": "meter-404", + "maker": "Maker H", + "model": "Model 404", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.076219032545104, + 26.34024237152797 + ] + }, + "properties": { + "id": "meter-405", + "maker": "Maker B", + "model": "Model 405", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61486620396655, + 24.51319345015007 + ] + }, + "properties": { + "id": "meter-406", + "maker": "Maker I", + "model": "Model 406", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.950454464424276, + 21.47492268157382 + ] + }, + "properties": { + "id": "meter-407", + "maker": "Maker J", + "model": "Model 407", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.992894220545935, + 26.79363752934961 + ] + }, + "properties": { + "id": "meter-408", + "maker": "Maker B", + "model": "Model 408", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.52553946706155, + 25.175727539536613 + ] + }, + "properties": { + "id": "meter-409", + "maker": "Maker E", + "model": "Model 409", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01216854995973, + 26.524612069567535 + ] + }, + "properties": { + "id": "meter-410", + "maker": "Maker F", + "model": "Model 410", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67355960946, + 27.310939595365145 + ] + }, + "properties": { + "id": "meter-411", + "maker": "Maker G", + "model": "Model 411", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.02511785396771, + 30.986007459240106 + ] + }, + "properties": { + "id": "meter-412", + "maker": "Maker G", + "model": "Model 412", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.48232841323519, + 24.593461892199937 + ] + }, + "properties": { + "id": "meter-413", + "maker": "Maker D", + "model": "Model 413", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51372521860007, + 28.360615244844915 + ] + }, + "properties": { + "id": "meter-414", + "maker": "Maker C", + "model": "Model 414", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70253559042546, + 27.495522676069033 + ] + }, + "properties": { + "id": "meter-415", + "maker": "Maker C", + "model": "Model 415", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.355343373082526, + 20.014903156998052 + ] + }, + "properties": { + "id": "meter-416", + "maker": "Maker B", + "model": "Model 416", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12723368481107, + 26.242636781438886 + ] + }, + "properties": { + "id": "meter-417", + "maker": "Maker C", + "model": "Model 417", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19344794643561, + 26.307683831633078 + ] + }, + "properties": { + "id": "meter-418", + "maker": "Maker C", + "model": "Model 418", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.74031062759002, + 28.440602057603197 + ] + }, + "properties": { + "id": "meter-419", + "maker": "Maker C", + "model": "Model 419", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.610335944676436, + 28.389507945439817 + ] + }, + "properties": { + "id": "meter-420", + "maker": "Maker A", + "model": "Model 420", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.66841784504733, + 27.50101524701241 + ] + }, + "properties": { + "id": "meter-421", + "maker": "Maker A", + "model": "Model 421", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.791345080862314, + 26.299148760089583 + ] + }, + "properties": { + "id": "meter-422", + "maker": "Maker F", + "model": "Model 422", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.62313064991533, + 28.429753473860302 + ] + }, + "properties": { + "id": "meter-423", + "maker": "Maker A", + "model": "Model 423", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.54682045656274, + 19.94269404954115 + ] + }, + "properties": { + "id": "meter-424", + "maker": "Maker E", + "model": "Model 424", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.74993935631168, + 28.479707542682377 + ] + }, + "properties": { + "id": "meter-425", + "maker": "Maker C", + "model": "Model 425", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11927900848919, + 17.40729964569105 + ] + }, + "properties": { + "id": "meter-426", + "maker": "Maker A", + "model": "Model 426", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.89515398479274, + 26.513986463399238 + ] + }, + "properties": { + "id": "meter-427", + "maker": "Maker C", + "model": "Model 427", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.168750050131834, + 26.3126965889955 + ] + }, + "properties": { + "id": "meter-428", + "maker": "Maker J", + "model": "Model 428", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.74378572586821, + 24.56943885827218 + ] + }, + "properties": { + "id": "meter-429", + "maker": "Maker E", + "model": "Model 429", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.474954351958175, + 25.521607604552962 + ] + }, + "properties": { + "id": "meter-430", + "maker": "Maker C", + "model": "Model 430", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04655158563923, + 24.116855255139452 + ] + }, + "properties": { + "id": "meter-431", + "maker": "Maker B", + "model": "Model 431", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.041261573858115, + 17.702573347041096 + ] + }, + "properties": { + "id": "meter-432", + "maker": "Maker G", + "model": "Model 432", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.923499491447124, + 26.321914927778142 + ] + }, + "properties": { + "id": "meter-433", + "maker": "Maker I", + "model": "Model 433", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.690289917308185, + 18.12950881987141 + ] + }, + "properties": { + "id": "meter-434", + "maker": "Maker H", + "model": "Model 434", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.71879547509146, + 24.738312000576013 + ] + }, + "properties": { + "id": "meter-435", + "maker": "Maker J", + "model": "Model 435", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.393791849730725, + 24.515030379983294 + ] + }, + "properties": { + "id": "meter-436", + "maker": "Maker A", + "model": "Model 436", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.631530909155735, + 18.234994856020354 + ] + }, + "properties": { + "id": "meter-437", + "maker": "Maker A", + "model": "Model 437", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.81267789367639, + 26.24100712767461 + ] + }, + "properties": { + "id": "meter-438", + "maker": "Maker D", + "model": "Model 438", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.296589266531015, + 21.491329464329333 + ] + }, + "properties": { + "id": "meter-439", + "maker": "Maker J", + "model": "Model 439", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23899822994599, + 21.478264377318684 + ] + }, + "properties": { + "id": "meter-440", + "maker": "Maker D", + "model": "Model 440", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52187228133298, + 18.18050808972754 + ] + }, + "properties": { + "id": "meter-441", + "maker": "Maker C", + "model": "Model 441", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45769694386527, + 18.285901200711695 + ] + }, + "properties": { + "id": "meter-442", + "maker": "Maker J", + "model": "Model 442", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.3316147983562, + 29.797118134785823 + ] + }, + "properties": { + "id": "meter-443", + "maker": "Maker I", + "model": "Model 443", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.708308331914694, + 18.297586255633252 + ] + }, + "properties": { + "id": "meter-444", + "maker": "Maker J", + "model": "Model 444", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08401614290875, + 26.198259624808646 + ] + }, + "properties": { + "id": "meter-445", + "maker": "Maker J", + "model": "Model 445", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.994793286537224, + 31.041548921941477 + ] + }, + "properties": { + "id": "meter-446", + "maker": "Maker B", + "model": "Model 446", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.39390745760924, + 20.080918408244578 + ] + }, + "properties": { + "id": "meter-447", + "maker": "Maker B", + "model": "Model 447", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.756134550528095, + 18.12501324769564 + ] + }, + "properties": { + "id": "meter-448", + "maker": "Maker A", + "model": "Model 448", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.41846689632552, + 24.745884419394294 + ] + }, + "properties": { + "id": "meter-449", + "maker": "Maker A", + "model": "Model 449", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.15424046278625, + 21.41973190972762 + ] + }, + "properties": { + "id": "meter-450", + "maker": "Maker H", + "model": "Model 450", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9485785573192, + 26.42544124616089 + ] + }, + "properties": { + "id": "meter-451", + "maker": "Maker J", + "model": "Model 451", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98042390601435, + 26.140406315565723 + ] + }, + "properties": { + "id": "meter-452", + "maker": "Maker E", + "model": "Model 452", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.51500137814447, + 27.343961771823018 + ] + }, + "properties": { + "id": "meter-453", + "maker": "Maker J", + "model": "Model 453", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18628544320836, + 26.404012180133932 + ] + }, + "properties": { + "id": "meter-454", + "maker": "Maker I", + "model": "Model 454", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.936326407392144, + 26.215444071058794 + ] + }, + "properties": { + "id": "meter-455", + "maker": "Maker G", + "model": "Model 455", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17185276908151, + 26.382082326696743 + ] + }, + "properties": { + "id": "meter-456", + "maker": "Maker B", + "model": "Model 456", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73819973983405, + 18.388110832411094 + ] + }, + "properties": { + "id": "meter-457", + "maker": "Maker J", + "model": "Model 457", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.00689376477629, + 30.153860761515038 + ] + }, + "properties": { + "id": "meter-458", + "maker": "Maker A", + "model": "Model 458", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.7305272541771, + 18.21165752273496 + ] + }, + "properties": { + "id": "meter-459", + "maker": "Maker C", + "model": "Model 459", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97995618655723, + 26.339285036802366 + ] + }, + "properties": { + "id": "meter-460", + "maker": "Maker G", + "model": "Model 460", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96266650086744, + 26.318293773467122 + ] + }, + "properties": { + "id": "meter-461", + "maker": "Maker A", + "model": "Model 461", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18582869913587, + 26.246751067154936 + ] + }, + "properties": { + "id": "meter-462", + "maker": "Maker A", + "model": "Model 462", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.97212897963659, + 31.08731916896649 + ] + }, + "properties": { + "id": "meter-463", + "maker": "Maker A", + "model": "Model 463", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.112169823017936, + 26.363077168727237 + ] + }, + "properties": { + "id": "meter-464", + "maker": "Maker G", + "model": "Model 464", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.93878584682732, + 26.375211992487074 + ] + }, + "properties": { + "id": "meter-465", + "maker": "Maker A", + "model": "Model 465", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.12745921494113, + 24.1203696194929 + ] + }, + "properties": { + "id": "meter-466", + "maker": "Maker I", + "model": "Model 466", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.601792220064105, + 18.074877493420612 + ] + }, + "properties": { + "id": "meter-467", + "maker": "Maker H", + "model": "Model 467", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69046475905715, + 27.511604371361905 + ] + }, + "properties": { + "id": "meter-468", + "maker": "Maker G", + "model": "Model 468", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.75363610171577, + 18.140657622039235 + ] + }, + "properties": { + "id": "meter-469", + "maker": "Maker C", + "model": "Model 469", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.627245964868195, + 19.942161168356275 + ] + }, + "properties": { + "id": "meter-470", + "maker": "Maker A", + "model": "Model 470", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.717392066632904, + 24.84490828279671 + ] + }, + "properties": { + "id": "meter-471", + "maker": "Maker B", + "model": "Model 471", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.57178790666338, + 18.427446807897592 + ] + }, + "properties": { + "id": "meter-472", + "maker": "Maker I", + "model": "Model 472", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.037871362282715, + 26.450230003532862 + ] + }, + "properties": { + "id": "meter-473", + "maker": "Maker B", + "model": "Model 473", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.61932189747358, + 20.048913437152024 + ] + }, + "properties": { + "id": "meter-474", + "maker": "Maker E", + "model": "Model 474", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05413883306897, + 26.20842641487723 + ] + }, + "properties": { + "id": "meter-475", + "maker": "Maker H", + "model": "Model 475", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01993699377775, + 26.499441681178663 + ] + }, + "properties": { + "id": "meter-476", + "maker": "Maker I", + "model": "Model 476", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.36143714343824, + 28.525471456275433 + ] + }, + "properties": { + "id": "meter-477", + "maker": "Maker A", + "model": "Model 477", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.275907793129015, + 29.95129793742325 + ] + }, + "properties": { + "id": "meter-478", + "maker": "Maker A", + "model": "Model 478", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.52226860989024, + 20.102329237464705 + ] + }, + "properties": { + "id": "meter-479", + "maker": "Maker G", + "model": "Model 479", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.197288855203915, + 17.54001361671765 + ] + }, + "properties": { + "id": "meter-480", + "maker": "Maker B", + "model": "Model 480", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.690600660877784, + 20.13897821463574 + ] + }, + "properties": { + "id": "meter-481", + "maker": "Maker F", + "model": "Model 481", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.260100118192646, + 24.086215278109503 + ] + }, + "properties": { + "id": "meter-482", + "maker": "Maker E", + "model": "Model 482", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.637652567187075, + 18.324170993058974 + ] + }, + "properties": { + "id": "meter-483", + "maker": "Maker E", + "model": "Model 483", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.90436301662751, + 24.558802150380135 + ] + }, + "properties": { + "id": "meter-484", + "maker": "Maker C", + "model": "Model 484", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48234917559248, + 19.938469295169156 + ] + }, + "properties": { + "id": "meter-485", + "maker": "Maker B", + "model": "Model 485", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.16612423896004, + 26.26675601618194 + ] + }, + "properties": { + "id": "meter-486", + "maker": "Maker H", + "model": "Model 486", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.72920224633659, + 26.46155931391425 + ] + }, + "properties": { + "id": "meter-487", + "maker": "Maker D", + "model": "Model 487", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1470913708489, + 17.538171662412427 + ] + }, + "properties": { + "id": "meter-488", + "maker": "Maker B", + "model": "Model 488", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.625452703631595, + 21.546899494754907 + ] + }, + "properties": { + "id": "meter-489", + "maker": "Maker A", + "model": "Model 489", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.31064259668005, + 21.345412181927195 + ] + }, + "properties": { + "id": "meter-490", + "maker": "Maker C", + "model": "Model 490", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.58166918472106, + 24.545892388595597 + ] + }, + "properties": { + "id": "meter-491", + "maker": "Maker G", + "model": "Model 491", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.20171276592252, + 17.44263719218858 + ] + }, + "properties": { + "id": "meter-492", + "maker": "Maker A", + "model": "Model 492", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.44933494909652, + 25.57579378851159 + ] + }, + "properties": { + "id": "meter-493", + "maker": "Maker B", + "model": "Model 493", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.161833406955324, + 17.50331549439782 + ] + }, + "properties": { + "id": "meter-494", + "maker": "Maker J", + "model": "Model 494", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.9917811996408, + 30.97226163899188 + ] + }, + "properties": { + "id": "meter-495", + "maker": "Maker C", + "model": "Model 495", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.545619460208215, + 24.540115523642722 + ] + }, + "properties": { + "id": "meter-496", + "maker": "Maker C", + "model": "Model 496", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.40972334630566, + 29.77187053489601 + ] + }, + "properties": { + "id": "meter-497", + "maker": "Maker J", + "model": "Model 497", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.57052631530603, + 24.593710051623756 + ] + }, + "properties": { + "id": "meter-498", + "maker": "Maker G", + "model": "Model 498", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.22447773925987, + 24.132584732482073 + ] + }, + "properties": { + "id": "meter-499", + "maker": "Maker H", + "model": "Model 499", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.278533856300314, + 19.910199803056187 + ] + }, + "properties": { + "id": "meter-500", + "maker": "Maker E", + "model": "Model 500", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.497449539374685, + 27.54499128120696 + ] + }, + "properties": { + "id": "meter-501", + "maker": "Maker J", + "model": "Model 501", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.205927161035746, + 29.969906004838688 + ] + }, + "properties": { + "id": "meter-502", + "maker": "Maker E", + "model": "Model 502", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.615708514789375, + 27.520618710946987 + ] + }, + "properties": { + "id": "meter-503", + "maker": "Maker H", + "model": "Model 503", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13956965010137, + 26.323404230326776 + ] + }, + "properties": { + "id": "meter-504", + "maker": "Maker E", + "model": "Model 504", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05592206378517, + 24.099705319676538 + ] + }, + "properties": { + "id": "meter-505", + "maker": "Maker A", + "model": "Model 505", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.85352676632598, + 18.09596388310969 + ] + }, + "properties": { + "id": "meter-506", + "maker": "Maker D", + "model": "Model 506", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15662518407765, + 26.42694984943767 + ] + }, + "properties": { + "id": "meter-507", + "maker": "Maker G", + "model": "Model 507", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68927013289189, + 18.234700331189316 + ] + }, + "properties": { + "id": "meter-508", + "maker": "Maker I", + "model": "Model 508", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.472326570609184, + 18.19907850910841 + ] + }, + "properties": { + "id": "meter-509", + "maker": "Maker D", + "model": "Model 509", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.68382566706179, + 25.431743728898 + ] + }, + "properties": { + "id": "meter-510", + "maker": "Maker H", + "model": "Model 510", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.607620989603596, + 24.524586448182646 + ] + }, + "properties": { + "id": "meter-511", + "maker": "Maker J", + "model": "Model 511", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.225246767502966, + 21.449078033696626 + ] + }, + "properties": { + "id": "meter-512", + "maker": "Maker D", + "model": "Model 512", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.675462083297255, + 18.190389917148934 + ] + }, + "properties": { + "id": "meter-513", + "maker": "Maker D", + "model": "Model 513", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.13252583962584, + 24.13027980048704 + ] + }, + "properties": { + "id": "meter-514", + "maker": "Maker F", + "model": "Model 514", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.44644167091129, + 28.141364400928 + ] + }, + "properties": { + "id": "meter-515", + "maker": "Maker G", + "model": "Model 515", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17373002622322, + 17.756867686108055 + ] + }, + "properties": { + "id": "meter-516", + "maker": "Maker A", + "model": "Model 516", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.92276729453249, + 24.26221816348339 + ] + }, + "properties": { + "id": "meter-517", + "maker": "Maker G", + "model": "Model 517", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09517419709709, + 17.53091961639393 + ] + }, + "properties": { + "id": "meter-518", + "maker": "Maker E", + "model": "Model 518", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02328129656262, + 26.75991823035269 + ] + }, + "properties": { + "id": "meter-519", + "maker": "Maker J", + "model": "Model 519", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.66792125558698, + 20.05720093610449 + ] + }, + "properties": { + "id": "meter-520", + "maker": "Maker D", + "model": "Model 520", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.182563363863906, + 17.53483174176461 + ] + }, + "properties": { + "id": "meter-521", + "maker": "Maker J", + "model": "Model 521", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.789387288916785, + 18.130127563572273 + ] + }, + "properties": { + "id": "meter-522", + "maker": "Maker I", + "model": "Model 522", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42124579260497, + 20.10890488028262 + ] + }, + "properties": { + "id": "meter-523", + "maker": "Maker J", + "model": "Model 523", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.934452738542014, + 21.45780642969009 + ] + }, + "properties": { + "id": "meter-524", + "maker": "Maker G", + "model": "Model 524", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.473668505958656, + 20.127990486208756 + ] + }, + "properties": { + "id": "meter-525", + "maker": "Maker H", + "model": "Model 525", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.31815779586628, + 20.059066337810478 + ] + }, + "properties": { + "id": "meter-526", + "maker": "Maker D", + "model": "Model 526", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.26323397234478, + 19.984907660777203 + ] + }, + "properties": { + "id": "meter-527", + "maker": "Maker G", + "model": "Model 527", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.043403623623945, + 24.10690737965571 + ] + }, + "properties": { + "id": "meter-528", + "maker": "Maker G", + "model": "Model 528", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.716213210432024, + 21.462838950254916 + ] + }, + "properties": { + "id": "meter-529", + "maker": "Maker H", + "model": "Model 529", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96472507297784, + 26.54279170275577 + ] + }, + "properties": { + "id": "meter-530", + "maker": "Maker E", + "model": "Model 530", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.74287262160101, + 18.310052215408017 + ] + }, + "properties": { + "id": "meter-531", + "maker": "Maker A", + "model": "Model 531", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.38994583287417, + 19.818678750688196 + ] + }, + "properties": { + "id": "meter-532", + "maker": "Maker B", + "model": "Model 532", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.809572019177814, + 24.32304603074102 + ] + }, + "properties": { + "id": "meter-533", + "maker": "Maker E", + "model": "Model 533", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.088979321799535, + 17.548045865546822 + ] + }, + "properties": { + "id": "meter-534", + "maker": "Maker B", + "model": "Model 534", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.060614468027396, + 24.145585542849545 + ] + }, + "properties": { + "id": "meter-535", + "maker": "Maker D", + "model": "Model 535", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07392848264492, + 24.10338566792569 + ] + }, + "properties": { + "id": "meter-536", + "maker": "Maker E", + "model": "Model 536", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20340968526796, + 26.31727211181812 + ] + }, + "properties": { + "id": "meter-537", + "maker": "Maker F", + "model": "Model 537", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03778539116312, + 17.47078171991201 + ] + }, + "properties": { + "id": "meter-538", + "maker": "Maker C", + "model": "Model 538", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.66477207063902, + 27.44338933474892 + ] + }, + "properties": { + "id": "meter-539", + "maker": "Maker F", + "model": "Model 539", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88908406336502, + 21.403094765737983 + ] + }, + "properties": { + "id": "meter-540", + "maker": "Maker A", + "model": "Model 540", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96791663958833, + 26.399235265458735 + ] + }, + "properties": { + "id": "meter-541", + "maker": "Maker C", + "model": "Model 541", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.41784774464333, + 21.255126304038395 + ] + }, + "properties": { + "id": "meter-542", + "maker": "Maker F", + "model": "Model 542", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.040235323872636, + 26.369527898842193 + ] + }, + "properties": { + "id": "meter-543", + "maker": "Maker I", + "model": "Model 543", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00060068745216, + 26.363473800427084 + ] + }, + "properties": { + "id": "meter-544", + "maker": "Maker C", + "model": "Model 544", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.692716371514116, + 27.532547696583123 + ] + }, + "properties": { + "id": "meter-545", + "maker": "Maker E", + "model": "Model 545", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01666020769028, + 26.211480521307006 + ] + }, + "properties": { + "id": "meter-546", + "maker": "Maker J", + "model": "Model 546", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.227420873101174, + 26.37775899090968 + ] + }, + "properties": { + "id": "meter-547", + "maker": "Maker C", + "model": "Model 547", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.691066861902094, + 25.265718252303046 + ] + }, + "properties": { + "id": "meter-548", + "maker": "Maker I", + "model": "Model 548", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.257779747740635, + 20.20248323447039 + ] + }, + "properties": { + "id": "meter-549", + "maker": "Maker G", + "model": "Model 549", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.39708511133093, + 19.915440691735395 + ] + }, + "properties": { + "id": "meter-550", + "maker": "Maker A", + "model": "Model 550", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.22077504854133, + 29.967631162154973 + ] + }, + "properties": { + "id": "meter-551", + "maker": "Maker F", + "model": "Model 551", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.56222931601858, + 27.411594259155407 + ] + }, + "properties": { + "id": "meter-552", + "maker": "Maker I", + "model": "Model 552", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.07472141611108, + 26.098705847212337 + ] + }, + "properties": { + "id": "meter-553", + "maker": "Maker B", + "model": "Model 553", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.699102997717695, + 24.756420716299715 + ] + }, + "properties": { + "id": "meter-554", + "maker": "Maker A", + "model": "Model 554", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.92080093568336, + 21.43790873194119 + ] + }, + "properties": { + "id": "meter-555", + "maker": "Maker H", + "model": "Model 555", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.20912099857196, + 24.104779421001616 + ] + }, + "properties": { + "id": "meter-556", + "maker": "Maker F", + "model": "Model 556", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.863417406909136, + 21.4064519496069 + ] + }, + "properties": { + "id": "meter-557", + "maker": "Maker D", + "model": "Model 557", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63146702464187, + 24.52278605788307 + ] + }, + "properties": { + "id": "meter-558", + "maker": "Maker E", + "model": "Model 558", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95700750142909, + 26.632703798297236 + ] + }, + "properties": { + "id": "meter-559", + "maker": "Maker H", + "model": "Model 559", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67545409154059, + 27.56359104882384 + ] + }, + "properties": { + "id": "meter-560", + "maker": "Maker F", + "model": "Model 560", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.948814714250744, + 24.786399331944818 + ] + }, + "properties": { + "id": "meter-561", + "maker": "Maker E", + "model": "Model 561", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07465074689333, + 26.39835523696046 + ] + }, + "properties": { + "id": "meter-562", + "maker": "Maker D", + "model": "Model 562", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.17413133743552, + 24.154158799740664 + ] + }, + "properties": { + "id": "meter-563", + "maker": "Maker G", + "model": "Model 563", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.674711220275185, + 25.464588041068282 + ] + }, + "properties": { + "id": "meter-564", + "maker": "Maker C", + "model": "Model 564", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.591437514630385, + 24.580595122503006 + ] + }, + "properties": { + "id": "meter-565", + "maker": "Maker F", + "model": "Model 565", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.78724324607492, + 18.18130935209199 + ] + }, + "properties": { + "id": "meter-566", + "maker": "Maker H", + "model": "Model 566", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73761868933518, + 18.399099157250095 + ] + }, + "properties": { + "id": "meter-567", + "maker": "Maker B", + "model": "Model 567", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.45914777269943, + 28.19967285677044 + ] + }, + "properties": { + "id": "meter-568", + "maker": "Maker F", + "model": "Model 568", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08650491549087, + 17.44605333043975 + ] + }, + "properties": { + "id": "meter-569", + "maker": "Maker E", + "model": "Model 569", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.18884305395037, + 29.92080598013176 + ] + }, + "properties": { + "id": "meter-570", + "maker": "Maker A", + "model": "Model 570", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.648194349221306, + 27.535774710552488 + ] + }, + "properties": { + "id": "meter-571", + "maker": "Maker A", + "model": "Model 571", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15789636023574, + 26.248464109902667 + ] + }, + "properties": { + "id": "meter-572", + "maker": "Maker H", + "model": "Model 572", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.500584440365756, + 19.964063496525913 + ] + }, + "properties": { + "id": "meter-573", + "maker": "Maker F", + "model": "Model 573", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.64574357536903, + 18.22660992320878 + ] + }, + "properties": { + "id": "meter-574", + "maker": "Maker H", + "model": "Model 574", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.937070113044975, + 24.835814067583783 + ] + }, + "properties": { + "id": "meter-575", + "maker": "Maker C", + "model": "Model 575", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.006572557072175, + 26.351714015660633 + ] + }, + "properties": { + "id": "meter-576", + "maker": "Maker J", + "model": "Model 576", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.88844251828876, + 26.518205821143766 + ] + }, + "properties": { + "id": "meter-577", + "maker": "Maker D", + "model": "Model 577", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.91949367280957, + 24.16127370123431 + ] + }, + "properties": { + "id": "meter-578", + "maker": "Maker D", + "model": "Model 578", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03437062524601, + 26.183723012022337 + ] + }, + "properties": { + "id": "meter-579", + "maker": "Maker B", + "model": "Model 579", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.73776012357881, + 26.44119839905109 + ] + }, + "properties": { + "id": "meter-580", + "maker": "Maker I", + "model": "Model 580", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23604308203516, + 21.472666249342677 + ] + }, + "properties": { + "id": "meter-581", + "maker": "Maker E", + "model": "Model 581", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.148956760055455, + 24.100599749605976 + ] + }, + "properties": { + "id": "meter-582", + "maker": "Maker F", + "model": "Model 582", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.125846393039886, + 26.140579073223048 + ] + }, + "properties": { + "id": "meter-583", + "maker": "Maker I", + "model": "Model 583", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.13387079268867, + 21.738684008256246 + ] + }, + "properties": { + "id": "meter-584", + "maker": "Maker C", + "model": "Model 584", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00395953551505, + 26.486441253865316 + ] + }, + "properties": { + "id": "meter-585", + "maker": "Maker H", + "model": "Model 585", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.50741540125989, + 19.87620533589375 + ] + }, + "properties": { + "id": "meter-586", + "maker": "Maker D", + "model": "Model 586", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.49796526153647, + 24.824750751761204 + ] + }, + "properties": { + "id": "meter-587", + "maker": "Maker B", + "model": "Model 587", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.443005020889416, + 18.21553079565839 + ] + }, + "properties": { + "id": "meter-588", + "maker": "Maker J", + "model": "Model 588", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97734675999578, + 26.335695057514055 + ] + }, + "properties": { + "id": "meter-589", + "maker": "Maker H", + "model": "Model 589", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.5595377484219, + 25.367040703454 + ] + }, + "properties": { + "id": "meter-590", + "maker": "Maker B", + "model": "Model 590", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.86009566555169, + 26.277519156569547 + ] + }, + "properties": { + "id": "meter-591", + "maker": "Maker C", + "model": "Model 591", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.92871229572584, + 30.8665296392791 + ] + }, + "properties": { + "id": "meter-592", + "maker": "Maker B", + "model": "Model 592", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.211595437221106, + 30.061960224745146 + ] + }, + "properties": { + "id": "meter-593", + "maker": "Maker B", + "model": "Model 593", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.056878836043914, + 26.337063890849763 + ] + }, + "properties": { + "id": "meter-594", + "maker": "Maker G", + "model": "Model 594", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.555315339489916, + 24.520947287950506 + ] + }, + "properties": { + "id": "meter-595", + "maker": "Maker H", + "model": "Model 595", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.984898416688296, + 24.25534538117795 + ] + }, + "properties": { + "id": "meter-596", + "maker": "Maker D", + "model": "Model 596", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.72175122885798, + 28.324146804604514 + ] + }, + "properties": { + "id": "meter-597", + "maker": "Maker H", + "model": "Model 597", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.614115017112034, + 24.334208586845993 + ] + }, + "properties": { + "id": "meter-598", + "maker": "Maker A", + "model": "Model 598", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17021561281456, + 26.337761042701217 + ] + }, + "properties": { + "id": "meter-599", + "maker": "Maker I", + "model": "Model 599", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.172967280305656, + 26.27921896239588 + ] + }, + "properties": { + "id": "meter-600", + "maker": "Maker B", + "model": "Model 600", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53550889554711, + 18.501359418578584 + ] + }, + "properties": { + "id": "meter-601", + "maker": "Maker C", + "model": "Model 601", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10608850110363, + 26.397897162243854 + ] + }, + "properties": { + "id": "meter-602", + "maker": "Maker D", + "model": "Model 602", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00318674415634, + 17.733509005306967 + ] + }, + "properties": { + "id": "meter-603", + "maker": "Maker E", + "model": "Model 603", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.723719252530266, + 18.07763875329496 + ] + }, + "properties": { + "id": "meter-604", + "maker": "Maker E", + "model": "Model 604", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62617707516895, + 27.426551647491685 + ] + }, + "properties": { + "id": "meter-605", + "maker": "Maker I", + "model": "Model 605", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.67288704072411, + 28.337628652223785 + ] + }, + "properties": { + "id": "meter-606", + "maker": "Maker C", + "model": "Model 606", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.88929468616693, + 31.228911198818878 + ] + }, + "properties": { + "id": "meter-607", + "maker": "Maker G", + "model": "Model 607", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46148145259463, + 20.299837059790605 + ] + }, + "properties": { + "id": "meter-608", + "maker": "Maker F", + "model": "Model 608", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.92421762399082, + 30.063122212801762 + ] + }, + "properties": { + "id": "meter-609", + "maker": "Maker J", + "model": "Model 609", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03906189881383, + 30.984834629132404 + ] + }, + "properties": { + "id": "meter-610", + "maker": "Maker J", + "model": "Model 610", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19755874119674, + 26.377991761481393 + ] + }, + "properties": { + "id": "meter-611", + "maker": "Maker B", + "model": "Model 611", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.40203555149268, + 25.291844995547653 + ] + }, + "properties": { + "id": "meter-612", + "maker": "Maker E", + "model": "Model 612", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.121268834333485, + 30.071202283684435 + ] + }, + "properties": { + "id": "meter-613", + "maker": "Maker J", + "model": "Model 613", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50256933557534, + 18.20434703493396 + ] + }, + "properties": { + "id": "meter-614", + "maker": "Maker G", + "model": "Model 614", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.343791855472546, + 21.426295713558023 + ] + }, + "properties": { + "id": "meter-615", + "maker": "Maker I", + "model": "Model 615", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.960664285919094, + 26.21911118175097 + ] + }, + "properties": { + "id": "meter-616", + "maker": "Maker B", + "model": "Model 616", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.583283875902254, + 20.139334671763567 + ] + }, + "properties": { + "id": "meter-617", + "maker": "Maker C", + "model": "Model 617", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.917425472542504, + 24.290334452415717 + ] + }, + "properties": { + "id": "meter-618", + "maker": "Maker J", + "model": "Model 618", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.601256979390435, + 25.264224852689193 + ] + }, + "properties": { + "id": "meter-619", + "maker": "Maker F", + "model": "Model 619", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05100618957964, + 26.401276671154758 + ] + }, + "properties": { + "id": "meter-620", + "maker": "Maker E", + "model": "Model 620", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.78688173405227, + 26.36144150108556 + ] + }, + "properties": { + "id": "meter-621", + "maker": "Maker B", + "model": "Model 621", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.06841715862705, + 30.876948711501868 + ] + }, + "properties": { + "id": "meter-622", + "maker": "Maker I", + "model": "Model 622", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.68765716251256, + 27.51249814874074 + ] + }, + "properties": { + "id": "meter-623", + "maker": "Maker H", + "model": "Model 623", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.819236456108975, + 18.103823710502493 + ] + }, + "properties": { + "id": "meter-624", + "maker": "Maker H", + "model": "Model 624", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.60436482135664, + 24.655916704177034 + ] + }, + "properties": { + "id": "meter-625", + "maker": "Maker F", + "model": "Model 625", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08204276852116, + 26.436687322117365 + ] + }, + "properties": { + "id": "meter-626", + "maker": "Maker F", + "model": "Model 626", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67816825812233, + 24.714315198415257 + ] + }, + "properties": { + "id": "meter-627", + "maker": "Maker J", + "model": "Model 627", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.5974777780682, + 24.581617069856062 + ] + }, + "properties": { + "id": "meter-628", + "maker": "Maker J", + "model": "Model 628", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.749802095482764, + 25.153379145179684 + ] + }, + "properties": { + "id": "meter-629", + "maker": "Maker C", + "model": "Model 629", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.250261588062145, + 21.69876289502877 + ] + }, + "properties": { + "id": "meter-630", + "maker": "Maker C", + "model": "Model 630", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.35154072845388, + 21.39592914266142 + ] + }, + "properties": { + "id": "meter-631", + "maker": "Maker H", + "model": "Model 631", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.192432063397746, + 17.54186417845677 + ] + }, + "properties": { + "id": "meter-632", + "maker": "Maker I", + "model": "Model 632", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.26660707473566, + 23.973098503162216 + ] + }, + "properties": { + "id": "meter-633", + "maker": "Maker J", + "model": "Model 633", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50357331659308, + 18.217270642008177 + ] + }, + "properties": { + "id": "meter-634", + "maker": "Maker H", + "model": "Model 634", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.84394389351775, + 25.338579427661507 + ] + }, + "properties": { + "id": "meter-635", + "maker": "Maker H", + "model": "Model 635", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.304652692213736, + 17.57438226367204 + ] + }, + "properties": { + "id": "meter-636", + "maker": "Maker D", + "model": "Model 636", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.44201434174996, + 19.837362207431458 + ] + }, + "properties": { + "id": "meter-637", + "maker": "Maker H", + "model": "Model 637", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.653551228490336, + 25.37568669031672 + ] + }, + "properties": { + "id": "meter-638", + "maker": "Maker H", + "model": "Model 638", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.9217362071469, + 21.421521442657397 + ] + }, + "properties": { + "id": "meter-639", + "maker": "Maker H", + "model": "Model 639", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59817252576759, + 25.334834238456548 + ] + }, + "properties": { + "id": "meter-640", + "maker": "Maker E", + "model": "Model 640", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.11238320418457, + 24.120732412485644 + ] + }, + "properties": { + "id": "meter-641", + "maker": "Maker E", + "model": "Model 641", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.596156549336705, + 24.53152701894498 + ] + }, + "properties": { + "id": "meter-642", + "maker": "Maker C", + "model": "Model 642", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03868799184094, + 30.97701139544699 + ] + }, + "properties": { + "id": "meter-643", + "maker": "Maker A", + "model": "Model 643", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.53045248212334, + 19.94807116303093 + ] + }, + "properties": { + "id": "meter-644", + "maker": "Maker J", + "model": "Model 644", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.84300472169452, + 26.557578768874784 + ] + }, + "properties": { + "id": "meter-645", + "maker": "Maker F", + "model": "Model 645", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.62222332699835, + 18.121439177106645 + ] + }, + "properties": { + "id": "meter-646", + "maker": "Maker J", + "model": "Model 646", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.8661031804404, + 26.32241451283808 + ] + }, + "properties": { + "id": "meter-647", + "maker": "Maker A", + "model": "Model 647", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.414598411704084, + 24.802970384771562 + ] + }, + "properties": { + "id": "meter-648", + "maker": "Maker C", + "model": "Model 648", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03773628232411, + 30.951370931527922 + ] + }, + "properties": { + "id": "meter-649", + "maker": "Maker J", + "model": "Model 649", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17725360567207, + 26.242930671406324 + ] + }, + "properties": { + "id": "meter-650", + "maker": "Maker A", + "model": "Model 650", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.689351393299795, + 24.673386241391718 + ] + }, + "properties": { + "id": "meter-651", + "maker": "Maker E", + "model": "Model 651", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.59187458154144, + 24.477431204070342 + ] + }, + "properties": { + "id": "meter-652", + "maker": "Maker J", + "model": "Model 652", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.75473433779581, + 27.50678300382598 + ] + }, + "properties": { + "id": "meter-653", + "maker": "Maker C", + "model": "Model 653", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.751080204987815, + 28.475335190051755 + ] + }, + "properties": { + "id": "meter-654", + "maker": "Maker I", + "model": "Model 654", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.48208742999345, + 25.340854220667204 + ] + }, + "properties": { + "id": "meter-655", + "maker": "Maker D", + "model": "Model 655", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.04647885517902, + 26.435619057989225 + ] + }, + "properties": { + "id": "meter-656", + "maker": "Maker I", + "model": "Model 656", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.433771883730174, + 28.260238785274616 + ] + }, + "properties": { + "id": "meter-657", + "maker": "Maker I", + "model": "Model 657", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.662157845337326, + 24.463827666390863 + ] + }, + "properties": { + "id": "meter-658", + "maker": "Maker G", + "model": "Model 658", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.67252560403147, + 28.624281620887455 + ] + }, + "properties": { + "id": "meter-659", + "maker": "Maker I", + "model": "Model 659", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.73121277529766, + 27.519670418006292 + ] + }, + "properties": { + "id": "meter-660", + "maker": "Maker D", + "model": "Model 660", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.03486486681003, + 24.1624177891856 + ] + }, + "properties": { + "id": "meter-661", + "maker": "Maker F", + "model": "Model 661", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.83455894524682, + 24.39641910853106 + ] + }, + "properties": { + "id": "meter-662", + "maker": "Maker I", + "model": "Model 662", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.38121890980537, + 25.270655473039596 + ] + }, + "properties": { + "id": "meter-663", + "maker": "Maker D", + "model": "Model 663", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.54164601990899, + 18.1458322997287 + ] + }, + "properties": { + "id": "meter-664", + "maker": "Maker G", + "model": "Model 664", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4306666705638, + 19.813536862380868 + ] + }, + "properties": { + "id": "meter-665", + "maker": "Maker A", + "model": "Model 665", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.72066836040667, + 26.47640005631087 + ] + }, + "properties": { + "id": "meter-666", + "maker": "Maker B", + "model": "Model 666", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.86821339139969, + 26.245547358791974 + ] + }, + "properties": { + "id": "meter-667", + "maker": "Maker E", + "model": "Model 667", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.19697240696586, + 21.387099222385107 + ] + }, + "properties": { + "id": "meter-668", + "maker": "Maker I", + "model": "Model 668", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97319956955067, + 26.50884578404206 + ] + }, + "properties": { + "id": "meter-669", + "maker": "Maker B", + "model": "Model 669", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.64626973702539, + 24.593419108032997 + ] + }, + "properties": { + "id": "meter-670", + "maker": "Maker D", + "model": "Model 670", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.40386523344421, + 20.15958137374688 + ] + }, + "properties": { + "id": "meter-671", + "maker": "Maker G", + "model": "Model 671", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.590434989050465, + 18.31562637548529 + ] + }, + "properties": { + "id": "meter-672", + "maker": "Maker J", + "model": "Model 672", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.609866623013176, + 25.35174325654204 + ] + }, + "properties": { + "id": "meter-673", + "maker": "Maker J", + "model": "Model 673", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.58776106775341, + 21.457687658272967 + ] + }, + "properties": { + "id": "meter-674", + "maker": "Maker D", + "model": "Model 674", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.91247207457402, + 27.69047423979221 + ] + }, + "properties": { + "id": "meter-675", + "maker": "Maker E", + "model": "Model 675", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.607633822447305, + 27.490886881760275 + ] + }, + "properties": { + "id": "meter-676", + "maker": "Maker A", + "model": "Model 676", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.889478825553304, + 26.51662159091107 + ] + }, + "properties": { + "id": "meter-677", + "maker": "Maker H", + "model": "Model 677", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.9893664000598, + 24.375113410303488 + ] + }, + "properties": { + "id": "meter-678", + "maker": "Maker F", + "model": "Model 678", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19663302842201, + 26.26169593929724 + ] + }, + "properties": { + "id": "meter-679", + "maker": "Maker C", + "model": "Model 679", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.506930530765906, + 19.980623854900646 + ] + }, + "properties": { + "id": "meter-680", + "maker": "Maker A", + "model": "Model 680", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.71813356510942, + 21.448115853596107 + ] + }, + "properties": { + "id": "meter-681", + "maker": "Maker H", + "model": "Model 681", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.104545010608305, + 30.971038168444878 + ] + }, + "properties": { + "id": "meter-682", + "maker": "Maker F", + "model": "Model 682", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.753194837198116, + 27.53977581113279 + ] + }, + "properties": { + "id": "meter-683", + "maker": "Maker A", + "model": "Model 683", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.517806203272, + 24.267468179788526 + ] + }, + "properties": { + "id": "meter-684", + "maker": "Maker C", + "model": "Model 684", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.93446511026521, + 21.41377615294502 + ] + }, + "properties": { + "id": "meter-685", + "maker": "Maker I", + "model": "Model 685", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.88104819690421, + 31.19662225799098 + ] + }, + "properties": { + "id": "meter-686", + "maker": "Maker F", + "model": "Model 686", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.030736197716614, + 24.097682690121154 + ] + }, + "properties": { + "id": "meter-687", + "maker": "Maker H", + "model": "Model 687", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.66657241491305, + 25.196897731269104 + ] + }, + "properties": { + "id": "meter-688", + "maker": "Maker F", + "model": "Model 688", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.29050123164961, + 21.62103774981801 + ] + }, + "properties": { + "id": "meter-689", + "maker": "Maker C", + "model": "Model 689", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.87313853931032, + 27.35535806946855 + ] + }, + "properties": { + "id": "meter-690", + "maker": "Maker H", + "model": "Model 690", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.13657598605069, + 21.58396041158783 + ] + }, + "properties": { + "id": "meter-691", + "maker": "Maker D", + "model": "Model 691", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92249543539754, + 26.403522089030336 + ] + }, + "properties": { + "id": "meter-692", + "maker": "Maker E", + "model": "Model 692", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.632331624317594, + 18.43056031813732 + ] + }, + "properties": { + "id": "meter-693", + "maker": "Maker G", + "model": "Model 693", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60321567955619, + 24.7740547159062 + ] + }, + "properties": { + "id": "meter-694", + "maker": "Maker D", + "model": "Model 694", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66838586076083, + 18.326006502726468 + ] + }, + "properties": { + "id": "meter-695", + "maker": "Maker A", + "model": "Model 695", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.48641893252645, + 28.405911043214395 + ] + }, + "properties": { + "id": "meter-696", + "maker": "Maker B", + "model": "Model 696", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.85271217500466, + 28.39303412271119 + ] + }, + "properties": { + "id": "meter-697", + "maker": "Maker G", + "model": "Model 697", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.001586804501905, + 26.42024473594765 + ] + }, + "properties": { + "id": "meter-698", + "maker": "Maker J", + "model": "Model 698", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.564477857934165, + 24.477367652593294 + ] + }, + "properties": { + "id": "meter-699", + "maker": "Maker D", + "model": "Model 699", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.218003769907085, + 29.976268903851317 + ] + }, + "properties": { + "id": "meter-700", + "maker": "Maker H", + "model": "Model 700", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17799810363348, + 17.580347838940693 + ] + }, + "properties": { + "id": "meter-701", + "maker": "Maker B", + "model": "Model 701", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03765360485765, + 17.533034110869814 + ] + }, + "properties": { + "id": "meter-702", + "maker": "Maker H", + "model": "Model 702", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.44587774271284, + 24.29375764813606 + ] + }, + "properties": { + "id": "meter-703", + "maker": "Maker H", + "model": "Model 703", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70136870425766, + 27.680265741662424 + ] + }, + "properties": { + "id": "meter-704", + "maker": "Maker F", + "model": "Model 704", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.22546406177188, + 30.92875356266342 + ] + }, + "properties": { + "id": "meter-705", + "maker": "Maker F", + "model": "Model 705", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.58699571155558, + 27.588897450396175 + ] + }, + "properties": { + "id": "meter-706", + "maker": "Maker I", + "model": "Model 706", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.03837587118882, + 30.12888705159169 + ] + }, + "properties": { + "id": "meter-707", + "maker": "Maker H", + "model": "Model 707", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13076674375083, + 17.518015088963057 + ] + }, + "properties": { + "id": "meter-708", + "maker": "Maker G", + "model": "Model 708", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.26235880892161, + 24.046042911052186 + ] + }, + "properties": { + "id": "meter-709", + "maker": "Maker C", + "model": "Model 709", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09523200193408, + 17.65338745607203 + ] + }, + "properties": { + "id": "meter-710", + "maker": "Maker F", + "model": "Model 710", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99459814926892, + 26.549499750607808 + ] + }, + "properties": { + "id": "meter-711", + "maker": "Maker F", + "model": "Model 711", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.33930633372045, + 21.369926272055242 + ] + }, + "properties": { + "id": "meter-712", + "maker": "Maker I", + "model": "Model 712", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.522478365411196, + 20.049648244654737 + ] + }, + "properties": { + "id": "meter-713", + "maker": "Maker A", + "model": "Model 713", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.76525672374784, + 24.605665037522144 + ] + }, + "properties": { + "id": "meter-714", + "maker": "Maker G", + "model": "Model 714", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.784511315291034, + 21.439820871720514 + ] + }, + "properties": { + "id": "meter-715", + "maker": "Maker E", + "model": "Model 715", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.706819672491264, + 18.329509528808604 + ] + }, + "properties": { + "id": "meter-716", + "maker": "Maker B", + "model": "Model 716", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.55648394983775, + 18.500136041677937 + ] + }, + "properties": { + "id": "meter-717", + "maker": "Maker I", + "model": "Model 717", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67362906259618, + 21.566047390314196 + ] + }, + "properties": { + "id": "meter-718", + "maker": "Maker D", + "model": "Model 718", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96771394609501, + 17.458394722029652 + ] + }, + "properties": { + "id": "meter-719", + "maker": "Maker A", + "model": "Model 719", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.42245471313074, + 21.508853010854633 + ] + }, + "properties": { + "id": "meter-720", + "maker": "Maker A", + "model": "Model 720", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.72806041777707, + 27.251265542210707 + ] + }, + "properties": { + "id": "meter-721", + "maker": "Maker J", + "model": "Model 721", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.52094845615552, + 19.961465744587926 + ] + }, + "properties": { + "id": "meter-722", + "maker": "Maker F", + "model": "Model 722", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.91513932844468, + 24.773177727020563 + ] + }, + "properties": { + "id": "meter-723", + "maker": "Maker A", + "model": "Model 723", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.45596597343446, + 24.503774134360754 + ] + }, + "properties": { + "id": "meter-724", + "maker": "Maker H", + "model": "Model 724", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.76353189644855, + 28.475851234720917 + ] + }, + "properties": { + "id": "meter-725", + "maker": "Maker E", + "model": "Model 725", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70464732083541, + 27.662421528106655 + ] + }, + "properties": { + "id": "meter-726", + "maker": "Maker F", + "model": "Model 726", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69976936502144, + 18.006923170532527 + ] + }, + "properties": { + "id": "meter-727", + "maker": "Maker I", + "model": "Model 727", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.86684837875017, + 17.523849983228093 + ] + }, + "properties": { + "id": "meter-728", + "maker": "Maker J", + "model": "Model 728", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.117923940206815, + 26.144744472063085 + ] + }, + "properties": { + "id": "meter-729", + "maker": "Maker H", + "model": "Model 729", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.86979204873241, + 27.453561989850925 + ] + }, + "properties": { + "id": "meter-730", + "maker": "Maker D", + "model": "Model 730", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.77239926305624, + 24.45704209273151 + ] + }, + "properties": { + "id": "meter-731", + "maker": "Maker E", + "model": "Model 731", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9435037355667, + 26.407329809509122 + ] + }, + "properties": { + "id": "meter-732", + "maker": "Maker I", + "model": "Model 732", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.76035287730762, + 26.33793445900297 + ] + }, + "properties": { + "id": "meter-733", + "maker": "Maker I", + "model": "Model 733", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.78539088472014, + 25.29909450664313 + ] + }, + "properties": { + "id": "meter-734", + "maker": "Maker H", + "model": "Model 734", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.223349888384, + 29.967169413035997 + ] + }, + "properties": { + "id": "meter-735", + "maker": "Maker C", + "model": "Model 735", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.171751493122606, + 30.994378238768267 + ] + }, + "properties": { + "id": "meter-736", + "maker": "Maker A", + "model": "Model 736", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.702853613764425, + 21.2649844309741 + ] + }, + "properties": { + "id": "meter-737", + "maker": "Maker J", + "model": "Model 737", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.27830567489704, + 18.34762151177815 + ] + }, + "properties": { + "id": "meter-738", + "maker": "Maker F", + "model": "Model 738", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60215176698407, + 21.260015651207127 + ] + }, + "properties": { + "id": "meter-739", + "maker": "Maker H", + "model": "Model 739", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.641050547260676, + 18.30575798142553 + ] + }, + "properties": { + "id": "meter-740", + "maker": "Maker F", + "model": "Model 740", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.46491947975973, + 18.181496573053792 + ] + }, + "properties": { + "id": "meter-741", + "maker": "Maker D", + "model": "Model 741", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09065205942205, + 17.357743999491586 + ] + }, + "properties": { + "id": "meter-742", + "maker": "Maker F", + "model": "Model 742", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91729067296941, + 26.331449556303337 + ] + }, + "properties": { + "id": "meter-743", + "maker": "Maker B", + "model": "Model 743", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.85865056002347, + 26.355146366391267 + ] + }, + "properties": { + "id": "meter-744", + "maker": "Maker A", + "model": "Model 744", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.03301009255148, + 24.159209782751155 + ] + }, + "properties": { + "id": "meter-745", + "maker": "Maker C", + "model": "Model 745", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.075246278149166, + 24.09677369012162 + ] + }, + "properties": { + "id": "meter-746", + "maker": "Maker J", + "model": "Model 746", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.74388125319256, + 25.29814279969445 + ] + }, + "properties": { + "id": "meter-747", + "maker": "Maker H", + "model": "Model 747", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.973231405470294, + 24.11371665178356 + ] + }, + "properties": { + "id": "meter-748", + "maker": "Maker F", + "model": "Model 748", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.116216609043526, + 26.119816112053844 + ] + }, + "properties": { + "id": "meter-749", + "maker": "Maker I", + "model": "Model 749", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.963925846173034, + 24.34041251968292 + ] + }, + "properties": { + "id": "meter-750", + "maker": "Maker D", + "model": "Model 750", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.014087641840014, + 21.485216166842978 + ] + }, + "properties": { + "id": "meter-751", + "maker": "Maker H", + "model": "Model 751", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.641429703708305, + 18.17378812517962 + ] + }, + "properties": { + "id": "meter-752", + "maker": "Maker E", + "model": "Model 752", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.33558160022332, + 25.496060235934866 + ] + }, + "properties": { + "id": "meter-753", + "maker": "Maker C", + "model": "Model 753", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.461958390746496, + 20.05435955433482 + ] + }, + "properties": { + "id": "meter-754", + "maker": "Maker I", + "model": "Model 754", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.25064652155281, + 24.11056332725281 + ] + }, + "properties": { + "id": "meter-755", + "maker": "Maker H", + "model": "Model 755", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.680442404177064, + 24.772881215916875 + ] + }, + "properties": { + "id": "meter-756", + "maker": "Maker H", + "model": "Model 756", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21626558045033, + 21.52641665208122 + ] + }, + "properties": { + "id": "meter-757", + "maker": "Maker E", + "model": "Model 757", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.235687133840564, + 17.554469538318386 + ] + }, + "properties": { + "id": "meter-758", + "maker": "Maker A", + "model": "Model 758", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.604992977364596, + 20.065131598770105 + ] + }, + "properties": { + "id": "meter-759", + "maker": "Maker A", + "model": "Model 759", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63264776024131, + 24.423677626881606 + ] + }, + "properties": { + "id": "meter-760", + "maker": "Maker A", + "model": "Model 760", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.40005724180271, + 29.944145677165455 + ] + }, + "properties": { + "id": "meter-761", + "maker": "Maker A", + "model": "Model 761", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09647951661687, + 17.421890958475398 + ] + }, + "properties": { + "id": "meter-762", + "maker": "Maker F", + "model": "Model 762", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68240559271004, + 24.71739099792957 + ] + }, + "properties": { + "id": "meter-763", + "maker": "Maker I", + "model": "Model 763", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.027122830696214, + 26.262777641462527 + ] + }, + "properties": { + "id": "meter-764", + "maker": "Maker G", + "model": "Model 764", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42053135288395, + 19.972778481581148 + ] + }, + "properties": { + "id": "meter-765", + "maker": "Maker F", + "model": "Model 765", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.101755113677385, + 24.269397023923283 + ] + }, + "properties": { + "id": "meter-766", + "maker": "Maker B", + "model": "Model 766", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.22759259288707, + 26.455405655110287 + ] + }, + "properties": { + "id": "meter-767", + "maker": "Maker G", + "model": "Model 767", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.57708656715381, + 27.303259887122767 + ] + }, + "properties": { + "id": "meter-768", + "maker": "Maker F", + "model": "Model 768", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.46580359560572, + 18.100364075511134 + ] + }, + "properties": { + "id": "meter-769", + "maker": "Maker J", + "model": "Model 769", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.7468534527672, + 18.258842133675124 + ] + }, + "properties": { + "id": "meter-770", + "maker": "Maker H", + "model": "Model 770", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15959165285637, + 26.314983496730257 + ] + }, + "properties": { + "id": "meter-771", + "maker": "Maker J", + "model": "Model 771", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67516351035355, + 27.509139474733495 + ] + }, + "properties": { + "id": "meter-772", + "maker": "Maker A", + "model": "Model 772", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18220637407909, + 26.3311967061673 + ] + }, + "properties": { + "id": "meter-773", + "maker": "Maker I", + "model": "Model 773", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.01320116321209, + 30.94176455494672 + ] + }, + "properties": { + "id": "meter-774", + "maker": "Maker A", + "model": "Model 774", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00505296911647, + 26.332247635013378 + ] + }, + "properties": { + "id": "meter-775", + "maker": "Maker B", + "model": "Model 775", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.05296384230905, + 31.022970055376643 + ] + }, + "properties": { + "id": "meter-776", + "maker": "Maker H", + "model": "Model 776", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.103901906883365, + 26.26808396890743 + ] + }, + "properties": { + "id": "meter-777", + "maker": "Maker F", + "model": "Model 777", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10629128966177, + 26.394405893272616 + ] + }, + "properties": { + "id": "meter-778", + "maker": "Maker A", + "model": "Model 778", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.64082177857418, + 19.991075564417187 + ] + }, + "properties": { + "id": "meter-779", + "maker": "Maker B", + "model": "Model 779", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.24341698207242, + 20.132132039390477 + ] + }, + "properties": { + "id": "meter-780", + "maker": "Maker J", + "model": "Model 780", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97994922045505, + 26.36312758532069 + ] + }, + "properties": { + "id": "meter-781", + "maker": "Maker A", + "model": "Model 781", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1120193342372, + 26.2309528013722 + ] + }, + "properties": { + "id": "meter-782", + "maker": "Maker J", + "model": "Model 782", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.08916777833477, + 21.576518104870154 + ] + }, + "properties": { + "id": "meter-783", + "maker": "Maker D", + "model": "Model 783", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.02152288866656, + 29.76042881141626 + ] + }, + "properties": { + "id": "meter-784", + "maker": "Maker G", + "model": "Model 784", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81881927929516, + 21.296910865196423 + ] + }, + "properties": { + "id": "meter-785", + "maker": "Maker I", + "model": "Model 785", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.734973911730656, + 27.383087742960072 + ] + }, + "properties": { + "id": "meter-786", + "maker": "Maker I", + "model": "Model 786", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.656140051236385, + 25.322909433136914 + ] + }, + "properties": { + "id": "meter-787", + "maker": "Maker C", + "model": "Model 787", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.27036451944491, + 21.582702584363467 + ] + }, + "properties": { + "id": "meter-788", + "maker": "Maker B", + "model": "Model 788", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1400120569972, + 26.313632895723337 + ] + }, + "properties": { + "id": "meter-789", + "maker": "Maker J", + "model": "Model 789", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.537857114492425, + 18.514235020832196 + ] + }, + "properties": { + "id": "meter-790", + "maker": "Maker D", + "model": "Model 790", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.501328115184805, + 24.576129649587763 + ] + }, + "properties": { + "id": "meter-791", + "maker": "Maker A", + "model": "Model 791", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.82385033448133, + 18.312310651554085 + ] + }, + "properties": { + "id": "meter-792", + "maker": "Maker G", + "model": "Model 792", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.54854834572506, + 28.345963348760428 + ] + }, + "properties": { + "id": "meter-793", + "maker": "Maker G", + "model": "Model 793", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.35603202691967, + 25.218532069725242 + ] + }, + "properties": { + "id": "meter-794", + "maker": "Maker I", + "model": "Model 794", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.971797239969746, + 17.637576786671275 + ] + }, + "properties": { + "id": "meter-795", + "maker": "Maker C", + "model": "Model 795", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.17612573671321, + 21.600817920518715 + ] + }, + "properties": { + "id": "meter-796", + "maker": "Maker J", + "model": "Model 796", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.802981819134146, + 24.957633957092586 + ] + }, + "properties": { + "id": "meter-797", + "maker": "Maker G", + "model": "Model 797", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.42436688322893, + 24.488824181197906 + ] + }, + "properties": { + "id": "meter-798", + "maker": "Maker A", + "model": "Model 798", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02683197470692, + 26.39558692850849 + ] + }, + "properties": { + "id": "meter-799", + "maker": "Maker J", + "model": "Model 799", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.64651225505352, + 27.74040597335414 + ] + }, + "properties": { + "id": "meter-800", + "maker": "Maker D", + "model": "Model 800", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.62083555148517, + 24.523645591687046 + ] + }, + "properties": { + "id": "meter-801", + "maker": "Maker C", + "model": "Model 801", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.48195479698422, + 24.722463681720622 + ] + }, + "properties": { + "id": "meter-802", + "maker": "Maker I", + "model": "Model 802", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.870687373171364, + 24.852164306546094 + ] + }, + "properties": { + "id": "meter-803", + "maker": "Maker B", + "model": "Model 803", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2214622776562, + 21.589797854450364 + ] + }, + "properties": { + "id": "meter-804", + "maker": "Maker H", + "model": "Model 804", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.935136977943685, + 24.29969741709985 + ] + }, + "properties": { + "id": "meter-805", + "maker": "Maker H", + "model": "Model 805", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.27209210697846, + 21.349171457713975 + ] + }, + "properties": { + "id": "meter-806", + "maker": "Maker A", + "model": "Model 806", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1782920764346, + 26.308691772075257 + ] + }, + "properties": { + "id": "meter-807", + "maker": "Maker E", + "model": "Model 807", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.31000383426534, + 21.477387545135134 + ] + }, + "properties": { + "id": "meter-808", + "maker": "Maker E", + "model": "Model 808", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.80466575644009, + 26.563047034421007 + ] + }, + "properties": { + "id": "meter-809", + "maker": "Maker I", + "model": "Model 809", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.86191096608851, + 31.116697853758033 + ] + }, + "properties": { + "id": "meter-810", + "maker": "Maker F", + "model": "Model 810", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.388813037984036, + 18.46212452169742 + ] + }, + "properties": { + "id": "meter-811", + "maker": "Maker A", + "model": "Model 811", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.777037629471465, + 18.330257668102306 + ] + }, + "properties": { + "id": "meter-812", + "maker": "Maker C", + "model": "Model 812", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.116459313821395, + 26.30596853127449 + ] + }, + "properties": { + "id": "meter-813", + "maker": "Maker A", + "model": "Model 813", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.756922153068146, + 24.616673686974814 + ] + }, + "properties": { + "id": "meter-814", + "maker": "Maker F", + "model": "Model 814", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.89562555975543, + 26.493254075265178 + ] + }, + "properties": { + "id": "meter-815", + "maker": "Maker J", + "model": "Model 815", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.64672556440229, + 28.129915275983937 + ] + }, + "properties": { + "id": "meter-816", + "maker": "Maker D", + "model": "Model 816", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.87917841794817, + 21.3999495197542 + ] + }, + "properties": { + "id": "meter-817", + "maker": "Maker G", + "model": "Model 817", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.098108765810835, + 30.98859341702927 + ] + }, + "properties": { + "id": "meter-818", + "maker": "Maker B", + "model": "Model 818", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.960196320778394, + 26.60083797125273 + ] + }, + "properties": { + "id": "meter-819", + "maker": "Maker I", + "model": "Model 819", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0770908802036, + 26.416196556215553 + ] + }, + "properties": { + "id": "meter-820", + "maker": "Maker C", + "model": "Model 820", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.858143146147306, + 26.42964889897834 + ] + }, + "properties": { + "id": "meter-821", + "maker": "Maker E", + "model": "Model 821", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97448265588209, + 26.32563005887636 + ] + }, + "properties": { + "id": "meter-822", + "maker": "Maker E", + "model": "Model 822", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.544049160116266, + 28.402708667047083 + ] + }, + "properties": { + "id": "meter-823", + "maker": "Maker E", + "model": "Model 823", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.625179375570326, + 18.257509294329783 + ] + }, + "properties": { + "id": "meter-824", + "maker": "Maker A", + "model": "Model 824", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.82695980769308, + 28.48734017086751 + ] + }, + "properties": { + "id": "meter-825", + "maker": "Maker D", + "model": "Model 825", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67622701689862, + 24.253407428263678 + ] + }, + "properties": { + "id": "meter-826", + "maker": "Maker C", + "model": "Model 826", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.37318964400167, + 21.511314668125596 + ] + }, + "properties": { + "id": "meter-827", + "maker": "Maker J", + "model": "Model 827", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.25680168513991, + 20.101133310845064 + ] + }, + "properties": { + "id": "meter-828", + "maker": "Maker I", + "model": "Model 828", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.54365724005041, + 18.20443207137192 + ] + }, + "properties": { + "id": "meter-829", + "maker": "Maker J", + "model": "Model 829", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.8041726375141, + 25.49556225573191 + ] + }, + "properties": { + "id": "meter-830", + "maker": "Maker G", + "model": "Model 830", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.867566151547855, + 26.27381367563411 + ] + }, + "properties": { + "id": "meter-831", + "maker": "Maker G", + "model": "Model 831", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.82401828070695, + 18.26080553713996 + ] + }, + "properties": { + "id": "meter-832", + "maker": "Maker C", + "model": "Model 832", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.66897657797072, + 24.4951348587708 + ] + }, + "properties": { + "id": "meter-833", + "maker": "Maker I", + "model": "Model 833", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.31759959081297, + 17.522498029676523 + ] + }, + "properties": { + "id": "meter-834", + "maker": "Maker J", + "model": "Model 834", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.2756720903849, + 19.847582928500426 + ] + }, + "properties": { + "id": "meter-835", + "maker": "Maker J", + "model": "Model 835", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.94467928828398, + 30.701356661164652 + ] + }, + "properties": { + "id": "meter-836", + "maker": "Maker E", + "model": "Model 836", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.96588161009119, + 29.889899637798486 + ] + }, + "properties": { + "id": "meter-837", + "maker": "Maker D", + "model": "Model 837", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85713255186045, + 24.5695227470222 + ] + }, + "properties": { + "id": "meter-838", + "maker": "Maker D", + "model": "Model 838", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.45077467743089, + 24.78850595075956 + ] + }, + "properties": { + "id": "meter-839", + "maker": "Maker J", + "model": "Model 839", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.3382274898954, + 29.93028661948287 + ] + }, + "properties": { + "id": "meter-840", + "maker": "Maker D", + "model": "Model 840", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53523482690992, + 18.219056085056497 + ] + }, + "properties": { + "id": "meter-841", + "maker": "Maker H", + "model": "Model 841", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.812411198670446, + 26.714507476585606 + ] + }, + "properties": { + "id": "meter-842", + "maker": "Maker A", + "model": "Model 842", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.86236742425909, + 18.362041155000295 + ] + }, + "properties": { + "id": "meter-843", + "maker": "Maker B", + "model": "Model 843", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.627433311102706, + 19.76082911394311 + ] + }, + "properties": { + "id": "meter-844", + "maker": "Maker J", + "model": "Model 844", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.93225598014261, + 21.142594022373608 + ] + }, + "properties": { + "id": "meter-845", + "maker": "Maker C", + "model": "Model 845", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.755722952313896, + 26.558948462672053 + ] + }, + "properties": { + "id": "meter-846", + "maker": "Maker F", + "model": "Model 846", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.62431632301469, + 24.62723622376697 + ] + }, + "properties": { + "id": "meter-847", + "maker": "Maker I", + "model": "Model 847", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.84552732868592, + 24.890819159339706 + ] + }, + "properties": { + "id": "meter-848", + "maker": "Maker I", + "model": "Model 848", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.25507193018296, + 30.20313281698335 + ] + }, + "properties": { + "id": "meter-849", + "maker": "Maker E", + "model": "Model 849", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96377687030574, + 26.608162031416878 + ] + }, + "properties": { + "id": "meter-850", + "maker": "Maker E", + "model": "Model 850", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.690624832815466, + 27.5057178819021 + ] + }, + "properties": { + "id": "meter-851", + "maker": "Maker A", + "model": "Model 851", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.477571574976004, + 18.33321824205056 + ] + }, + "properties": { + "id": "meter-852", + "maker": "Maker D", + "model": "Model 852", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02046230805759, + 26.31499096671128 + ] + }, + "properties": { + "id": "meter-853", + "maker": "Maker G", + "model": "Model 853", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.888233032858444, + 21.362640159402375 + ] + }, + "properties": { + "id": "meter-854", + "maker": "Maker A", + "model": "Model 854", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.74743890568197, + 18.34692782694919 + ] + }, + "properties": { + "id": "meter-855", + "maker": "Maker D", + "model": "Model 855", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.518384769637834, + 25.433683999070432 + ] + }, + "properties": { + "id": "meter-856", + "maker": "Maker E", + "model": "Model 856", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.37703801423912, + 20.00679191645742 + ] + }, + "properties": { + "id": "meter-857", + "maker": "Maker F", + "model": "Model 857", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.638729684041, + 19.934906108274117 + ] + }, + "properties": { + "id": "meter-858", + "maker": "Maker A", + "model": "Model 858", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07075561676758, + 24.117417521216705 + ] + }, + "properties": { + "id": "meter-859", + "maker": "Maker F", + "model": "Model 859", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.538046519755184, + 25.19274004042253 + ] + }, + "properties": { + "id": "meter-860", + "maker": "Maker E", + "model": "Model 860", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94867646501659, + 26.219607555519406 + ] + }, + "properties": { + "id": "meter-861", + "maker": "Maker H", + "model": "Model 861", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.245488966357215, + 30.03035651279201 + ] + }, + "properties": { + "id": "meter-862", + "maker": "Maker B", + "model": "Model 862", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.185725326814875, + 26.307000334446595 + ] + }, + "properties": { + "id": "meter-863", + "maker": "Maker F", + "model": "Model 863", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.969107660203, + 17.430217522360966 + ] + }, + "properties": { + "id": "meter-864", + "maker": "Maker H", + "model": "Model 864", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20699237223787, + 26.27880401024807 + ] + }, + "properties": { + "id": "meter-865", + "maker": "Maker J", + "model": "Model 865", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.22470011832217, + 29.97060610302135 + ] + }, + "properties": { + "id": "meter-866", + "maker": "Maker A", + "model": "Model 866", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.62694300300248, + 18.43469457283413 + ] + }, + "properties": { + "id": "meter-867", + "maker": "Maker J", + "model": "Model 867", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.76695284346616, + 25.272679017518932 + ] + }, + "properties": { + "id": "meter-868", + "maker": "Maker G", + "model": "Model 868", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.046155549041956, + 30.957640959866723 + ] + }, + "properties": { + "id": "meter-869", + "maker": "Maker I", + "model": "Model 869", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65429842969833, + 24.742237061837233 + ] + }, + "properties": { + "id": "meter-870", + "maker": "Maker I", + "model": "Model 870", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04029564075415, + 24.19288635509578 + ] + }, + "properties": { + "id": "meter-871", + "maker": "Maker F", + "model": "Model 871", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.718007402065375, + 26.380754467253066 + ] + }, + "properties": { + "id": "meter-872", + "maker": "Maker G", + "model": "Model 872", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.89548453157652, + 26.487223956070316 + ] + }, + "properties": { + "id": "meter-873", + "maker": "Maker D", + "model": "Model 873", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94189392476608, + 26.58009184569396 + ] + }, + "properties": { + "id": "meter-874", + "maker": "Maker D", + "model": "Model 874", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60797799278545, + 21.297730887139384 + ] + }, + "properties": { + "id": "meter-875", + "maker": "Maker B", + "model": "Model 875", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.195588464399655, + 26.301350458649413 + ] + }, + "properties": { + "id": "meter-876", + "maker": "Maker G", + "model": "Model 876", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.95038597469571, + 24.30128652806674 + ] + }, + "properties": { + "id": "meter-877", + "maker": "Maker B", + "model": "Model 877", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.83441196547574, + 27.580673559179388 + ] + }, + "properties": { + "id": "meter-878", + "maker": "Maker H", + "model": "Model 878", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19386345411775, + 26.23682348330124 + ] + }, + "properties": { + "id": "meter-879", + "maker": "Maker D", + "model": "Model 879", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.86512748249102, + 26.504953696775228 + ] + }, + "properties": { + "id": "meter-880", + "maker": "Maker G", + "model": "Model 880", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.70805042026997, + 24.688568281347408 + ] + }, + "properties": { + "id": "meter-881", + "maker": "Maker I", + "model": "Model 881", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.9129509851335, + 30.76091883825856 + ] + }, + "properties": { + "id": "meter-882", + "maker": "Maker E", + "model": "Model 882", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.29017184624809, + 17.41923510224907 + ] + }, + "properties": { + "id": "meter-883", + "maker": "Maker A", + "model": "Model 883", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.18705577059944, + 17.634461490284302 + ] + }, + "properties": { + "id": "meter-884", + "maker": "Maker E", + "model": "Model 884", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25794810083146, + 21.585339572973965 + ] + }, + "properties": { + "id": "meter-885", + "maker": "Maker I", + "model": "Model 885", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58611196046642, + 25.348932813587133 + ] + }, + "properties": { + "id": "meter-886", + "maker": "Maker G", + "model": "Model 886", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68833898616883, + 18.114177872764152 + ] + }, + "properties": { + "id": "meter-887", + "maker": "Maker B", + "model": "Model 887", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.72149974181432, + 25.464710558451955 + ] + }, + "properties": { + "id": "meter-888", + "maker": "Maker B", + "model": "Model 888", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.79832679890237, + 26.381006438693326 + ] + }, + "properties": { + "id": "meter-889", + "maker": "Maker G", + "model": "Model 889", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.74584673597412, + 28.60617055199901 + ] + }, + "properties": { + "id": "meter-890", + "maker": "Maker F", + "model": "Model 890", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.49895984931758, + 24.432710073478567 + ] + }, + "properties": { + "id": "meter-891", + "maker": "Maker C", + "model": "Model 891", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00630204927424, + 26.50780027757189 + ] + }, + "properties": { + "id": "meter-892", + "maker": "Maker A", + "model": "Model 892", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.836874317599246, + 18.381628052941068 + ] + }, + "properties": { + "id": "meter-893", + "maker": "Maker J", + "model": "Model 893", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0877791671512, + 26.419381046322066 + ] + }, + "properties": { + "id": "meter-894", + "maker": "Maker G", + "model": "Model 894", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.22626330694825, + 21.62166338787709 + ] + }, + "properties": { + "id": "meter-895", + "maker": "Maker A", + "model": "Model 895", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17587135709371, + 26.207036477487392 + ] + }, + "properties": { + "id": "meter-896", + "maker": "Maker C", + "model": "Model 896", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00128567223206, + 26.491670983290724 + ] + }, + "properties": { + "id": "meter-897", + "maker": "Maker I", + "model": "Model 897", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98298364733292, + 26.474077754551658 + ] + }, + "properties": { + "id": "meter-898", + "maker": "Maker G", + "model": "Model 898", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.541128645093956, + 28.19699041765927 + ] + }, + "properties": { + "id": "meter-899", + "maker": "Maker B", + "model": "Model 899", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.26654914463289, + 23.98024860514736 + ] + }, + "properties": { + "id": "meter-900", + "maker": "Maker H", + "model": "Model 900", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.081419793435195, + 24.108152261468895 + ] + }, + "properties": { + "id": "meter-901", + "maker": "Maker H", + "model": "Model 901", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.63523618390195, + 19.972634257520113 + ] + }, + "properties": { + "id": "meter-902", + "maker": "Maker C", + "model": "Model 902", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.566986880860824, + 20.138985778046283 + ] + }, + "properties": { + "id": "meter-903", + "maker": "Maker F", + "model": "Model 903", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.583302436192035, + 25.337340863672505 + ] + }, + "properties": { + "id": "meter-904", + "maker": "Maker C", + "model": "Model 904", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23971774519485, + 30.113919399445155 + ] + }, + "properties": { + "id": "meter-905", + "maker": "Maker F", + "model": "Model 905", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.95701321588959, + 17.32781658388453 + ] + }, + "properties": { + "id": "meter-906", + "maker": "Maker H", + "model": "Model 906", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.435740871778584, + 24.41799733909956 + ] + }, + "properties": { + "id": "meter-907", + "maker": "Maker A", + "model": "Model 907", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53916399878264, + 18.26532053408747 + ] + }, + "properties": { + "id": "meter-908", + "maker": "Maker G", + "model": "Model 908", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11994216670253, + 26.296654501634354 + ] + }, + "properties": { + "id": "meter-909", + "maker": "Maker H", + "model": "Model 909", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.86164453440784, + 26.479994456509747 + ] + }, + "properties": { + "id": "meter-910", + "maker": "Maker B", + "model": "Model 910", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.59557304053864, + 28.39019389790216 + ] + }, + "properties": { + "id": "meter-911", + "maker": "Maker I", + "model": "Model 911", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.749575432216346, + 24.709198056392317 + ] + }, + "properties": { + "id": "meter-912", + "maker": "Maker E", + "model": "Model 912", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.982510356484674, + 26.564906136440886 + ] + }, + "properties": { + "id": "meter-913", + "maker": "Maker H", + "model": "Model 913", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47129064092599, + 20.017012267973772 + ] + }, + "properties": { + "id": "meter-914", + "maker": "Maker G", + "model": "Model 914", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.648192912900434, + 18.349600792161414 + ] + }, + "properties": { + "id": "meter-915", + "maker": "Maker A", + "model": "Model 915", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65404834523198, + 24.73453263491913 + ] + }, + "properties": { + "id": "meter-916", + "maker": "Maker I", + "model": "Model 916", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.506528616338414, + 18.21942207118005 + ] + }, + "properties": { + "id": "meter-917", + "maker": "Maker J", + "model": "Model 917", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.18332049580909, + 17.41892396386825 + ] + }, + "properties": { + "id": "meter-918", + "maker": "Maker E", + "model": "Model 918", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08514362422233, + 17.34569226530831 + ] + }, + "properties": { + "id": "meter-919", + "maker": "Maker C", + "model": "Model 919", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.7779677812108, + 27.286050173442568 + ] + }, + "properties": { + "id": "meter-920", + "maker": "Maker H", + "model": "Model 920", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.31472048220744, + 23.939819555648473 + ] + }, + "properties": { + "id": "meter-921", + "maker": "Maker C", + "model": "Model 921", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77399374392721, + 21.404557201245737 + ] + }, + "properties": { + "id": "meter-922", + "maker": "Maker E", + "model": "Model 922", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.65998917776269, + 24.284770157908124 + ] + }, + "properties": { + "id": "meter-923", + "maker": "Maker B", + "model": "Model 923", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21153562580551, + 26.263560079768236 + ] + }, + "properties": { + "id": "meter-924", + "maker": "Maker H", + "model": "Model 924", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.580418904216714, + 28.45478835425593 + ] + }, + "properties": { + "id": "meter-925", + "maker": "Maker C", + "model": "Model 925", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.5988841983926, + 28.338038918202354 + ] + }, + "properties": { + "id": "meter-926", + "maker": "Maker I", + "model": "Model 926", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.40740771737218, + 21.350808387923866 + ] + }, + "properties": { + "id": "meter-927", + "maker": "Maker B", + "model": "Model 927", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00296368463629, + 26.134025711492953 + ] + }, + "properties": { + "id": "meter-928", + "maker": "Maker C", + "model": "Model 928", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45776424302348, + 27.328478120496936 + ] + }, + "properties": { + "id": "meter-929", + "maker": "Maker I", + "model": "Model 929", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.769103112930125, + 18.45125312974111 + ] + }, + "properties": { + "id": "meter-930", + "maker": "Maker J", + "model": "Model 930", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.877549823215745, + 31.024451886796047 + ] + }, + "properties": { + "id": "meter-931", + "maker": "Maker I", + "model": "Model 931", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67898173911201, + 24.814469770304953 + ] + }, + "properties": { + "id": "meter-932", + "maker": "Maker B", + "model": "Model 932", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.159909315102894, + 26.295084514637725 + ] + }, + "properties": { + "id": "meter-933", + "maker": "Maker A", + "model": "Model 933", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.4100343638778, + 21.67092265974644 + ] + }, + "properties": { + "id": "meter-934", + "maker": "Maker E", + "model": "Model 934", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10481588189338, + 26.257285202518712 + ] + }, + "properties": { + "id": "meter-935", + "maker": "Maker C", + "model": "Model 935", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.14771785711183, + 30.257511384468994 + ] + }, + "properties": { + "id": "meter-936", + "maker": "Maker D", + "model": "Model 936", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21454366869596, + 29.96929611121388 + ] + }, + "properties": { + "id": "meter-937", + "maker": "Maker E", + "model": "Model 937", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.84135302630599, + 18.1910425952796 + ] + }, + "properties": { + "id": "meter-938", + "maker": "Maker H", + "model": "Model 938", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04274827241772, + 17.40506590602327 + ] + }, + "properties": { + "id": "meter-939", + "maker": "Maker I", + "model": "Model 939", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.705482940757, + 25.483807206314008 + ] + }, + "properties": { + "id": "meter-940", + "maker": "Maker G", + "model": "Model 940", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.64957118787704, + 28.505032366606766 + ] + }, + "properties": { + "id": "meter-941", + "maker": "Maker E", + "model": "Model 941", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.10173195956711, + 24.378541915101255 + ] + }, + "properties": { + "id": "meter-942", + "maker": "Maker H", + "model": "Model 942", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.44819932184041, + 24.903616593703326 + ] + }, + "properties": { + "id": "meter-943", + "maker": "Maker C", + "model": "Model 943", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.645012916746495, + 27.441758498866147 + ] + }, + "properties": { + "id": "meter-944", + "maker": "Maker H", + "model": "Model 944", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13382209433714, + 26.405756843206053 + ] + }, + "properties": { + "id": "meter-945", + "maker": "Maker J", + "model": "Model 945", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.48478904811799, + 28.416180407869035 + ] + }, + "properties": { + "id": "meter-946", + "maker": "Maker J", + "model": "Model 946", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.88212521868586, + 18.320047945826353 + ] + }, + "properties": { + "id": "meter-947", + "maker": "Maker D", + "model": "Model 947", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.7073308987103, + 27.600047216635552 + ] + }, + "properties": { + "id": "meter-948", + "maker": "Maker E", + "model": "Model 948", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.36675532214561, + 19.90730178164358 + ] + }, + "properties": { + "id": "meter-949", + "maker": "Maker A", + "model": "Model 949", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.13019734749933, + 24.14721781529865 + ] + }, + "properties": { + "id": "meter-950", + "maker": "Maker B", + "model": "Model 950", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.606711771370925, + 25.262365646925133 + ] + }, + "properties": { + "id": "meter-951", + "maker": "Maker J", + "model": "Model 951", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65350280643178, + 27.268445076806678 + ] + }, + "properties": { + "id": "meter-952", + "maker": "Maker I", + "model": "Model 952", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.60927064128598, + 18.10106455710993 + ] + }, + "properties": { + "id": "meter-953", + "maker": "Maker B", + "model": "Model 953", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07913452712129, + 26.329915571260887 + ] + }, + "properties": { + "id": "meter-954", + "maker": "Maker H", + "model": "Model 954", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.61355163848501, + 28.661998294298872 + ] + }, + "properties": { + "id": "meter-955", + "maker": "Maker I", + "model": "Model 955", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.28671231637206, + 24.27755973006117 + ] + }, + "properties": { + "id": "meter-956", + "maker": "Maker D", + "model": "Model 956", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.07517872856122, + 26.44420801321973 + ] + }, + "properties": { + "id": "meter-957", + "maker": "Maker I", + "model": "Model 957", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.66750310777431, + 24.87466855012943 + ] + }, + "properties": { + "id": "meter-958", + "maker": "Maker I", + "model": "Model 958", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.352054225920334, + 17.560698317433783 + ] + }, + "properties": { + "id": "meter-959", + "maker": "Maker B", + "model": "Model 959", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.736495137622796, + 21.31875252349636 + ] + }, + "properties": { + "id": "meter-960", + "maker": "Maker C", + "model": "Model 960", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.246555481540526, + 20.074730354691567 + ] + }, + "properties": { + "id": "meter-961", + "maker": "Maker F", + "model": "Model 961", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96206031190762, + 26.550444958813827 + ] + }, + "properties": { + "id": "meter-962", + "maker": "Maker D", + "model": "Model 962", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.58422728670642, + 20.042136921723483 + ] + }, + "properties": { + "id": "meter-963", + "maker": "Maker B", + "model": "Model 963", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.55129451273481, + 28.421762671895 + ] + }, + "properties": { + "id": "meter-964", + "maker": "Maker D", + "model": "Model 964", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.009836604818034, + 17.647830654922682 + ] + }, + "properties": { + "id": "meter-965", + "maker": "Maker I", + "model": "Model 965", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57572713855782, + 25.242436495514696 + ] + }, + "properties": { + "id": "meter-966", + "maker": "Maker F", + "model": "Model 966", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.07374392062937, + 29.847879699326505 + ] + }, + "properties": { + "id": "meter-967", + "maker": "Maker A", + "model": "Model 967", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98047688948842, + 26.51461549064562 + ] + }, + "properties": { + "id": "meter-968", + "maker": "Maker I", + "model": "Model 968", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.287469103990226, + 20.174936417478552 + ] + }, + "properties": { + "id": "meter-969", + "maker": "Maker E", + "model": "Model 969", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.806676420899066, + 21.428350858077405 + ] + }, + "properties": { + "id": "meter-970", + "maker": "Maker D", + "model": "Model 970", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.499474428344094, + 18.198981216677126 + ] + }, + "properties": { + "id": "meter-971", + "maker": "Maker A", + "model": "Model 971", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.35034257481782, + 29.953613241745234 + ] + }, + "properties": { + "id": "meter-972", + "maker": "Maker I", + "model": "Model 972", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.25560216609833, + 19.88628221887764 + ] + }, + "properties": { + "id": "meter-973", + "maker": "Maker I", + "model": "Model 973", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.658635245553896, + 28.427235028410635 + ] + }, + "properties": { + "id": "meter-974", + "maker": "Maker C", + "model": "Model 974", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.061865023340665, + 24.089388492283728 + ] + }, + "properties": { + "id": "meter-975", + "maker": "Maker D", + "model": "Model 975", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.406107935858806, + 17.971143350741524 + ] + }, + "properties": { + "id": "meter-976", + "maker": "Maker F", + "model": "Model 976", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84668723423682, + 21.36709050487608 + ] + }, + "properties": { + "id": "meter-977", + "maker": "Maker I", + "model": "Model 977", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.42145155740088, + 28.482367248956102 + ] + }, + "properties": { + "id": "meter-978", + "maker": "Maker J", + "model": "Model 978", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.58160670035916, + 24.70980226287113 + ] + }, + "properties": { + "id": "meter-979", + "maker": "Maker F", + "model": "Model 979", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.66762247748962, + 28.28680996686954 + ] + }, + "properties": { + "id": "meter-980", + "maker": "Maker I", + "model": "Model 980", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12344803172448, + 26.249020364011123 + ] + }, + "properties": { + "id": "meter-981", + "maker": "Maker D", + "model": "Model 981", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.51305063470634, + 24.267113377589002 + ] + }, + "properties": { + "id": "meter-982", + "maker": "Maker D", + "model": "Model 982", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.15161159856728, + 26.509733398045345 + ] + }, + "properties": { + "id": "meter-983", + "maker": "Maker G", + "model": "Model 983", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.218786738062, + 29.961816498760168 + ] + }, + "properties": { + "id": "meter-984", + "maker": "Maker C", + "model": "Model 984", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.6110700222927, + 18.204991026323228 + ] + }, + "properties": { + "id": "meter-985", + "maker": "Maker I", + "model": "Model 985", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.73815274453434, + 25.5045094366567 + ] + }, + "properties": { + "id": "meter-986", + "maker": "Maker C", + "model": "Model 986", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.60616834790977, + 28.344523088502267 + ] + }, + "properties": { + "id": "meter-987", + "maker": "Maker H", + "model": "Model 987", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.11062630859541, + 29.86177110723177 + ] + }, + "properties": { + "id": "meter-988", + "maker": "Maker C", + "model": "Model 988", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.84025422170353, + 24.266875007921662 + ] + }, + "properties": { + "id": "meter-989", + "maker": "Maker E", + "model": "Model 989", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.06409229187396, + 26.29327905054946 + ] + }, + "properties": { + "id": "meter-990", + "maker": "Maker F", + "model": "Model 990", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.49677290929538, + 24.75815742908656 + ] + }, + "properties": { + "id": "meter-991", + "maker": "Maker J", + "model": "Model 991", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66318304776908, + 18.38888152055729 + ] + }, + "properties": { + "id": "meter-992", + "maker": "Maker B", + "model": "Model 992", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.52725005358198, + 25.26023181142875 + ] + }, + "properties": { + "id": "meter-993", + "maker": "Maker D", + "model": "Model 993", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02082367846676, + 26.275641905140937 + ] + }, + "properties": { + "id": "meter-994", + "maker": "Maker C", + "model": "Model 994", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.00079339043057, + 30.137531663182518 + ] + }, + "properties": { + "id": "meter-995", + "maker": "Maker G", + "model": "Model 995", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.16471336030818, + 21.603317704250674 + ] + }, + "properties": { + "id": "meter-996", + "maker": "Maker E", + "model": "Model 996", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93609067215471, + 26.576860678229558 + ] + }, + "properties": { + "id": "meter-997", + "maker": "Maker B", + "model": "Model 997", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.68019249540035, + 21.47596160908442 + ] + }, + "properties": { + "id": "meter-998", + "maker": "Maker G", + "model": "Model 998", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49303094978226, + 18.214686171518782 + ] + }, + "properties": { + "id": "meter-999", + "maker": "Maker D", + "model": "Model 999", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.31635828757991, + 21.37957193578637 + ] + }, + "properties": { + "id": "meter-1000", + "maker": "Maker D", + "model": "Model 1000", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.30260648638001, + 29.95247854385172 + ] + }, + "properties": { + "id": "meter-1001", + "maker": "Maker E", + "model": "Model 1001", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.940221992545155, + 26.436825201821698 + ] + }, + "properties": { + "id": "meter-1002", + "maker": "Maker A", + "model": "Model 1002", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.18310397480892, + 21.72552076399801 + ] + }, + "properties": { + "id": "meter-1003", + "maker": "Maker E", + "model": "Model 1003", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.901879454058374, + 21.412277736026972 + ] + }, + "properties": { + "id": "meter-1004", + "maker": "Maker B", + "model": "Model 1004", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.40704166718077, + 20.000922517626826 + ] + }, + "properties": { + "id": "meter-1005", + "maker": "Maker I", + "model": "Model 1005", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.712194720953114, + 28.428864336162157 + ] + }, + "properties": { + "id": "meter-1006", + "maker": "Maker H", + "model": "Model 1006", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.551083870583994, + 24.47588620592115 + ] + }, + "properties": { + "id": "meter-1007", + "maker": "Maker E", + "model": "Model 1007", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71723567238145, + 18.525408112947908 + ] + }, + "properties": { + "id": "meter-1008", + "maker": "Maker A", + "model": "Model 1008", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.78748906934728, + 21.440339449964483 + ] + }, + "properties": { + "id": "meter-1009", + "maker": "Maker D", + "model": "Model 1009", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51570769504722, + 28.499444500782825 + ] + }, + "properties": { + "id": "meter-1010", + "maker": "Maker I", + "model": "Model 1010", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14235704592429, + 26.32552346968741 + ] + }, + "properties": { + "id": "meter-1011", + "maker": "Maker H", + "model": "Model 1011", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99767466928968, + 26.46543222532302 + ] + }, + "properties": { + "id": "meter-1012", + "maker": "Maker J", + "model": "Model 1012", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46442914709352, + 20.01162979665182 + ] + }, + "properties": { + "id": "meter-1013", + "maker": "Maker B", + "model": "Model 1013", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.061344695192034, + 24.09019129396228 + ] + }, + "properties": { + "id": "meter-1014", + "maker": "Maker J", + "model": "Model 1014", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.17036626817082, + 24.162542427744096 + ] + }, + "properties": { + "id": "meter-1015", + "maker": "Maker B", + "model": "Model 1015", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.326660965097886, + 29.897945286086088 + ] + }, + "properties": { + "id": "meter-1016", + "maker": "Maker D", + "model": "Model 1016", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.054787170192725, + 30.797177468721628 + ] + }, + "properties": { + "id": "meter-1017", + "maker": "Maker B", + "model": "Model 1017", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.636780830543046, + 27.712606876342534 + ] + }, + "properties": { + "id": "meter-1018", + "maker": "Maker E", + "model": "Model 1018", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06065738654517, + 24.36364491572419 + ] + }, + "properties": { + "id": "meter-1019", + "maker": "Maker A", + "model": "Model 1019", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.055022787385646, + 29.925316385618164 + ] + }, + "properties": { + "id": "meter-1020", + "maker": "Maker G", + "model": "Model 1020", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96850116626579, + 26.28795707192256 + ] + }, + "properties": { + "id": "meter-1021", + "maker": "Maker H", + "model": "Model 1021", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.70843556654233, + 28.365609462383027 + ] + }, + "properties": { + "id": "meter-1022", + "maker": "Maker I", + "model": "Model 1022", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.52968188339931, + 19.99454465127042 + ] + }, + "properties": { + "id": "meter-1023", + "maker": "Maker C", + "model": "Model 1023", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03833249987083, + 26.455141880083517 + ] + }, + "properties": { + "id": "meter-1024", + "maker": "Maker B", + "model": "Model 1024", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.63020820425806, + 20.02642003913883 + ] + }, + "properties": { + "id": "meter-1025", + "maker": "Maker J", + "model": "Model 1025", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.529779347610834, + 19.81198231794614 + ] + }, + "properties": { + "id": "meter-1026", + "maker": "Maker G", + "model": "Model 1026", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.77979519893671, + 18.32424653580257 + ] + }, + "properties": { + "id": "meter-1027", + "maker": "Maker D", + "model": "Model 1027", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.515085935179115, + 24.327870887412786 + ] + }, + "properties": { + "id": "meter-1028", + "maker": "Maker J", + "model": "Model 1028", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.181196836833614, + 26.287279295524453 + ] + }, + "properties": { + "id": "meter-1029", + "maker": "Maker B", + "model": "Model 1029", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94260871591494, + 26.620126683490444 + ] + }, + "properties": { + "id": "meter-1030", + "maker": "Maker G", + "model": "Model 1030", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.00595521470165, + 31.2735763190113 + ] + }, + "properties": { + "id": "meter-1031", + "maker": "Maker F", + "model": "Model 1031", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.089902397426556, + 26.42969040598806 + ] + }, + "properties": { + "id": "meter-1032", + "maker": "Maker C", + "model": "Model 1032", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.63072568610546, + 25.350209675200894 + ] + }, + "properties": { + "id": "meter-1033", + "maker": "Maker J", + "model": "Model 1033", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93180346325406, + 26.321753535640266 + ] + }, + "properties": { + "id": "meter-1034", + "maker": "Maker I", + "model": "Model 1034", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.48876591043629, + 28.38948701202224 + ] + }, + "properties": { + "id": "meter-1035", + "maker": "Maker J", + "model": "Model 1035", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.420641662887334, + 20.06278214985228 + ] + }, + "properties": { + "id": "meter-1036", + "maker": "Maker D", + "model": "Model 1036", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24022577574538, + 21.492399837575604 + ] + }, + "properties": { + "id": "meter-1037", + "maker": "Maker D", + "model": "Model 1037", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05123983005028, + 24.074411242094694 + ] + }, + "properties": { + "id": "meter-1038", + "maker": "Maker B", + "model": "Model 1038", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.715236970167105, + 18.30269762917101 + ] + }, + "properties": { + "id": "meter-1039", + "maker": "Maker C", + "model": "Model 1039", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.690845370410216, + 24.44497327894135 + ] + }, + "properties": { + "id": "meter-1040", + "maker": "Maker E", + "model": "Model 1040", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.43743388880892, + 27.60298171585901 + ] + }, + "properties": { + "id": "meter-1041", + "maker": "Maker J", + "model": "Model 1041", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01861530010868, + 26.508340804320916 + ] + }, + "properties": { + "id": "meter-1042", + "maker": "Maker D", + "model": "Model 1042", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.013343705912476, + 31.006511882215918 + ] + }, + "properties": { + "id": "meter-1043", + "maker": "Maker E", + "model": "Model 1043", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23539619084269, + 21.45568827979198 + ] + }, + "properties": { + "id": "meter-1044", + "maker": "Maker D", + "model": "Model 1044", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.184193771495345, + 30.191173906649304 + ] + }, + "properties": { + "id": "meter-1045", + "maker": "Maker D", + "model": "Model 1045", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51599366515192, + 28.31143429600359 + ] + }, + "properties": { + "id": "meter-1046", + "maker": "Maker F", + "model": "Model 1046", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.269239392182975, + 21.487746092154037 + ] + }, + "properties": { + "id": "meter-1047", + "maker": "Maker D", + "model": "Model 1047", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12550352108554, + 17.460245765163254 + ] + }, + "properties": { + "id": "meter-1048", + "maker": "Maker C", + "model": "Model 1048", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96903347901152, + 26.376315404047062 + ] + }, + "properties": { + "id": "meter-1049", + "maker": "Maker H", + "model": "Model 1049", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.89621887712603, + 26.228356189820282 + ] + }, + "properties": { + "id": "meter-1050", + "maker": "Maker C", + "model": "Model 1050", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.51554711302392, + 24.71212436989994 + ] + }, + "properties": { + "id": "meter-1051", + "maker": "Maker D", + "model": "Model 1051", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.38064089021492, + 29.99125841447274 + ] + }, + "properties": { + "id": "meter-1052", + "maker": "Maker F", + "model": "Model 1052", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.948453639901096, + 26.32115764163862 + ] + }, + "properties": { + "id": "meter-1053", + "maker": "Maker A", + "model": "Model 1053", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.62542178220912, + 18.28650009331718 + ] + }, + "properties": { + "id": "meter-1054", + "maker": "Maker A", + "model": "Model 1054", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92329412492395, + 26.615671025661037 + ] + }, + "properties": { + "id": "meter-1055", + "maker": "Maker G", + "model": "Model 1055", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.15291180380944, + 21.30693666265891 + ] + }, + "properties": { + "id": "meter-1056", + "maker": "Maker F", + "model": "Model 1056", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.80240290746893, + 28.437805988877866 + ] + }, + "properties": { + "id": "meter-1057", + "maker": "Maker D", + "model": "Model 1057", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.78700326965846, + 24.617818852224207 + ] + }, + "properties": { + "id": "meter-1058", + "maker": "Maker J", + "model": "Model 1058", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.234104486873775, + 21.50257810521615 + ] + }, + "properties": { + "id": "meter-1059", + "maker": "Maker B", + "model": "Model 1059", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48979660916465, + 19.96311535871754 + ] + }, + "properties": { + "id": "meter-1060", + "maker": "Maker D", + "model": "Model 1060", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65360240439462, + 27.55691224915456 + ] + }, + "properties": { + "id": "meter-1061", + "maker": "Maker G", + "model": "Model 1061", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.64032091330035, + 24.671646722359675 + ] + }, + "properties": { + "id": "meter-1062", + "maker": "Maker H", + "model": "Model 1062", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.71862736878887, + 24.554081739032156 + ] + }, + "properties": { + "id": "meter-1063", + "maker": "Maker J", + "model": "Model 1063", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.479675589437896, + 19.800809942948884 + ] + }, + "properties": { + "id": "meter-1064", + "maker": "Maker J", + "model": "Model 1064", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.421647465475566, + 19.973485669061034 + ] + }, + "properties": { + "id": "meter-1065", + "maker": "Maker E", + "model": "Model 1065", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17841248863565, + 26.355790036267297 + ] + }, + "properties": { + "id": "meter-1066", + "maker": "Maker B", + "model": "Model 1066", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.117231214387544, + 26.43170025373201 + ] + }, + "properties": { + "id": "meter-1067", + "maker": "Maker H", + "model": "Model 1067", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.73446918390539, + 25.4542064541427 + ] + }, + "properties": { + "id": "meter-1068", + "maker": "Maker B", + "model": "Model 1068", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05372822460254, + 26.243015585667923 + ] + }, + "properties": { + "id": "meter-1069", + "maker": "Maker F", + "model": "Model 1069", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99719681142892, + 26.267927105407903 + ] + }, + "properties": { + "id": "meter-1070", + "maker": "Maker C", + "model": "Model 1070", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.44096828906785, + 20.12935996366282 + ] + }, + "properties": { + "id": "meter-1071", + "maker": "Maker I", + "model": "Model 1071", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.83563118271576, + 21.511028165157782 + ] + }, + "properties": { + "id": "meter-1072", + "maker": "Maker H", + "model": "Model 1072", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.823215842784386, + 24.634513285545545 + ] + }, + "properties": { + "id": "meter-1073", + "maker": "Maker G", + "model": "Model 1073", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.238450359657186, + 19.975071708094518 + ] + }, + "properties": { + "id": "meter-1074", + "maker": "Maker D", + "model": "Model 1074", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.57140422960828, + 17.93918597652211 + ] + }, + "properties": { + "id": "meter-1075", + "maker": "Maker A", + "model": "Model 1075", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.87574660117711, + 21.417737465465233 + ] + }, + "properties": { + "id": "meter-1076", + "maker": "Maker I", + "model": "Model 1076", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.442523086368844, + 28.56356788142883 + ] + }, + "properties": { + "id": "meter-1077", + "maker": "Maker E", + "model": "Model 1077", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.444298815049, + 25.60488941828838 + ] + }, + "properties": { + "id": "meter-1078", + "maker": "Maker A", + "model": "Model 1078", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.713108194160164, + 24.647554210281445 + ] + }, + "properties": { + "id": "meter-1079", + "maker": "Maker H", + "model": "Model 1079", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.671384649960956, + 25.457071106757464 + ] + }, + "properties": { + "id": "meter-1080", + "maker": "Maker A", + "model": "Model 1080", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.88586053992582, + 18.187885460623455 + ] + }, + "properties": { + "id": "meter-1081", + "maker": "Maker F", + "model": "Model 1081", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.561327459136535, + 27.482176864294424 + ] + }, + "properties": { + "id": "meter-1082", + "maker": "Maker A", + "model": "Model 1082", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.0465739227646, + 31.02614499513549 + ] + }, + "properties": { + "id": "meter-1083", + "maker": "Maker J", + "model": "Model 1083", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.934847445164124, + 27.377769656523974 + ] + }, + "properties": { + "id": "meter-1084", + "maker": "Maker J", + "model": "Model 1084", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.56728112099025, + 18.374282293075083 + ] + }, + "properties": { + "id": "meter-1085", + "maker": "Maker H", + "model": "Model 1085", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.678527400167, + 27.386168025132907 + ] + }, + "properties": { + "id": "meter-1086", + "maker": "Maker G", + "model": "Model 1086", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.02084891549894, + 30.984734118140953 + ] + }, + "properties": { + "id": "meter-1087", + "maker": "Maker E", + "model": "Model 1087", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.770649501025225, + 24.662246904991168 + ] + }, + "properties": { + "id": "meter-1088", + "maker": "Maker H", + "model": "Model 1088", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10685104199122, + 17.504597875355174 + ] + }, + "properties": { + "id": "meter-1089", + "maker": "Maker C", + "model": "Model 1089", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.59322367074155, + 28.693014835061305 + ] + }, + "properties": { + "id": "meter-1090", + "maker": "Maker D", + "model": "Model 1090", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.793550171057575, + 18.220310797083087 + ] + }, + "properties": { + "id": "meter-1091", + "maker": "Maker I", + "model": "Model 1091", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.576691430064464, + 25.2721638205162 + ] + }, + "properties": { + "id": "meter-1092", + "maker": "Maker D", + "model": "Model 1092", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.156033997260934, + 17.49827269327743 + ] + }, + "properties": { + "id": "meter-1093", + "maker": "Maker F", + "model": "Model 1093", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24075912505269, + 21.477304159986456 + ] + }, + "properties": { + "id": "meter-1094", + "maker": "Maker E", + "model": "Model 1094", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95442510786366, + 26.419183420059245 + ] + }, + "properties": { + "id": "meter-1095", + "maker": "Maker C", + "model": "Model 1095", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.63626611725364, + 27.639833019164126 + ] + }, + "properties": { + "id": "meter-1096", + "maker": "Maker A", + "model": "Model 1096", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.54532266832495, + 24.565134304704625 + ] + }, + "properties": { + "id": "meter-1097", + "maker": "Maker H", + "model": "Model 1097", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6221481175065, + 27.799877535606328 + ] + }, + "properties": { + "id": "meter-1098", + "maker": "Maker D", + "model": "Model 1098", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.12660224569374, + 29.96388047830205 + ] + }, + "properties": { + "id": "meter-1099", + "maker": "Maker I", + "model": "Model 1099", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.84695375621653, + 18.527248428221643 + ] + }, + "properties": { + "id": "meter-1100", + "maker": "Maker A", + "model": "Model 1100", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.53046056600565, + 28.561028857899363 + ] + }, + "properties": { + "id": "meter-1101", + "maker": "Maker A", + "model": "Model 1101", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.84012398060737, + 27.56343058598838 + ] + }, + "properties": { + "id": "meter-1102", + "maker": "Maker A", + "model": "Model 1102", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.216819149821475, + 30.096308924647968 + ] + }, + "properties": { + "id": "meter-1103", + "maker": "Maker G", + "model": "Model 1103", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.57880118913434, + 28.344562416828715 + ] + }, + "properties": { + "id": "meter-1104", + "maker": "Maker H", + "model": "Model 1104", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21776580961014, + 21.38958374302125 + ] + }, + "properties": { + "id": "meter-1105", + "maker": "Maker E", + "model": "Model 1105", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.17696499427802, + 30.04946548423661 + ] + }, + "properties": { + "id": "meter-1106", + "maker": "Maker F", + "model": "Model 1106", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.750801199602016, + 27.614421816046008 + ] + }, + "properties": { + "id": "meter-1107", + "maker": "Maker D", + "model": "Model 1107", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.22227182148316, + 21.267457472495003 + ] + }, + "properties": { + "id": "meter-1108", + "maker": "Maker I", + "model": "Model 1108", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.739320983740924, + 28.496762088593005 + ] + }, + "properties": { + "id": "meter-1109", + "maker": "Maker G", + "model": "Model 1109", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.811370617014276, + 21.1108784571196 + ] + }, + "properties": { + "id": "meter-1110", + "maker": "Maker D", + "model": "Model 1110", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.066089829326245, + 26.38902975523823 + ] + }, + "properties": { + "id": "meter-1111", + "maker": "Maker I", + "model": "Model 1111", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.15398591732004, + 24.08581641011359 + ] + }, + "properties": { + "id": "meter-1112", + "maker": "Maker E", + "model": "Model 1112", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.009662419239575, + 31.038902374791324 + ] + }, + "properties": { + "id": "meter-1113", + "maker": "Maker A", + "model": "Model 1113", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.722051538677995, + 18.304931726226346 + ] + }, + "properties": { + "id": "meter-1114", + "maker": "Maker G", + "model": "Model 1114", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.25370741371698, + 19.829318130083706 + ] + }, + "properties": { + "id": "meter-1115", + "maker": "Maker H", + "model": "Model 1115", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.96552903891189, + 30.031680122311283 + ] + }, + "properties": { + "id": "meter-1116", + "maker": "Maker A", + "model": "Model 1116", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.95859135590306, + 17.63092072891651 + ] + }, + "properties": { + "id": "meter-1117", + "maker": "Maker C", + "model": "Model 1117", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.04962417955354, + 30.853768338306935 + ] + }, + "properties": { + "id": "meter-1118", + "maker": "Maker A", + "model": "Model 1118", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00543227571669, + 26.555102407252516 + ] + }, + "properties": { + "id": "meter-1119", + "maker": "Maker E", + "model": "Model 1119", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.639983269681224, + 19.834513430983083 + ] + }, + "properties": { + "id": "meter-1120", + "maker": "Maker I", + "model": "Model 1120", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53435115758699, + 18.25585674515404 + ] + }, + "properties": { + "id": "meter-1121", + "maker": "Maker F", + "model": "Model 1121", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.61135156266031, + 28.36682104402996 + ] + }, + "properties": { + "id": "meter-1122", + "maker": "Maker J", + "model": "Model 1122", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.189881266715304, + 26.172244486099274 + ] + }, + "properties": { + "id": "meter-1123", + "maker": "Maker H", + "model": "Model 1123", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.411538385509104, + 21.359516994541966 + ] + }, + "properties": { + "id": "meter-1124", + "maker": "Maker H", + "model": "Model 1124", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.21430672457074, + 17.433880986164993 + ] + }, + "properties": { + "id": "meter-1125", + "maker": "Maker I", + "model": "Model 1125", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.018128155164206, + 21.206886143202343 + ] + }, + "properties": { + "id": "meter-1126", + "maker": "Maker B", + "model": "Model 1126", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.056463984563614, + 26.20128070965789 + ] + }, + "properties": { + "id": "meter-1127", + "maker": "Maker H", + "model": "Model 1127", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.00409586910149, + 31.001029201557767 + ] + }, + "properties": { + "id": "meter-1128", + "maker": "Maker D", + "model": "Model 1128", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.95900024084351, + 30.73817835125043 + ] + }, + "properties": { + "id": "meter-1129", + "maker": "Maker J", + "model": "Model 1129", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.68289413143389, + 27.50692698985633 + ] + }, + "properties": { + "id": "meter-1130", + "maker": "Maker G", + "model": "Model 1130", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15606677555308, + 26.357346969161068 + ] + }, + "properties": { + "id": "meter-1131", + "maker": "Maker B", + "model": "Model 1131", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.24842554595833, + 17.575297851796666 + ] + }, + "properties": { + "id": "meter-1132", + "maker": "Maker E", + "model": "Model 1132", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.08306812160551, + 31.048078071672983 + ] + }, + "properties": { + "id": "meter-1133", + "maker": "Maker E", + "model": "Model 1133", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.21954588745069, + 17.400465955335168 + ] + }, + "properties": { + "id": "meter-1134", + "maker": "Maker B", + "model": "Model 1134", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.93302246370906, + 30.91163469991141 + ] + }, + "properties": { + "id": "meter-1135", + "maker": "Maker H", + "model": "Model 1135", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.40159449559709, + 21.54649644408049 + ] + }, + "properties": { + "id": "meter-1136", + "maker": "Maker A", + "model": "Model 1136", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.26251209156486, + 29.89932933882984 + ] + }, + "properties": { + "id": "meter-1137", + "maker": "Maker A", + "model": "Model 1137", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.583198970403465, + 27.301942520766723 + ] + }, + "properties": { + "id": "meter-1138", + "maker": "Maker C", + "model": "Model 1138", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.488546650549516, + 18.277385090939948 + ] + }, + "properties": { + "id": "meter-1139", + "maker": "Maker B", + "model": "Model 1139", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.920070501300714, + 26.23754852939528 + ] + }, + "properties": { + "id": "meter-1140", + "maker": "Maker C", + "model": "Model 1140", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14970868470862, + 26.273174215846215 + ] + }, + "properties": { + "id": "meter-1141", + "maker": "Maker F", + "model": "Model 1141", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.422125702820445, + 28.624328528897124 + ] + }, + "properties": { + "id": "meter-1142", + "maker": "Maker J", + "model": "Model 1142", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.209622458538355, + 26.356693049430707 + ] + }, + "properties": { + "id": "meter-1143", + "maker": "Maker J", + "model": "Model 1143", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25316515496221, + 21.49417590784858 + ] + }, + "properties": { + "id": "meter-1144", + "maker": "Maker F", + "model": "Model 1144", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10908473134778, + 26.33007623689977 + ] + }, + "properties": { + "id": "meter-1145", + "maker": "Maker A", + "model": "Model 1145", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68602355741961, + 18.522710956228313 + ] + }, + "properties": { + "id": "meter-1146", + "maker": "Maker E", + "model": "Model 1146", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.692362933004496, + 24.762153793447446 + ] + }, + "properties": { + "id": "meter-1147", + "maker": "Maker H", + "model": "Model 1147", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65210476515162, + 24.696956524098816 + ] + }, + "properties": { + "id": "meter-1148", + "maker": "Maker A", + "model": "Model 1148", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58675381291056, + 25.343125330181405 + ] + }, + "properties": { + "id": "meter-1149", + "maker": "Maker D", + "model": "Model 1149", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.965559378554225, + 26.40289233899736 + ] + }, + "properties": { + "id": "meter-1150", + "maker": "Maker B", + "model": "Model 1150", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.81961822935678, + 26.436370449550196 + ] + }, + "properties": { + "id": "meter-1151", + "maker": "Maker F", + "model": "Model 1151", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.071114831733766, + 26.43176367757585 + ] + }, + "properties": { + "id": "meter-1152", + "maker": "Maker H", + "model": "Model 1152", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.75226446717583, + 24.664232447853955 + ] + }, + "properties": { + "id": "meter-1153", + "maker": "Maker D", + "model": "Model 1153", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.245028902464895, + 17.491740240378522 + ] + }, + "properties": { + "id": "meter-1154", + "maker": "Maker D", + "model": "Model 1154", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.56988181979409, + 24.524234395832945 + ] + }, + "properties": { + "id": "meter-1155", + "maker": "Maker D", + "model": "Model 1155", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.57894932074009, + 20.023276184057842 + ] + }, + "properties": { + "id": "meter-1156", + "maker": "Maker A", + "model": "Model 1156", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19728048174048, + 26.288064674192402 + ] + }, + "properties": { + "id": "meter-1157", + "maker": "Maker H", + "model": "Model 1157", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.617998476978244, + 27.224217057583118 + ] + }, + "properties": { + "id": "meter-1158", + "maker": "Maker A", + "model": "Model 1158", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00922743445247, + 26.504825457579326 + ] + }, + "properties": { + "id": "meter-1159", + "maker": "Maker I", + "model": "Model 1159", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.16832259887575, + 26.412823522073488 + ] + }, + "properties": { + "id": "meter-1160", + "maker": "Maker B", + "model": "Model 1160", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.86383485389693, + 24.201632158764532 + ] + }, + "properties": { + "id": "meter-1161", + "maker": "Maker I", + "model": "Model 1161", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.575108785822664, + 24.761326613965064 + ] + }, + "properties": { + "id": "meter-1162", + "maker": "Maker F", + "model": "Model 1162", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.949776727565585, + 17.732169277087866 + ] + }, + "properties": { + "id": "meter-1163", + "maker": "Maker F", + "model": "Model 1163", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.31825955066737, + 25.48227355283221 + ] + }, + "properties": { + "id": "meter-1164", + "maker": "Maker C", + "model": "Model 1164", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.06869547765673, + 30.988739548889033 + ] + }, + "properties": { + "id": "meter-1165", + "maker": "Maker J", + "model": "Model 1165", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.25105709331627, + 29.74788298320691 + ] + }, + "properties": { + "id": "meter-1166", + "maker": "Maker D", + "model": "Model 1166", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.174265579695835, + 23.995804785139274 + ] + }, + "properties": { + "id": "meter-1167", + "maker": "Maker I", + "model": "Model 1167", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67513181284542, + 24.708961870821163 + ] + }, + "properties": { + "id": "meter-1168", + "maker": "Maker F", + "model": "Model 1168", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.814656871859164, + 18.478345428778606 + ] + }, + "properties": { + "id": "meter-1169", + "maker": "Maker D", + "model": "Model 1169", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.49989218216797, + 21.427984796353208 + ] + }, + "properties": { + "id": "meter-1170", + "maker": "Maker A", + "model": "Model 1170", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68961828253614, + 24.71137975368181 + ] + }, + "properties": { + "id": "meter-1171", + "maker": "Maker A", + "model": "Model 1171", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.81844942843004, + 18.090014984106393 + ] + }, + "properties": { + "id": "meter-1172", + "maker": "Maker B", + "model": "Model 1172", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.06080755699206, + 30.829456214168673 + ] + }, + "properties": { + "id": "meter-1173", + "maker": "Maker F", + "model": "Model 1173", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4706879588601, + 19.783584217241824 + ] + }, + "properties": { + "id": "meter-1174", + "maker": "Maker J", + "model": "Model 1174", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61718965349388, + 24.495588673116796 + ] + }, + "properties": { + "id": "meter-1175", + "maker": "Maker A", + "model": "Model 1175", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.742011139968334, + 24.70136356665165 + ] + }, + "properties": { + "id": "meter-1176", + "maker": "Maker C", + "model": "Model 1176", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.811238829458134, + 26.390343087810596 + ] + }, + "properties": { + "id": "meter-1177", + "maker": "Maker H", + "model": "Model 1177", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.041321300487276, + 30.972798922079836 + ] + }, + "properties": { + "id": "meter-1178", + "maker": "Maker F", + "model": "Model 1178", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.18527355238785, + 21.451858671861604 + ] + }, + "properties": { + "id": "meter-1179", + "maker": "Maker F", + "model": "Model 1179", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05154647209608, + 24.099341890664423 + ] + }, + "properties": { + "id": "meter-1180", + "maker": "Maker H", + "model": "Model 1180", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.75056020738376, + 18.31377628241668 + ] + }, + "properties": { + "id": "meter-1181", + "maker": "Maker E", + "model": "Model 1181", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.203934246117115, + 26.27700828494439 + ] + }, + "properties": { + "id": "meter-1182", + "maker": "Maker H", + "model": "Model 1182", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65429611627092, + 27.381524858148236 + ] + }, + "properties": { + "id": "meter-1183", + "maker": "Maker C", + "model": "Model 1183", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.170564138276895, + 21.722675772982008 + ] + }, + "properties": { + "id": "meter-1184", + "maker": "Maker G", + "model": "Model 1184", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12694677287687, + 26.343338858840816 + ] + }, + "properties": { + "id": "meter-1185", + "maker": "Maker F", + "model": "Model 1185", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.738750192116214, + 24.95880368215925 + ] + }, + "properties": { + "id": "meter-1186", + "maker": "Maker B", + "model": "Model 1186", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47487817156384, + 27.608646091528133 + ] + }, + "properties": { + "id": "meter-1187", + "maker": "Maker C", + "model": "Model 1187", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.74773376765088, + 25.5289971735743 + ] + }, + "properties": { + "id": "meter-1188", + "maker": "Maker F", + "model": "Model 1188", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19856619025775, + 26.268961019306882 + ] + }, + "properties": { + "id": "meter-1189", + "maker": "Maker C", + "model": "Model 1189", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.05097499138678, + 31.008550330177677 + ] + }, + "properties": { + "id": "meter-1190", + "maker": "Maker C", + "model": "Model 1190", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.4835557389477, + 18.35054295872337 + ] + }, + "properties": { + "id": "meter-1191", + "maker": "Maker B", + "model": "Model 1191", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.25647171173721, + 26.25556551125051 + ] + }, + "properties": { + "id": "meter-1192", + "maker": "Maker F", + "model": "Model 1192", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.81293763678642, + 26.705188494906185 + ] + }, + "properties": { + "id": "meter-1193", + "maker": "Maker H", + "model": "Model 1193", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.01716111078705, + 21.52179008635746 + ] + }, + "properties": { + "id": "meter-1194", + "maker": "Maker A", + "model": "Model 1194", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.75486074610753, + 25.312616709721237 + ] + }, + "properties": { + "id": "meter-1195", + "maker": "Maker H", + "model": "Model 1195", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12283522908437, + 26.092929623054957 + ] + }, + "properties": { + "id": "meter-1196", + "maker": "Maker G", + "model": "Model 1196", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.95448598192868, + 21.139285763461707 + ] + }, + "properties": { + "id": "meter-1197", + "maker": "Maker E", + "model": "Model 1197", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.51038339967076, + 18.08085181424029 + ] + }, + "properties": { + "id": "meter-1198", + "maker": "Maker J", + "model": "Model 1198", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.919076714458164, + 21.32057088651927 + ] + }, + "properties": { + "id": "meter-1199", + "maker": "Maker E", + "model": "Model 1199", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.75486814631506, + 24.378389279937107 + ] + }, + "properties": { + "id": "meter-1200", + "maker": "Maker J", + "model": "Model 1200", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10372638605922, + 26.292565233507656 + ] + }, + "properties": { + "id": "meter-1201", + "maker": "Maker B", + "model": "Model 1201", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.049761958427816, + 26.412220890269094 + ] + }, + "properties": { + "id": "meter-1202", + "maker": "Maker G", + "model": "Model 1202", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.19881756056492, + 21.60515168478659 + ] + }, + "properties": { + "id": "meter-1203", + "maker": "Maker H", + "model": "Model 1203", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49983469346583, + 18.22380960301204 + ] + }, + "properties": { + "id": "meter-1204", + "maker": "Maker G", + "model": "Model 1204", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.69885080070157, + 24.416729674285993 + ] + }, + "properties": { + "id": "meter-1205", + "maker": "Maker C", + "model": "Model 1205", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.85665147240221, + 24.621049141392067 + ] + }, + "properties": { + "id": "meter-1206", + "maker": "Maker E", + "model": "Model 1206", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.6815114235537, + 25.37999775146202 + ] + }, + "properties": { + "id": "meter-1207", + "maker": "Maker J", + "model": "Model 1207", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.98804562851127, + 21.535964850204113 + ] + }, + "properties": { + "id": "meter-1208", + "maker": "Maker G", + "model": "Model 1208", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.07202555109626, + 26.26511333539226 + ] + }, + "properties": { + "id": "meter-1209", + "maker": "Maker E", + "model": "Model 1209", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.55341395268464, + 18.21353315691855 + ] + }, + "properties": { + "id": "meter-1210", + "maker": "Maker F", + "model": "Model 1210", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.323276060181115, + 30.04657437991436 + ] + }, + "properties": { + "id": "meter-1211", + "maker": "Maker F", + "model": "Model 1211", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.30351189689103, + 21.604121861552848 + ] + }, + "properties": { + "id": "meter-1212", + "maker": "Maker C", + "model": "Model 1212", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.320283835418444, + 20.273185158374663 + ] + }, + "properties": { + "id": "meter-1213", + "maker": "Maker C", + "model": "Model 1213", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.99034872358397, + 21.49378041798185 + ] + }, + "properties": { + "id": "meter-1214", + "maker": "Maker C", + "model": "Model 1214", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21871818149609, + 21.577159572852036 + ] + }, + "properties": { + "id": "meter-1215", + "maker": "Maker D", + "model": "Model 1215", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91270164444822, + 26.60521577124207 + ] + }, + "properties": { + "id": "meter-1216", + "maker": "Maker E", + "model": "Model 1216", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.50813037155753, + 20.273037686957377 + ] + }, + "properties": { + "id": "meter-1217", + "maker": "Maker J", + "model": "Model 1217", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.705519343571375, + 25.31966907414042 + ] + }, + "properties": { + "id": "meter-1218", + "maker": "Maker A", + "model": "Model 1218", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.83137554421153, + 21.39214860127824 + ] + }, + "properties": { + "id": "meter-1219", + "maker": "Maker J", + "model": "Model 1219", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65653796341429, + 27.455163733896963 + ] + }, + "properties": { + "id": "meter-1220", + "maker": "Maker I", + "model": "Model 1220", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.293748453883026, + 21.274067124212383 + ] + }, + "properties": { + "id": "meter-1221", + "maker": "Maker E", + "model": "Model 1221", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88830999192117, + 21.115307939626994 + ] + }, + "properties": { + "id": "meter-1222", + "maker": "Maker F", + "model": "Model 1222", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.631144943288746, + 28.405784176830068 + ] + }, + "properties": { + "id": "meter-1223", + "maker": "Maker J", + "model": "Model 1223", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.16656702156141, + 17.60632549796405 + ] + }, + "properties": { + "id": "meter-1224", + "maker": "Maker C", + "model": "Model 1224", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.313010729816625, + 31.08029430771422 + ] + }, + "properties": { + "id": "meter-1225", + "maker": "Maker H", + "model": "Model 1225", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.92919953432002, + 24.236527625862955 + ] + }, + "properties": { + "id": "meter-1226", + "maker": "Maker A", + "model": "Model 1226", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.79722464710733, + 27.733914422186306 + ] + }, + "properties": { + "id": "meter-1227", + "maker": "Maker B", + "model": "Model 1227", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.77540619965965, + 27.55726987425978 + ] + }, + "properties": { + "id": "meter-1228", + "maker": "Maker E", + "model": "Model 1228", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.60616205104871, + 18.095485979836145 + ] + }, + "properties": { + "id": "meter-1229", + "maker": "Maker G", + "model": "Model 1229", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.59805953055907, + 18.287911391203593 + ] + }, + "properties": { + "id": "meter-1230", + "maker": "Maker H", + "model": "Model 1230", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.609536012194546, + 24.52173786449433 + ] + }, + "properties": { + "id": "meter-1231", + "maker": "Maker F", + "model": "Model 1231", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.76111004937652, + 26.156148541330243 + ] + }, + "properties": { + "id": "meter-1232", + "maker": "Maker E", + "model": "Model 1232", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.751137377319296, + 18.33054201691482 + ] + }, + "properties": { + "id": "meter-1233", + "maker": "Maker G", + "model": "Model 1233", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.33568049416163, + 29.883774315496776 + ] + }, + "properties": { + "id": "meter-1234", + "maker": "Maker H", + "model": "Model 1234", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.245448146150984, + 30.865809552766535 + ] + }, + "properties": { + "id": "meter-1235", + "maker": "Maker B", + "model": "Model 1235", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.257761224367854, + 21.352547783525107 + ] + }, + "properties": { + "id": "meter-1236", + "maker": "Maker B", + "model": "Model 1236", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.76886027889264, + 24.726497709173763 + ] + }, + "properties": { + "id": "meter-1237", + "maker": "Maker I", + "model": "Model 1237", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.725353654835295, + 21.567897641601387 + ] + }, + "properties": { + "id": "meter-1238", + "maker": "Maker B", + "model": "Model 1238", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.02126086207853, + 30.710797255890736 + ] + }, + "properties": { + "id": "meter-1239", + "maker": "Maker A", + "model": "Model 1239", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42047623321239, + 20.049000064903918 + ] + }, + "properties": { + "id": "meter-1240", + "maker": "Maker G", + "model": "Model 1240", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08915667329292, + 17.668550608633442 + ] + }, + "properties": { + "id": "meter-1241", + "maker": "Maker D", + "model": "Model 1241", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.26117256723914, + 30.805237072309 + ] + }, + "properties": { + "id": "meter-1242", + "maker": "Maker B", + "model": "Model 1242", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.168386719107055, + 21.472657752256826 + ] + }, + "properties": { + "id": "meter-1243", + "maker": "Maker A", + "model": "Model 1243", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.32155396452158, + 30.078169546765675 + ] + }, + "properties": { + "id": "meter-1244", + "maker": "Maker G", + "model": "Model 1244", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.38904892065327, + 25.31985812663377 + ] + }, + "properties": { + "id": "meter-1245", + "maker": "Maker E", + "model": "Model 1245", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.88661797805647, + 24.719395524628464 + ] + }, + "properties": { + "id": "meter-1246", + "maker": "Maker B", + "model": "Model 1246", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12432933751223, + 26.33914210423035 + ] + }, + "properties": { + "id": "meter-1247", + "maker": "Maker D", + "model": "Model 1247", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20947448057621, + 26.276292676773426 + ] + }, + "properties": { + "id": "meter-1248", + "maker": "Maker F", + "model": "Model 1248", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.95556311392857, + 30.95754110599041 + ] + }, + "properties": { + "id": "meter-1249", + "maker": "Maker A", + "model": "Model 1249", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.159780878178786, + 26.306654443394475 + ] + }, + "properties": { + "id": "meter-1250", + "maker": "Maker B", + "model": "Model 1250", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11379377312521, + 26.286604068388364 + ] + }, + "properties": { + "id": "meter-1251", + "maker": "Maker B", + "model": "Model 1251", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.010153120133175, + 26.389268705015645 + ] + }, + "properties": { + "id": "meter-1252", + "maker": "Maker F", + "model": "Model 1252", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.28820990668985, + 21.513245445251172 + ] + }, + "properties": { + "id": "meter-1253", + "maker": "Maker H", + "model": "Model 1253", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.62872629389347, + 28.560569017861685 + ] + }, + "properties": { + "id": "meter-1254", + "maker": "Maker H", + "model": "Model 1254", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.005116328433886, + 26.505836666042725 + ] + }, + "properties": { + "id": "meter-1255", + "maker": "Maker I", + "model": "Model 1255", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.5374406174436, + 17.9707341114076 + ] + }, + "properties": { + "id": "meter-1256", + "maker": "Maker H", + "model": "Model 1256", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.40977530999311, + 19.99650736714793 + ] + }, + "properties": { + "id": "meter-1257", + "maker": "Maker F", + "model": "Model 1257", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.90654660075958, + 26.479122715059525 + ] + }, + "properties": { + "id": "meter-1258", + "maker": "Maker I", + "model": "Model 1258", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.520579353888, + 18.003428751182497 + ] + }, + "properties": { + "id": "meter-1259", + "maker": "Maker C", + "model": "Model 1259", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.119800177580544, + 26.25127772879241 + ] + }, + "properties": { + "id": "meter-1260", + "maker": "Maker A", + "model": "Model 1260", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.199935740456894, + 29.856216292265547 + ] + }, + "properties": { + "id": "meter-1261", + "maker": "Maker A", + "model": "Model 1261", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.978844264784264, + 26.374262568816068 + ] + }, + "properties": { + "id": "meter-1262", + "maker": "Maker C", + "model": "Model 1262", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11548502289218, + 17.418912262068748 + ] + }, + "properties": { + "id": "meter-1263", + "maker": "Maker A", + "model": "Model 1263", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.19175601893915, + 21.26545240284007 + ] + }, + "properties": { + "id": "meter-1264", + "maker": "Maker A", + "model": "Model 1264", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67532047753113, + 24.713620496870206 + ] + }, + "properties": { + "id": "meter-1265", + "maker": "Maker D", + "model": "Model 1265", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81875854143851, + 21.385987451533456 + ] + }, + "properties": { + "id": "meter-1266", + "maker": "Maker G", + "model": "Model 1266", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.011511786864055, + 21.504267261347287 + ] + }, + "properties": { + "id": "meter-1267", + "maker": "Maker J", + "model": "Model 1267", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.26015304914223, + 17.518571840476042 + ] + }, + "properties": { + "id": "meter-1268", + "maker": "Maker C", + "model": "Model 1268", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.2323895769767, + 30.006490320900845 + ] + }, + "properties": { + "id": "meter-1269", + "maker": "Maker I", + "model": "Model 1269", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07394004965978, + 26.22878586654977 + ] + }, + "properties": { + "id": "meter-1270", + "maker": "Maker E", + "model": "Model 1270", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.067198065489656, + 26.235169233335075 + ] + }, + "properties": { + "id": "meter-1271", + "maker": "Maker I", + "model": "Model 1271", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1487242863504, + 26.173876083756163 + ] + }, + "properties": { + "id": "meter-1272", + "maker": "Maker E", + "model": "Model 1272", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.636871092431655, + 24.531176835206722 + ] + }, + "properties": { + "id": "meter-1273", + "maker": "Maker A", + "model": "Model 1273", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53728128306171, + 18.067370439753937 + ] + }, + "properties": { + "id": "meter-1274", + "maker": "Maker C", + "model": "Model 1274", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58325631876306, + 25.341653579146616 + ] + }, + "properties": { + "id": "meter-1275", + "maker": "Maker H", + "model": "Model 1275", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.225282168353075, + 29.91685966450835 + ] + }, + "properties": { + "id": "meter-1276", + "maker": "Maker E", + "model": "Model 1276", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2786798325554, + 21.44848660315788 + ] + }, + "properties": { + "id": "meter-1277", + "maker": "Maker I", + "model": "Model 1277", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97356037436585, + 26.537296312638713 + ] + }, + "properties": { + "id": "meter-1278", + "maker": "Maker F", + "model": "Model 1278", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68369380167703, + 24.77165044380723 + ] + }, + "properties": { + "id": "meter-1279", + "maker": "Maker A", + "model": "Model 1279", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.501931226513086, + 18.21692623066011 + ] + }, + "properties": { + "id": "meter-1280", + "maker": "Maker I", + "model": "Model 1280", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.5310789744282, + 25.28593271033517 + ] + }, + "properties": { + "id": "meter-1281", + "maker": "Maker B", + "model": "Model 1281", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06810037558615, + 24.08373048011302 + ] + }, + "properties": { + "id": "meter-1282", + "maker": "Maker E", + "model": "Model 1282", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.530194673216386, + 19.90437066668542 + ] + }, + "properties": { + "id": "meter-1283", + "maker": "Maker I", + "model": "Model 1283", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.5956024291007, + 28.421535911265405 + ] + }, + "properties": { + "id": "meter-1284", + "maker": "Maker F", + "model": "Model 1284", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.04866690467558, + 30.110235918860255 + ] + }, + "properties": { + "id": "meter-1285", + "maker": "Maker B", + "model": "Model 1285", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91917456528864, + 26.45203575087888 + ] + }, + "properties": { + "id": "meter-1286", + "maker": "Maker F", + "model": "Model 1286", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.00094546482269, + 24.149527566314184 + ] + }, + "properties": { + "id": "meter-1287", + "maker": "Maker A", + "model": "Model 1287", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68699932130596, + 18.232035534666647 + ] + }, + "properties": { + "id": "meter-1288", + "maker": "Maker H", + "model": "Model 1288", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.76486423805412, + 21.270014989572484 + ] + }, + "properties": { + "id": "meter-1289", + "maker": "Maker B", + "model": "Model 1289", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.72282945752062, + 28.513418780373517 + ] + }, + "properties": { + "id": "meter-1290", + "maker": "Maker D", + "model": "Model 1290", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21976136057829, + 21.427385032020176 + ] + }, + "properties": { + "id": "meter-1291", + "maker": "Maker A", + "model": "Model 1291", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97348761225691, + 26.4259852660581 + ] + }, + "properties": { + "id": "meter-1292", + "maker": "Maker J", + "model": "Model 1292", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.547567331175, + 24.50851224581583 + ] + }, + "properties": { + "id": "meter-1293", + "maker": "Maker H", + "model": "Model 1293", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.096322374656346, + 26.234761516124056 + ] + }, + "properties": { + "id": "meter-1294", + "maker": "Maker C", + "model": "Model 1294", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23664828171623, + 21.60069210107741 + ] + }, + "properties": { + "id": "meter-1295", + "maker": "Maker G", + "model": "Model 1295", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.428393827696645, + 18.18993260763582 + ] + }, + "properties": { + "id": "meter-1296", + "maker": "Maker H", + "model": "Model 1296", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.77003285643825, + 24.911529708189505 + ] + }, + "properties": { + "id": "meter-1297", + "maker": "Maker G", + "model": "Model 1297", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.83093949115249, + 26.402670213946745 + ] + }, + "properties": { + "id": "meter-1298", + "maker": "Maker G", + "model": "Model 1298", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.600522189066275, + 24.313233921063723 + ] + }, + "properties": { + "id": "meter-1299", + "maker": "Maker F", + "model": "Model 1299", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.44149675916217, + 18.08095788641741 + ] + }, + "properties": { + "id": "meter-1300", + "maker": "Maker H", + "model": "Model 1300", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.998369859047, + 26.496852224412525 + ] + }, + "properties": { + "id": "meter-1301", + "maker": "Maker H", + "model": "Model 1301", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68279300056439, + 18.229819253229618 + ] + }, + "properties": { + "id": "meter-1302", + "maker": "Maker B", + "model": "Model 1302", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23048396222921, + 30.038879381868494 + ] + }, + "properties": { + "id": "meter-1303", + "maker": "Maker A", + "model": "Model 1303", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.84579836447905, + 18.298174393275822 + ] + }, + "properties": { + "id": "meter-1304", + "maker": "Maker E", + "model": "Model 1304", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.737473214042744, + 19.961288130104958 + ] + }, + "properties": { + "id": "meter-1305", + "maker": "Maker A", + "model": "Model 1305", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.583605279598615, + 25.333247282735442 + ] + }, + "properties": { + "id": "meter-1306", + "maker": "Maker G", + "model": "Model 1306", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.84805855240678, + 26.582749970225517 + ] + }, + "properties": { + "id": "meter-1307", + "maker": "Maker G", + "model": "Model 1307", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.660848122629226, + 25.449506297058058 + ] + }, + "properties": { + "id": "meter-1308", + "maker": "Maker C", + "model": "Model 1308", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.19751063321354, + 30.077746118205535 + ] + }, + "properties": { + "id": "meter-1309", + "maker": "Maker E", + "model": "Model 1309", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.05695519010701, + 17.490056196635056 + ] + }, + "properties": { + "id": "meter-1310", + "maker": "Maker E", + "model": "Model 1310", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.59540505594476, + 28.401106294489615 + ] + }, + "properties": { + "id": "meter-1311", + "maker": "Maker E", + "model": "Model 1311", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.53407049491425, + 28.358792766383736 + ] + }, + "properties": { + "id": "meter-1312", + "maker": "Maker B", + "model": "Model 1312", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.63623736429713, + 24.68929572433256 + ] + }, + "properties": { + "id": "meter-1313", + "maker": "Maker G", + "model": "Model 1313", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01760185106942, + 17.770140463836878 + ] + }, + "properties": { + "id": "meter-1314", + "maker": "Maker E", + "model": "Model 1314", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.80812961584764, + 21.576684486975015 + ] + }, + "properties": { + "id": "meter-1315", + "maker": "Maker E", + "model": "Model 1315", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.79605474898402, + 18.19505926796132 + ] + }, + "properties": { + "id": "meter-1316", + "maker": "Maker F", + "model": "Model 1316", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61644496280071, + 24.328528460277685 + ] + }, + "properties": { + "id": "meter-1317", + "maker": "Maker B", + "model": "Model 1317", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47213782930169, + 27.702367505371722 + ] + }, + "properties": { + "id": "meter-1318", + "maker": "Maker D", + "model": "Model 1318", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.586237533150374, + 25.419997952720443 + ] + }, + "properties": { + "id": "meter-1319", + "maker": "Maker D", + "model": "Model 1319", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09112974380512, + 26.218480650686857 + ] + }, + "properties": { + "id": "meter-1320", + "maker": "Maker A", + "model": "Model 1320", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50366523640543, + 18.20300900349512 + ] + }, + "properties": { + "id": "meter-1321", + "maker": "Maker H", + "model": "Model 1321", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9982490424851, + 26.249158423381935 + ] + }, + "properties": { + "id": "meter-1322", + "maker": "Maker I", + "model": "Model 1322", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.61532620337619, + 25.364122434416597 + ] + }, + "properties": { + "id": "meter-1323", + "maker": "Maker E", + "model": "Model 1323", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.78221953238564, + 27.467369961975756 + ] + }, + "properties": { + "id": "meter-1324", + "maker": "Maker D", + "model": "Model 1324", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49139512536732, + 17.979093807937627 + ] + }, + "properties": { + "id": "meter-1325", + "maker": "Maker I", + "model": "Model 1325", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.580261558300265, + 28.26563587657278 + ] + }, + "properties": { + "id": "meter-1326", + "maker": "Maker I", + "model": "Model 1326", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03195366910663, + 26.419776969353883 + ] + }, + "properties": { + "id": "meter-1327", + "maker": "Maker A", + "model": "Model 1327", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.51176011495792, + 24.551969727321243 + ] + }, + "properties": { + "id": "meter-1328", + "maker": "Maker H", + "model": "Model 1328", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.063797359475515, + 24.150742671648338 + ] + }, + "properties": { + "id": "meter-1329", + "maker": "Maker E", + "model": "Model 1329", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.8138574661561, + 26.39691239420839 + ] + }, + "properties": { + "id": "meter-1330", + "maker": "Maker E", + "model": "Model 1330", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.2272001555298, + 30.038576647361257 + ] + }, + "properties": { + "id": "meter-1331", + "maker": "Maker A", + "model": "Model 1331", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98204582203739, + 26.28574805312947 + ] + }, + "properties": { + "id": "meter-1332", + "maker": "Maker C", + "model": "Model 1332", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9910991475715, + 26.466659627221112 + ] + }, + "properties": { + "id": "meter-1333", + "maker": "Maker E", + "model": "Model 1333", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.763832503210125, + 18.30721547728786 + ] + }, + "properties": { + "id": "meter-1334", + "maker": "Maker C", + "model": "Model 1334", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.54777479286577, + 28.56884326425531 + ] + }, + "properties": { + "id": "meter-1335", + "maker": "Maker J", + "model": "Model 1335", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0682575964451, + 24.087213667629683 + ] + }, + "properties": { + "id": "meter-1336", + "maker": "Maker E", + "model": "Model 1336", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.34254958194241, + 21.296262682461787 + ] + }, + "properties": { + "id": "meter-1337", + "maker": "Maker I", + "model": "Model 1337", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.7278058110179, + 27.631028758173947 + ] + }, + "properties": { + "id": "meter-1338", + "maker": "Maker H", + "model": "Model 1338", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.463988689528044, + 20.00376980448086 + ] + }, + "properties": { + "id": "meter-1339", + "maker": "Maker D", + "model": "Model 1339", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19493910907999, + 26.394548549673605 + ] + }, + "properties": { + "id": "meter-1340", + "maker": "Maker I", + "model": "Model 1340", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.901264003915145, + 26.161077694510002 + ] + }, + "properties": { + "id": "meter-1341", + "maker": "Maker B", + "model": "Model 1341", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.532542806361796, + 28.321222875872184 + ] + }, + "properties": { + "id": "meter-1342", + "maker": "Maker F", + "model": "Model 1342", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.687435552456556, + 27.687604236210163 + ] + }, + "properties": { + "id": "meter-1343", + "maker": "Maker F", + "model": "Model 1343", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.66729581327174, + 28.40755639446753 + ] + }, + "properties": { + "id": "meter-1344", + "maker": "Maker C", + "model": "Model 1344", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52542932131649, + 18.07983236474122 + ] + }, + "properties": { + "id": "meter-1345", + "maker": "Maker F", + "model": "Model 1345", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.66941364960001, + 24.4181979303556 + ] + }, + "properties": { + "id": "meter-1346", + "maker": "Maker F", + "model": "Model 1346", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96497618397282, + 26.321779112015438 + ] + }, + "properties": { + "id": "meter-1347", + "maker": "Maker A", + "model": "Model 1347", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11093291748958, + 26.341070832554784 + ] + }, + "properties": { + "id": "meter-1348", + "maker": "Maker J", + "model": "Model 1348", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.55339891699638, + 28.57622901964384 + ] + }, + "properties": { + "id": "meter-1349", + "maker": "Maker D", + "model": "Model 1349", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.747376320539004, + 26.32328788368684 + ] + }, + "properties": { + "id": "meter-1350", + "maker": "Maker C", + "model": "Model 1350", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.607671352474, + 28.384638187694737 + ] + }, + "properties": { + "id": "meter-1351", + "maker": "Maker E", + "model": "Model 1351", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.4481618368521, + 18.36875353115325 + ] + }, + "properties": { + "id": "meter-1352", + "maker": "Maker C", + "model": "Model 1352", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17219194172759, + 26.31459794187863 + ] + }, + "properties": { + "id": "meter-1353", + "maker": "Maker B", + "model": "Model 1353", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72707084276164, + 18.300859774532263 + ] + }, + "properties": { + "id": "meter-1354", + "maker": "Maker I", + "model": "Model 1354", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.316588285601185, + 29.974037115567715 + ] + }, + "properties": { + "id": "meter-1355", + "maker": "Maker F", + "model": "Model 1355", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.35435346016264, + 25.516355323134807 + ] + }, + "properties": { + "id": "meter-1356", + "maker": "Maker J", + "model": "Model 1356", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.982359306739944, + 26.688913203422125 + ] + }, + "properties": { + "id": "meter-1357", + "maker": "Maker C", + "model": "Model 1357", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97210566698496, + 26.57791777051666 + ] + }, + "properties": { + "id": "meter-1358", + "maker": "Maker B", + "model": "Model 1358", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11866639661826, + 17.512698814428884 + ] + }, + "properties": { + "id": "meter-1359", + "maker": "Maker J", + "model": "Model 1359", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.9170129944169, + 18.160443700334003 + ] + }, + "properties": { + "id": "meter-1360", + "maker": "Maker G", + "model": "Model 1360", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91845924913834, + 26.52197368024479 + ] + }, + "properties": { + "id": "meter-1361", + "maker": "Maker C", + "model": "Model 1361", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.19721053473701, + 24.29915327841423 + ] + }, + "properties": { + "id": "meter-1362", + "maker": "Maker A", + "model": "Model 1362", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.66010221886008, + 27.26549973745521 + ] + }, + "properties": { + "id": "meter-1363", + "maker": "Maker B", + "model": "Model 1363", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.63703501583453, + 18.011358441902892 + ] + }, + "properties": { + "id": "meter-1364", + "maker": "Maker G", + "model": "Model 1364", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.63591059178041, + 28.19778529368365 + ] + }, + "properties": { + "id": "meter-1365", + "maker": "Maker E", + "model": "Model 1365", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58006282649346, + 25.418031217040507 + ] + }, + "properties": { + "id": "meter-1366", + "maker": "Maker E", + "model": "Model 1366", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.92066573667741, + 21.403782051782528 + ] + }, + "properties": { + "id": "meter-1367", + "maker": "Maker E", + "model": "Model 1367", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.15855243186968, + 21.304283702803847 + ] + }, + "properties": { + "id": "meter-1368", + "maker": "Maker I", + "model": "Model 1368", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.581080714331264, + 27.388164567505033 + ] + }, + "properties": { + "id": "meter-1369", + "maker": "Maker G", + "model": "Model 1369", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.527456839606174, + 20.161418788902225 + ] + }, + "properties": { + "id": "meter-1370", + "maker": "Maker A", + "model": "Model 1370", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.704808480755894, + 24.75486330794916 + ] + }, + "properties": { + "id": "meter-1371", + "maker": "Maker A", + "model": "Model 1371", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.40452748374745, + 29.922328275161767 + ] + }, + "properties": { + "id": "meter-1372", + "maker": "Maker J", + "model": "Model 1372", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.63193779428706, + 18.438951789343616 + ] + }, + "properties": { + "id": "meter-1373", + "maker": "Maker B", + "model": "Model 1373", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.645234795381064, + 24.858439225360794 + ] + }, + "properties": { + "id": "meter-1374", + "maker": "Maker H", + "model": "Model 1374", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0929545115028, + 24.09011975870622 + ] + }, + "properties": { + "id": "meter-1375", + "maker": "Maker G", + "model": "Model 1375", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.35660870988782, + 19.89577386845302 + ] + }, + "properties": { + "id": "meter-1376", + "maker": "Maker E", + "model": "Model 1376", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.97200216917138, + 21.273933212084895 + ] + }, + "properties": { + "id": "meter-1377", + "maker": "Maker A", + "model": "Model 1377", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.22030041313103, + 30.924053723546844 + ] + }, + "properties": { + "id": "meter-1378", + "maker": "Maker A", + "model": "Model 1378", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07438162904668, + 26.37932885730448 + ] + }, + "properties": { + "id": "meter-1379", + "maker": "Maker I", + "model": "Model 1379", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.56226022986395, + 25.307555688762726 + ] + }, + "properties": { + "id": "meter-1380", + "maker": "Maker C", + "model": "Model 1380", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14887898957909, + 26.377889062309293 + ] + }, + "properties": { + "id": "meter-1381", + "maker": "Maker H", + "model": "Model 1381", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.7221295981308, + 24.701413558399313 + ] + }, + "properties": { + "id": "meter-1382", + "maker": "Maker H", + "model": "Model 1382", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.229795409063136, + 17.454736875480652 + ] + }, + "properties": { + "id": "meter-1383", + "maker": "Maker I", + "model": "Model 1383", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45062335434511, + 18.2378732529517 + ] + }, + "properties": { + "id": "meter-1384", + "maker": "Maker J", + "model": "Model 1384", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24945584877298, + 21.7448485967675 + ] + }, + "properties": { + "id": "meter-1385", + "maker": "Maker J", + "model": "Model 1385", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.53646103120163, + 24.522680494426105 + ] + }, + "properties": { + "id": "meter-1386", + "maker": "Maker D", + "model": "Model 1386", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.30938956165845, + 21.370586407975527 + ] + }, + "properties": { + "id": "meter-1387", + "maker": "Maker H", + "model": "Model 1387", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.76248933698571, + 24.674935476745667 + ] + }, + "properties": { + "id": "meter-1388", + "maker": "Maker B", + "model": "Model 1388", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.22502668868645, + 24.087715485609543 + ] + }, + "properties": { + "id": "meter-1389", + "maker": "Maker B", + "model": "Model 1389", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.207088309540005, + 26.278407199634966 + ] + }, + "properties": { + "id": "meter-1390", + "maker": "Maker G", + "model": "Model 1390", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.121124113181736, + 26.40667745348246 + ] + }, + "properties": { + "id": "meter-1391", + "maker": "Maker E", + "model": "Model 1391", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.477262568961685, + 24.490498083644216 + ] + }, + "properties": { + "id": "meter-1392", + "maker": "Maker G", + "model": "Model 1392", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.62110677210122, + 24.626737968743708 + ] + }, + "properties": { + "id": "meter-1393", + "maker": "Maker I", + "model": "Model 1393", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.579481400735915, + 18.180085341511163 + ] + }, + "properties": { + "id": "meter-1394", + "maker": "Maker D", + "model": "Model 1394", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.675194059928614, + 27.51780290984764 + ] + }, + "properties": { + "id": "meter-1395", + "maker": "Maker G", + "model": "Model 1395", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.9569282568835, + 27.459410321975472 + ] + }, + "properties": { + "id": "meter-1396", + "maker": "Maker F", + "model": "Model 1396", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.085246795911246, + 26.4125271950189 + ] + }, + "properties": { + "id": "meter-1397", + "maker": "Maker A", + "model": "Model 1397", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57134288326031, + 25.336605037521483 + ] + }, + "properties": { + "id": "meter-1398", + "maker": "Maker C", + "model": "Model 1398", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.72893828598246, + 21.37528902372955 + ] + }, + "properties": { + "id": "meter-1399", + "maker": "Maker G", + "model": "Model 1399", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.51312851002171, + 19.977008352902274 + ] + }, + "properties": { + "id": "meter-1400", + "maker": "Maker G", + "model": "Model 1400", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94109616176517, + 26.695341251268417 + ] + }, + "properties": { + "id": "meter-1401", + "maker": "Maker F", + "model": "Model 1401", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.56013092911493, + 18.244521340134632 + ] + }, + "properties": { + "id": "meter-1402", + "maker": "Maker F", + "model": "Model 1402", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.776229009294696, + 28.2983347988309 + ] + }, + "properties": { + "id": "meter-1403", + "maker": "Maker B", + "model": "Model 1403", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.81421070563008, + 27.40341834583309 + ] + }, + "properties": { + "id": "meter-1404", + "maker": "Maker A", + "model": "Model 1404", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.76165222876292, + 18.157651550128048 + ] + }, + "properties": { + "id": "meter-1405", + "maker": "Maker G", + "model": "Model 1405", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.072460750566925, + 26.39170809503128 + ] + }, + "properties": { + "id": "meter-1406", + "maker": "Maker F", + "model": "Model 1406", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09926754813296, + 26.230105854804776 + ] + }, + "properties": { + "id": "meter-1407", + "maker": "Maker J", + "model": "Model 1407", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.74430813916654, + 21.412754704310817 + ] + }, + "properties": { + "id": "meter-1408", + "maker": "Maker A", + "model": "Model 1408", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.093317368571036, + 17.362785903780736 + ] + }, + "properties": { + "id": "meter-1409", + "maker": "Maker B", + "model": "Model 1409", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.04142803761201, + 26.404763605205485 + ] + }, + "properties": { + "id": "meter-1410", + "maker": "Maker J", + "model": "Model 1410", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14599028526665, + 26.203092698851403 + ] + }, + "properties": { + "id": "meter-1411", + "maker": "Maker J", + "model": "Model 1411", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04200690385531, + 17.43237201287004 + ] + }, + "properties": { + "id": "meter-1412", + "maker": "Maker H", + "model": "Model 1412", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67242422262995, + 27.48153164686376 + ] + }, + "properties": { + "id": "meter-1413", + "maker": "Maker C", + "model": "Model 1413", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.550396383684394, + 24.7050554968393 + ] + }, + "properties": { + "id": "meter-1414", + "maker": "Maker D", + "model": "Model 1414", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.343655339308185, + 25.366279082687264 + ] + }, + "properties": { + "id": "meter-1415", + "maker": "Maker F", + "model": "Model 1415", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.82421750740952, + 24.70895150502926 + ] + }, + "properties": { + "id": "meter-1416", + "maker": "Maker C", + "model": "Model 1416", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.75896521730366, + 18.238559135005616 + ] + }, + "properties": { + "id": "meter-1417", + "maker": "Maker J", + "model": "Model 1417", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.950159686245655, + 21.320009901856555 + ] + }, + "properties": { + "id": "meter-1418", + "maker": "Maker F", + "model": "Model 1418", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70549160381174, + 27.421055796984344 + ] + }, + "properties": { + "id": "meter-1419", + "maker": "Maker G", + "model": "Model 1419", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.86496396127423, + 18.254673677298182 + ] + }, + "properties": { + "id": "meter-1420", + "maker": "Maker J", + "model": "Model 1420", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.11690770087815, + 24.06762721689109 + ] + }, + "properties": { + "id": "meter-1421", + "maker": "Maker I", + "model": "Model 1421", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07948245272173, + 26.386684196329487 + ] + }, + "properties": { + "id": "meter-1422", + "maker": "Maker D", + "model": "Model 1422", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.00345513251495, + 30.693039280606065 + ] + }, + "properties": { + "id": "meter-1423", + "maker": "Maker B", + "model": "Model 1423", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.190166882501515, + 26.266642127026937 + ] + }, + "properties": { + "id": "meter-1424", + "maker": "Maker C", + "model": "Model 1424", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.337250446078286, + 28.355909548973624 + ] + }, + "properties": { + "id": "meter-1425", + "maker": "Maker G", + "model": "Model 1425", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.499601847918264, + 19.96375519012684 + ] + }, + "properties": { + "id": "meter-1426", + "maker": "Maker J", + "model": "Model 1426", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.180654564977935, + 26.434065155629956 + ] + }, + "properties": { + "id": "meter-1427", + "maker": "Maker A", + "model": "Model 1427", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67651104097837, + 27.752000310926952 + ] + }, + "properties": { + "id": "meter-1428", + "maker": "Maker J", + "model": "Model 1428", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49070228973323, + 18.20485128993363 + ] + }, + "properties": { + "id": "meter-1429", + "maker": "Maker C", + "model": "Model 1429", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95790903197891, + 26.643667601596057 + ] + }, + "properties": { + "id": "meter-1430", + "maker": "Maker E", + "model": "Model 1430", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.36751355178812, + 25.34637044471471 + ] + }, + "properties": { + "id": "meter-1431", + "maker": "Maker G", + "model": "Model 1431", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19102012509243, + 26.223254119209283 + ] + }, + "properties": { + "id": "meter-1432", + "maker": "Maker G", + "model": "Model 1432", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.9781152086932, + 30.8398766291435 + ] + }, + "properties": { + "id": "meter-1433", + "maker": "Maker I", + "model": "Model 1433", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51672281589444, + 28.230096108444975 + ] + }, + "properties": { + "id": "meter-1434", + "maker": "Maker B", + "model": "Model 1434", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20514202510942, + 26.280320525039663 + ] + }, + "properties": { + "id": "meter-1435", + "maker": "Maker H", + "model": "Model 1435", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.94328768592257, + 30.93082844229388 + ] + }, + "properties": { + "id": "meter-1436", + "maker": "Maker E", + "model": "Model 1436", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.53782488741253, + 28.52393424377664 + ] + }, + "properties": { + "id": "meter-1437", + "maker": "Maker G", + "model": "Model 1437", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20605773485843, + 26.35145372579592 + ] + }, + "properties": { + "id": "meter-1438", + "maker": "Maker C", + "model": "Model 1438", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.201311629629046, + 24.05922656688923 + ] + }, + "properties": { + "id": "meter-1439", + "maker": "Maker I", + "model": "Model 1439", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.10510606026996, + 21.68233887941488 + ] + }, + "properties": { + "id": "meter-1440", + "maker": "Maker H", + "model": "Model 1440", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.745975408372715, + 27.485931296996746 + ] + }, + "properties": { + "id": "meter-1441", + "maker": "Maker G", + "model": "Model 1441", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.66875552327645, + 24.59553982687538 + ] + }, + "properties": { + "id": "meter-1442", + "maker": "Maker C", + "model": "Model 1442", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.3098764350607, + 21.74580894791028 + ] + }, + "properties": { + "id": "meter-1443", + "maker": "Maker G", + "model": "Model 1443", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00086555765529, + 26.359731282403686 + ] + }, + "properties": { + "id": "meter-1444", + "maker": "Maker H", + "model": "Model 1444", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.48036394240608, + 18.031408039066456 + ] + }, + "properties": { + "id": "meter-1445", + "maker": "Maker B", + "model": "Model 1445", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.97708994655502, + 30.85861413032387 + ] + }, + "properties": { + "id": "meter-1446", + "maker": "Maker A", + "model": "Model 1446", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.19347337473024, + 26.34324356237046 + ] + }, + "properties": { + "id": "meter-1447", + "maker": "Maker J", + "model": "Model 1447", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.962490869106226, + 26.642809755629415 + ] + }, + "properties": { + "id": "meter-1448", + "maker": "Maker B", + "model": "Model 1448", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.816417692633614, + 26.662137318692288 + ] + }, + "properties": { + "id": "meter-1449", + "maker": "Maker H", + "model": "Model 1449", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.945308311223236, + 30.949409861058445 + ] + }, + "properties": { + "id": "meter-1450", + "maker": "Maker E", + "model": "Model 1450", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.47937525596725, + 28.261210086081878 + ] + }, + "properties": { + "id": "meter-1451", + "maker": "Maker J", + "model": "Model 1451", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.72423975194658, + 24.843794280147698 + ] + }, + "properties": { + "id": "meter-1452", + "maker": "Maker D", + "model": "Model 1452", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4666718959672, + 19.72784966893287 + ] + }, + "properties": { + "id": "meter-1453", + "maker": "Maker B", + "model": "Model 1453", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.3614044644854, + 21.43957116452907 + ] + }, + "properties": { + "id": "meter-1454", + "maker": "Maker H", + "model": "Model 1454", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77205642966316, + 24.630086928866653 + ] + }, + "properties": { + "id": "meter-1455", + "maker": "Maker G", + "model": "Model 1455", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.78747212924926, + 30.90470308952004 + ] + }, + "properties": { + "id": "meter-1456", + "maker": "Maker A", + "model": "Model 1456", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.189681363921835, + 17.547676227090736 + ] + }, + "properties": { + "id": "meter-1457", + "maker": "Maker E", + "model": "Model 1457", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.174514361552525, + 26.206229888605474 + ] + }, + "properties": { + "id": "meter-1458", + "maker": "Maker H", + "model": "Model 1458", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.66785000281304, + 24.667639728191592 + ] + }, + "properties": { + "id": "meter-1459", + "maker": "Maker B", + "model": "Model 1459", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.632113499311075, + 28.391502193105858 + ] + }, + "properties": { + "id": "meter-1460", + "maker": "Maker F", + "model": "Model 1460", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.85163967273801, + 24.799030124963377 + ] + }, + "properties": { + "id": "meter-1461", + "maker": "Maker D", + "model": "Model 1461", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.139609597240295, + 17.49350227609021 + ] + }, + "properties": { + "id": "meter-1462", + "maker": "Maker A", + "model": "Model 1462", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09984520573089, + 26.429372406697805 + ] + }, + "properties": { + "id": "meter-1463", + "maker": "Maker J", + "model": "Model 1463", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.637244991611574, + 18.037547305538066 + ] + }, + "properties": { + "id": "meter-1464", + "maker": "Maker D", + "model": "Model 1464", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.59331793035978, + 18.172224534495502 + ] + }, + "properties": { + "id": "meter-1465", + "maker": "Maker I", + "model": "Model 1465", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49890138500248, + 18.131644833230737 + ] + }, + "properties": { + "id": "meter-1466", + "maker": "Maker F", + "model": "Model 1466", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62909345328264, + 19.990617473677545 + ] + }, + "properties": { + "id": "meter-1467", + "maker": "Maker E", + "model": "Model 1467", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.15202889123142, + 24.31218253566 + ] + }, + "properties": { + "id": "meter-1468", + "maker": "Maker J", + "model": "Model 1468", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9877914571163, + 26.667814981615525 + ] + }, + "properties": { + "id": "meter-1469", + "maker": "Maker I", + "model": "Model 1469", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.99006523851097, + 18.335673741520093 + ] + }, + "properties": { + "id": "meter-1470", + "maker": "Maker I", + "model": "Model 1470", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.75054043614415, + 26.54308264315494 + ] + }, + "properties": { + "id": "meter-1471", + "maker": "Maker E", + "model": "Model 1471", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.19195260169299, + 29.986857707135975 + ] + }, + "properties": { + "id": "meter-1472", + "maker": "Maker H", + "model": "Model 1472", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.060813005008114, + 24.09067113334743 + ] + }, + "properties": { + "id": "meter-1473", + "maker": "Maker H", + "model": "Model 1473", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.83814769951547, + 24.498558293749923 + ] + }, + "properties": { + "id": "meter-1474", + "maker": "Maker H", + "model": "Model 1474", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.999710501309366, + 26.631824812599028 + ] + }, + "properties": { + "id": "meter-1475", + "maker": "Maker H", + "model": "Model 1475", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.594530124034904, + 28.398969894205848 + ] + }, + "properties": { + "id": "meter-1476", + "maker": "Maker H", + "model": "Model 1476", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.92494939116442, + 31.154013164693026 + ] + }, + "properties": { + "id": "meter-1477", + "maker": "Maker A", + "model": "Model 1477", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.85791133149006, + 26.313985768975574 + ] + }, + "properties": { + "id": "meter-1478", + "maker": "Maker E", + "model": "Model 1478", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.39706437849637, + 21.415766306308136 + ] + }, + "properties": { + "id": "meter-1479", + "maker": "Maker G", + "model": "Model 1479", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.955531587675544, + 26.084265608479516 + ] + }, + "properties": { + "id": "meter-1480", + "maker": "Maker H", + "model": "Model 1480", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.05009639364411, + 30.185865569754156 + ] + }, + "properties": { + "id": "meter-1481", + "maker": "Maker E", + "model": "Model 1481", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.176346264057784, + 24.060191982936278 + ] + }, + "properties": { + "id": "meter-1482", + "maker": "Maker H", + "model": "Model 1482", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.46967441162777, + 18.09126499235403 + ] + }, + "properties": { + "id": "meter-1483", + "maker": "Maker F", + "model": "Model 1483", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02430518883229, + 26.31506903192685 + ] + }, + "properties": { + "id": "meter-1484", + "maker": "Maker C", + "model": "Model 1484", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.42323623429865, + 24.781130866622867 + ] + }, + "properties": { + "id": "meter-1485", + "maker": "Maker A", + "model": "Model 1485", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.749598509904516, + 28.583039643106236 + ] + }, + "properties": { + "id": "meter-1486", + "maker": "Maker H", + "model": "Model 1486", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68185606993757, + 18.121689686518124 + ] + }, + "properties": { + "id": "meter-1487", + "maker": "Maker A", + "model": "Model 1487", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03451565872586, + 26.271552804667053 + ] + }, + "properties": { + "id": "meter-1488", + "maker": "Maker E", + "model": "Model 1488", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.787742451238074, + 24.39066042310805 + ] + }, + "properties": { + "id": "meter-1489", + "maker": "Maker H", + "model": "Model 1489", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.36780080606641, + 19.74477260356101 + ] + }, + "properties": { + "id": "meter-1490", + "maker": "Maker F", + "model": "Model 1490", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.46806417102242, + 28.32408094729483 + ] + }, + "properties": { + "id": "meter-1491", + "maker": "Maker J", + "model": "Model 1491", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.03595318132152, + 24.09247052454016 + ] + }, + "properties": { + "id": "meter-1492", + "maker": "Maker B", + "model": "Model 1492", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66238627627665, + 18.525296525521956 + ] + }, + "properties": { + "id": "meter-1493", + "maker": "Maker B", + "model": "Model 1493", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.073416483907145, + 30.97578368074632 + ] + }, + "properties": { + "id": "meter-1494", + "maker": "Maker C", + "model": "Model 1494", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26071723506274, + 21.53238163777725 + ] + }, + "properties": { + "id": "meter-1495", + "maker": "Maker C", + "model": "Model 1495", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.888536215477785, + 17.56658401895257 + ] + }, + "properties": { + "id": "meter-1496", + "maker": "Maker D", + "model": "Model 1496", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21042434236547, + 26.24811183123977 + ] + }, + "properties": { + "id": "meter-1497", + "maker": "Maker F", + "model": "Model 1497", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.520183082642106, + 24.49106615243612 + ] + }, + "properties": { + "id": "meter-1498", + "maker": "Maker I", + "model": "Model 1498", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.199630065758264, + 24.157216852443703 + ] + }, + "properties": { + "id": "meter-1499", + "maker": "Maker H", + "model": "Model 1499", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.385381871697476, + 28.51162741515904 + ] + }, + "properties": { + "id": "meter-1500", + "maker": "Maker A", + "model": "Model 1500", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.366305122879545, + 21.410301246345732 + ] + }, + "properties": { + "id": "meter-1501", + "maker": "Maker J", + "model": "Model 1501", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.598414126449775, + 28.402681019787604 + ] + }, + "properties": { + "id": "meter-1502", + "maker": "Maker G", + "model": "Model 1502", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.36496505623995, + 21.30368951509471 + ] + }, + "properties": { + "id": "meter-1503", + "maker": "Maker F", + "model": "Model 1503", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.36025698071559, + 21.687162913914836 + ] + }, + "properties": { + "id": "meter-1504", + "maker": "Maker J", + "model": "Model 1504", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.771412385960154, + 24.666663964496603 + ] + }, + "properties": { + "id": "meter-1505", + "maker": "Maker C", + "model": "Model 1505", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.028388936252774, + 17.59966955142926 + ] + }, + "properties": { + "id": "meter-1506", + "maker": "Maker D", + "model": "Model 1506", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.15025666867886, + 17.564865558750554 + ] + }, + "properties": { + "id": "meter-1507", + "maker": "Maker I", + "model": "Model 1507", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13249714425998, + 17.499073652820666 + ] + }, + "properties": { + "id": "meter-1508", + "maker": "Maker G", + "model": "Model 1508", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.534389315343084, + 24.729870658786496 + ] + }, + "properties": { + "id": "meter-1509", + "maker": "Maker B", + "model": "Model 1509", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94300645206796, + 26.351230433995564 + ] + }, + "properties": { + "id": "meter-1510", + "maker": "Maker I", + "model": "Model 1510", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.37050845446374, + 24.62543935876548 + ] + }, + "properties": { + "id": "meter-1511", + "maker": "Maker E", + "model": "Model 1511", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.075256727364994, + 24.09121975318678 + ] + }, + "properties": { + "id": "meter-1512", + "maker": "Maker J", + "model": "Model 1512", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42533355950423, + 20.20427783290182 + ] + }, + "properties": { + "id": "meter-1513", + "maker": "Maker I", + "model": "Model 1513", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.740861491472614, + 26.43620768684982 + ] + }, + "properties": { + "id": "meter-1514", + "maker": "Maker F", + "model": "Model 1514", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.75142263562275, + 24.543173920615622 + ] + }, + "properties": { + "id": "meter-1515", + "maker": "Maker C", + "model": "Model 1515", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1098849358465, + 17.63278455020031 + ] + }, + "properties": { + "id": "meter-1516", + "maker": "Maker I", + "model": "Model 1516", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.59241580501992, + 24.717195915875184 + ] + }, + "properties": { + "id": "meter-1517", + "maker": "Maker F", + "model": "Model 1517", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.34005812179551, + 24.57111486627288 + ] + }, + "properties": { + "id": "meter-1518", + "maker": "Maker J", + "model": "Model 1518", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.88939467042513, + 30.743940654468823 + ] + }, + "properties": { + "id": "meter-1519", + "maker": "Maker I", + "model": "Model 1519", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.96365454496465, + 18.24474247946302 + ] + }, + "properties": { + "id": "meter-1520", + "maker": "Maker G", + "model": "Model 1520", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.78196649358782, + 24.460246230276066 + ] + }, + "properties": { + "id": "meter-1521", + "maker": "Maker C", + "model": "Model 1521", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.80604342036131, + 21.408674637327934 + ] + }, + "properties": { + "id": "meter-1522", + "maker": "Maker E", + "model": "Model 1522", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63628640346691, + 24.557636024635073 + ] + }, + "properties": { + "id": "meter-1523", + "maker": "Maker J", + "model": "Model 1523", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.988737601100006, + 26.400605100323283 + ] + }, + "properties": { + "id": "meter-1524", + "maker": "Maker G", + "model": "Model 1524", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.985904612031696, + 26.061611692941415 + ] + }, + "properties": { + "id": "meter-1525", + "maker": "Maker G", + "model": "Model 1525", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.048338533317015, + 17.42436924679078 + ] + }, + "properties": { + "id": "meter-1526", + "maker": "Maker E", + "model": "Model 1526", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.63424139806381, + 25.400870289132854 + ] + }, + "properties": { + "id": "meter-1527", + "maker": "Maker C", + "model": "Model 1527", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13929349516602, + 26.25318291710895 + ] + }, + "properties": { + "id": "meter-1528", + "maker": "Maker H", + "model": "Model 1528", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.735935592902855, + 21.41935330157366 + ] + }, + "properties": { + "id": "meter-1529", + "maker": "Maker J", + "model": "Model 1529", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.627364294649894, + 24.550189499789884 + ] + }, + "properties": { + "id": "meter-1530", + "maker": "Maker C", + "model": "Model 1530", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.1979823997746, + 21.506506639827013 + ] + }, + "properties": { + "id": "meter-1531", + "maker": "Maker G", + "model": "Model 1531", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.140886975667605, + 30.826298891362292 + ] + }, + "properties": { + "id": "meter-1532", + "maker": "Maker D", + "model": "Model 1532", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.20722488030218, + 26.22873826908245 + ] + }, + "properties": { + "id": "meter-1533", + "maker": "Maker A", + "model": "Model 1533", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45178086827104, + 19.837842794734648 + ] + }, + "properties": { + "id": "meter-1534", + "maker": "Maker J", + "model": "Model 1534", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.655962806778405, + 18.008034006492082 + ] + }, + "properties": { + "id": "meter-1535", + "maker": "Maker C", + "model": "Model 1535", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20692431548325, + 30.167883253911963 + ] + }, + "properties": { + "id": "meter-1536", + "maker": "Maker C", + "model": "Model 1536", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46025048489835, + 20.021964289701742 + ] + }, + "properties": { + "id": "meter-1537", + "maker": "Maker E", + "model": "Model 1537", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.400740879153446, + 20.04519638693418 + ] + }, + "properties": { + "id": "meter-1538", + "maker": "Maker E", + "model": "Model 1538", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17635194561167, + 26.215996529636673 + ] + }, + "properties": { + "id": "meter-1539", + "maker": "Maker G", + "model": "Model 1539", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.082661792226546, + 26.426998384774155 + ] + }, + "properties": { + "id": "meter-1540", + "maker": "Maker J", + "model": "Model 1540", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.99940493342389, + 31.176483427276622 + ] + }, + "properties": { + "id": "meter-1541", + "maker": "Maker G", + "model": "Model 1541", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.00725930528847, + 29.78447706346545 + ] + }, + "properties": { + "id": "meter-1542", + "maker": "Maker E", + "model": "Model 1542", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.274080793696086, + 26.30651717956414 + ] + }, + "properties": { + "id": "meter-1543", + "maker": "Maker D", + "model": "Model 1543", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.595556217512716, + 18.235985035268904 + ] + }, + "properties": { + "id": "meter-1544", + "maker": "Maker F", + "model": "Model 1544", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.81701719476893, + 18.114324318237635 + ] + }, + "properties": { + "id": "meter-1545", + "maker": "Maker G", + "model": "Model 1545", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.38803249703573, + 18.452753788497848 + ] + }, + "properties": { + "id": "meter-1546", + "maker": "Maker C", + "model": "Model 1546", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.77623738945777, + 28.521135068911732 + ] + }, + "properties": { + "id": "meter-1547", + "maker": "Maker B", + "model": "Model 1547", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69396492594547, + 27.522566455807098 + ] + }, + "properties": { + "id": "meter-1548", + "maker": "Maker F", + "model": "Model 1548", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.19682902144551, + 24.110042756798617 + ] + }, + "properties": { + "id": "meter-1549", + "maker": "Maker H", + "model": "Model 1549", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.492965696606234, + 18.14577159114301 + ] + }, + "properties": { + "id": "meter-1550", + "maker": "Maker A", + "model": "Model 1550", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.58449788937252, + 24.53825571784326 + ] + }, + "properties": { + "id": "meter-1551", + "maker": "Maker B", + "model": "Model 1551", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.025239291419254, + 26.50126098237329 + ] + }, + "properties": { + "id": "meter-1552", + "maker": "Maker A", + "model": "Model 1552", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.826950279459126, + 21.64435017442278 + ] + }, + "properties": { + "id": "meter-1553", + "maker": "Maker G", + "model": "Model 1553", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.267933031616536, + 30.824687451918457 + ] + }, + "properties": { + "id": "meter-1554", + "maker": "Maker F", + "model": "Model 1554", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09621931783985, + 24.282809544643694 + ] + }, + "properties": { + "id": "meter-1555", + "maker": "Maker D", + "model": "Model 1555", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58075277671894, + 25.31848506966093 + ] + }, + "properties": { + "id": "meter-1556", + "maker": "Maker I", + "model": "Model 1556", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.87370514879014, + 17.356600166279712 + ] + }, + "properties": { + "id": "meter-1557", + "maker": "Maker G", + "model": "Model 1557", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.93076676329015, + 18.131495183903628 + ] + }, + "properties": { + "id": "meter-1558", + "maker": "Maker I", + "model": "Model 1558", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.42873022039063, + 18.19023961555471 + ] + }, + "properties": { + "id": "meter-1559", + "maker": "Maker G", + "model": "Model 1559", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.006326597020326, + 26.428263142979098 + ] + }, + "properties": { + "id": "meter-1560", + "maker": "Maker J", + "model": "Model 1560", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.46260593680169, + 21.401151929200548 + ] + }, + "properties": { + "id": "meter-1561", + "maker": "Maker G", + "model": "Model 1561", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46974687236361, + 20.01511368505663 + ] + }, + "properties": { + "id": "meter-1562", + "maker": "Maker D", + "model": "Model 1562", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.1724190186961, + 21.493702963208538 + ] + }, + "properties": { + "id": "meter-1563", + "maker": "Maker F", + "model": "Model 1563", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.75453370256897, + 24.7283125908999 + ] + }, + "properties": { + "id": "meter-1564", + "maker": "Maker A", + "model": "Model 1564", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.583560403281076, + 18.174130394923825 + ] + }, + "properties": { + "id": "meter-1565", + "maker": "Maker D", + "model": "Model 1565", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.669512481900654, + 24.78210632698428 + ] + }, + "properties": { + "id": "meter-1566", + "maker": "Maker J", + "model": "Model 1566", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09532550057281, + 26.445601569338468 + ] + }, + "properties": { + "id": "meter-1567", + "maker": "Maker H", + "model": "Model 1567", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.18602163783162, + 17.634307607985548 + ] + }, + "properties": { + "id": "meter-1568", + "maker": "Maker C", + "model": "Model 1568", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99223411439263, + 26.594979183844668 + ] + }, + "properties": { + "id": "meter-1569", + "maker": "Maker E", + "model": "Model 1569", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.2703362723129, + 30.01750708907976 + ] + }, + "properties": { + "id": "meter-1570", + "maker": "Maker I", + "model": "Model 1570", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.669335405250166, + 27.553112896655026 + ] + }, + "properties": { + "id": "meter-1571", + "maker": "Maker H", + "model": "Model 1571", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96464772301956, + 26.666997813584857 + ] + }, + "properties": { + "id": "meter-1572", + "maker": "Maker F", + "model": "Model 1572", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09939665333752, + 26.242418861433684 + ] + }, + "properties": { + "id": "meter-1573", + "maker": "Maker E", + "model": "Model 1573", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.06919456819799, + 30.947095573931048 + ] + }, + "properties": { + "id": "meter-1574", + "maker": "Maker J", + "model": "Model 1574", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.90768760426793, + 21.341942882060607 + ] + }, + "properties": { + "id": "meter-1575", + "maker": "Maker C", + "model": "Model 1575", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.638420167410736, + 25.362853852763365 + ] + }, + "properties": { + "id": "meter-1576", + "maker": "Maker I", + "model": "Model 1576", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48095807917718, + 19.97125444290425 + ] + }, + "properties": { + "id": "meter-1577", + "maker": "Maker G", + "model": "Model 1577", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.38152737113043, + 19.840056963940565 + ] + }, + "properties": { + "id": "meter-1578", + "maker": "Maker G", + "model": "Model 1578", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.8598239345269, + 21.395764554021213 + ] + }, + "properties": { + "id": "meter-1579", + "maker": "Maker H", + "model": "Model 1579", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.27137307248937, + 17.431866169588286 + ] + }, + "properties": { + "id": "meter-1580", + "maker": "Maker G", + "model": "Model 1580", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.950131738383675, + 26.369474859771234 + ] + }, + "properties": { + "id": "meter-1581", + "maker": "Maker I", + "model": "Model 1581", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.79952526161994, + 26.15749271955609 + ] + }, + "properties": { + "id": "meter-1582", + "maker": "Maker G", + "model": "Model 1582", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.01427080535829, + 24.287239787047668 + ] + }, + "properties": { + "id": "meter-1583", + "maker": "Maker B", + "model": "Model 1583", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26984702489326, + 21.303044553490857 + ] + }, + "properties": { + "id": "meter-1584", + "maker": "Maker H", + "model": "Model 1584", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.809013254717364, + 21.376950837077818 + ] + }, + "properties": { + "id": "meter-1585", + "maker": "Maker A", + "model": "Model 1585", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05975550966034, + 24.10678140248597 + ] + }, + "properties": { + "id": "meter-1586", + "maker": "Maker C", + "model": "Model 1586", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.206609714718766, + 24.23690908627854 + ] + }, + "properties": { + "id": "meter-1587", + "maker": "Maker B", + "model": "Model 1587", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51270909872846, + 28.46430766257972 + ] + }, + "properties": { + "id": "meter-1588", + "maker": "Maker I", + "model": "Model 1588", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.91588655666795, + 18.320478697975435 + ] + }, + "properties": { + "id": "meter-1589", + "maker": "Maker H", + "model": "Model 1589", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46623331200254, + 20.039856538857357 + ] + }, + "properties": { + "id": "meter-1590", + "maker": "Maker F", + "model": "Model 1590", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00427174406578, + 26.270615831369057 + ] + }, + "properties": { + "id": "meter-1591", + "maker": "Maker H", + "model": "Model 1591", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.658008312032024, + 28.319898560273412 + ] + }, + "properties": { + "id": "meter-1592", + "maker": "Maker E", + "model": "Model 1592", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.74695580619242, + 28.437821718782065 + ] + }, + "properties": { + "id": "meter-1593", + "maker": "Maker I", + "model": "Model 1593", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.825120464833724, + 28.406218127491655 + ] + }, + "properties": { + "id": "meter-1594", + "maker": "Maker G", + "model": "Model 1594", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.74347847768534, + 20.01411375837305 + ] + }, + "properties": { + "id": "meter-1595", + "maker": "Maker A", + "model": "Model 1595", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.181635724977994, + 21.756045802248316 + ] + }, + "properties": { + "id": "meter-1596", + "maker": "Maker G", + "model": "Model 1596", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.95890571141819, + 18.20659319500881 + ] + }, + "properties": { + "id": "meter-1597", + "maker": "Maker H", + "model": "Model 1597", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.100762082587835, + 29.893156156913893 + ] + }, + "properties": { + "id": "meter-1598", + "maker": "Maker E", + "model": "Model 1598", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.624903862092175, + 24.6892302736021 + ] + }, + "properties": { + "id": "meter-1599", + "maker": "Maker F", + "model": "Model 1599", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63220446276952, + 24.2353928269355 + ] + }, + "properties": { + "id": "meter-1600", + "maker": "Maker B", + "model": "Model 1600", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.56362094263289, + 24.531260206133975 + ] + }, + "properties": { + "id": "meter-1601", + "maker": "Maker G", + "model": "Model 1601", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50608641472235, + 18.200900964599736 + ] + }, + "properties": { + "id": "meter-1602", + "maker": "Maker E", + "model": "Model 1602", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.79633895430412, + 18.27016248757055 + ] + }, + "properties": { + "id": "meter-1603", + "maker": "Maker B", + "model": "Model 1603", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2674751811139, + 21.489233365679333 + ] + }, + "properties": { + "id": "meter-1604", + "maker": "Maker F", + "model": "Model 1604", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.97981922367687, + 31.176995122975384 + ] + }, + "properties": { + "id": "meter-1605", + "maker": "Maker G", + "model": "Model 1605", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05946371677423, + 26.247347105423202 + ] + }, + "properties": { + "id": "meter-1606", + "maker": "Maker I", + "model": "Model 1606", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.960730506674, + 26.350394021954042 + ] + }, + "properties": { + "id": "meter-1607", + "maker": "Maker H", + "model": "Model 1607", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.19078641230096, + 21.762467179955916 + ] + }, + "properties": { + "id": "meter-1608", + "maker": "Maker I", + "model": "Model 1608", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.998156677242434, + 26.221426651461567 + ] + }, + "properties": { + "id": "meter-1609", + "maker": "Maker D", + "model": "Model 1609", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96589366457373, + 26.59227900444608 + ] + }, + "properties": { + "id": "meter-1610", + "maker": "Maker F", + "model": "Model 1610", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.534944800528805, + 28.137807691882305 + ] + }, + "properties": { + "id": "meter-1611", + "maker": "Maker G", + "model": "Model 1611", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.109537429735894, + 26.13100969692268 + ] + }, + "properties": { + "id": "meter-1612", + "maker": "Maker B", + "model": "Model 1612", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15017391687995, + 26.654459307484988 + ] + }, + "properties": { + "id": "meter-1613", + "maker": "Maker H", + "model": "Model 1613", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.76769658197217, + 28.26211745605049 + ] + }, + "properties": { + "id": "meter-1614", + "maker": "Maker D", + "model": "Model 1614", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.15930315733123, + 29.969280297030767 + ] + }, + "properties": { + "id": "meter-1615", + "maker": "Maker H", + "model": "Model 1615", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.1131607321009, + 31.209958412918212 + ] + }, + "properties": { + "id": "meter-1616", + "maker": "Maker D", + "model": "Model 1616", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.47605152259316, + 18.47060878838979 + ] + }, + "properties": { + "id": "meter-1617", + "maker": "Maker G", + "model": "Model 1617", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05670735565814, + 24.077041367824535 + ] + }, + "properties": { + "id": "meter-1618", + "maker": "Maker A", + "model": "Model 1618", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.441901741452064, + 20.06237570688617 + ] + }, + "properties": { + "id": "meter-1619", + "maker": "Maker H", + "model": "Model 1619", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00359047589215, + 26.443290074050314 + ] + }, + "properties": { + "id": "meter-1620", + "maker": "Maker D", + "model": "Model 1620", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.50895100380655, + 25.188199232960415 + ] + }, + "properties": { + "id": "meter-1621", + "maker": "Maker I", + "model": "Model 1621", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81282245340785, + 21.539443831610242 + ] + }, + "properties": { + "id": "meter-1622", + "maker": "Maker D", + "model": "Model 1622", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.60190912630982, + 25.219449712346226 + ] + }, + "properties": { + "id": "meter-1623", + "maker": "Maker C", + "model": "Model 1623", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.327854884255785, + 29.911490084295007 + ] + }, + "properties": { + "id": "meter-1624", + "maker": "Maker A", + "model": "Model 1624", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.681225590664205, + 24.7037615529306 + ] + }, + "properties": { + "id": "meter-1625", + "maker": "Maker B", + "model": "Model 1625", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.92590682216179, + 21.299621134858192 + ] + }, + "properties": { + "id": "meter-1626", + "maker": "Maker B", + "model": "Model 1626", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02915086199624, + 26.371831118715768 + ] + }, + "properties": { + "id": "meter-1627", + "maker": "Maker A", + "model": "Model 1627", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.107514700236614, + 30.065063039155476 + ] + }, + "properties": { + "id": "meter-1628", + "maker": "Maker E", + "model": "Model 1628", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.689495901988344, + 27.509667200995292 + ] + }, + "properties": { + "id": "meter-1629", + "maker": "Maker I", + "model": "Model 1629", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.512849856956656, + 25.33161020907775 + ] + }, + "properties": { + "id": "meter-1630", + "maker": "Maker G", + "model": "Model 1630", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20136681466573, + 26.30911152573608 + ] + }, + "properties": { + "id": "meter-1631", + "maker": "Maker F", + "model": "Model 1631", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.555411486219505, + 28.55702346704333 + ] + }, + "properties": { + "id": "meter-1632", + "maker": "Maker C", + "model": "Model 1632", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85970596332271, + 21.356788943827 + ] + }, + "properties": { + "id": "meter-1633", + "maker": "Maker B", + "model": "Model 1633", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.380822961911385, + 25.143411794940327 + ] + }, + "properties": { + "id": "meter-1634", + "maker": "Maker C", + "model": "Model 1634", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.18175171790198, + 21.36359188146672 + ] + }, + "properties": { + "id": "meter-1635", + "maker": "Maker A", + "model": "Model 1635", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17570465705082, + 26.280566048451185 + ] + }, + "properties": { + "id": "meter-1636", + "maker": "Maker I", + "model": "Model 1636", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.161319585543, + 26.295996671534606 + ] + }, + "properties": { + "id": "meter-1637", + "maker": "Maker I", + "model": "Model 1637", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.15298157779855, + 31.01662373076575 + ] + }, + "properties": { + "id": "meter-1638", + "maker": "Maker I", + "model": "Model 1638", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.23408356320782, + 30.849732101842054 + ] + }, + "properties": { + "id": "meter-1639", + "maker": "Maker B", + "model": "Model 1639", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68236977573948, + 24.71602673387497 + ] + }, + "properties": { + "id": "meter-1640", + "maker": "Maker E", + "model": "Model 1640", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91233122760254, + 26.47545250592829 + ] + }, + "properties": { + "id": "meter-1641", + "maker": "Maker E", + "model": "Model 1641", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.19534784713485, + 31.201357412559293 + ] + }, + "properties": { + "id": "meter-1642", + "maker": "Maker C", + "model": "Model 1642", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.458185135129874, + 25.315958337798783 + ] + }, + "properties": { + "id": "meter-1643", + "maker": "Maker B", + "model": "Model 1643", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.396715018852014, + 24.477796003083366 + ] + }, + "properties": { + "id": "meter-1644", + "maker": "Maker F", + "model": "Model 1644", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.971772268539674, + 30.91777962231904 + ] + }, + "properties": { + "id": "meter-1645", + "maker": "Maker C", + "model": "Model 1645", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01856336632197, + 17.663464201767713 + ] + }, + "properties": { + "id": "meter-1646", + "maker": "Maker I", + "model": "Model 1646", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94170746293971, + 26.271057616350905 + ] + }, + "properties": { + "id": "meter-1647", + "maker": "Maker H", + "model": "Model 1647", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.83433263420275, + 27.315918878670633 + ] + }, + "properties": { + "id": "meter-1648", + "maker": "Maker D", + "model": "Model 1648", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59041785475924, + 25.304427629878575 + ] + }, + "properties": { + "id": "meter-1649", + "maker": "Maker I", + "model": "Model 1649", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97129726684844, + 26.340643021980842 + ] + }, + "properties": { + "id": "meter-1650", + "maker": "Maker G", + "model": "Model 1650", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.76366449314942, + 21.621213728099978 + ] + }, + "properties": { + "id": "meter-1651", + "maker": "Maker J", + "model": "Model 1651", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.032959296289576, + 24.087127231064148 + ] + }, + "properties": { + "id": "meter-1652", + "maker": "Maker H", + "model": "Model 1652", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.071761708614574, + 24.07830711685134 + ] + }, + "properties": { + "id": "meter-1653", + "maker": "Maker D", + "model": "Model 1653", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63612675403473, + 24.62404681399652 + ] + }, + "properties": { + "id": "meter-1654", + "maker": "Maker B", + "model": "Model 1654", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18157541002681, + 26.381442131241005 + ] + }, + "properties": { + "id": "meter-1655", + "maker": "Maker I", + "model": "Model 1655", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.660430672538176, + 27.5260269284762 + ] + }, + "properties": { + "id": "meter-1656", + "maker": "Maker J", + "model": "Model 1656", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.147559863024675, + 24.11442090016351 + ] + }, + "properties": { + "id": "meter-1657", + "maker": "Maker C", + "model": "Model 1657", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18466485707105, + 26.315111091759515 + ] + }, + "properties": { + "id": "meter-1658", + "maker": "Maker E", + "model": "Model 1658", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.772024233655245, + 30.8957914545638 + ] + }, + "properties": { + "id": "meter-1659", + "maker": "Maker G", + "model": "Model 1659", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09593461018725, + 26.434093224898643 + ] + }, + "properties": { + "id": "meter-1660", + "maker": "Maker H", + "model": "Model 1660", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.054897853602526, + 30.905598559013278 + ] + }, + "properties": { + "id": "meter-1661", + "maker": "Maker H", + "model": "Model 1661", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.675400539794424, + 27.468789003597674 + ] + }, + "properties": { + "id": "meter-1662", + "maker": "Maker B", + "model": "Model 1662", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.029419324328515, + 21.275742132594363 + ] + }, + "properties": { + "id": "meter-1663", + "maker": "Maker B", + "model": "Model 1663", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.66439733206728, + 25.236740762600753 + ] + }, + "properties": { + "id": "meter-1664", + "maker": "Maker D", + "model": "Model 1664", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.7028458189771, + 28.303068619856564 + ] + }, + "properties": { + "id": "meter-1665", + "maker": "Maker C", + "model": "Model 1665", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.572570015055135, + 27.2641929230534 + ] + }, + "properties": { + "id": "meter-1666", + "maker": "Maker F", + "model": "Model 1666", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.526474382975586, + 27.579061582956115 + ] + }, + "properties": { + "id": "meter-1667", + "maker": "Maker G", + "model": "Model 1667", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.39150255946261, + 24.37316696317713 + ] + }, + "properties": { + "id": "meter-1668", + "maker": "Maker A", + "model": "Model 1668", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.95917942187573, + 29.848242452935974 + ] + }, + "properties": { + "id": "meter-1669", + "maker": "Maker B", + "model": "Model 1669", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.9252235582836, + 30.95463372912727 + ] + }, + "properties": { + "id": "meter-1670", + "maker": "Maker E", + "model": "Model 1670", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84274894306122, + 21.3646273245825 + ] + }, + "properties": { + "id": "meter-1671", + "maker": "Maker D", + "model": "Model 1671", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18093834297108, + 26.290812718634793 + ] + }, + "properties": { + "id": "meter-1672", + "maker": "Maker H", + "model": "Model 1672", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.38348682591966, + 21.37903404035029 + ] + }, + "properties": { + "id": "meter-1673", + "maker": "Maker G", + "model": "Model 1673", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.607948164768786, + 18.32127795592548 + ] + }, + "properties": { + "id": "meter-1674", + "maker": "Maker C", + "model": "Model 1674", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.56923427452657, + 21.352741007530334 + ] + }, + "properties": { + "id": "meter-1675", + "maker": "Maker D", + "model": "Model 1675", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.6338897602745, + 18.41400057304889 + ] + }, + "properties": { + "id": "meter-1676", + "maker": "Maker C", + "model": "Model 1676", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93968889786264, + 26.495514196933062 + ] + }, + "properties": { + "id": "meter-1677", + "maker": "Maker I", + "model": "Model 1677", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.63391974436772, + 25.35769596592244 + ] + }, + "properties": { + "id": "meter-1678", + "maker": "Maker I", + "model": "Model 1678", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.26103731344353, + 17.568971796598394 + ] + }, + "properties": { + "id": "meter-1679", + "maker": "Maker I", + "model": "Model 1679", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.738345727777094, + 26.571502597368596 + ] + }, + "properties": { + "id": "meter-1680", + "maker": "Maker H", + "model": "Model 1680", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.0538468741441, + 21.165660475992972 + ] + }, + "properties": { + "id": "meter-1681", + "maker": "Maker I", + "model": "Model 1681", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.429889613737345, + 19.99283084264036 + ] + }, + "properties": { + "id": "meter-1682", + "maker": "Maker I", + "model": "Model 1682", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.51669195988851, + 18.45248333114123 + ] + }, + "properties": { + "id": "meter-1683", + "maker": "Maker J", + "model": "Model 1683", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03618385515539, + 17.490051894832746 + ] + }, + "properties": { + "id": "meter-1684", + "maker": "Maker D", + "model": "Model 1684", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.7440511641327, + 21.519236249996 + ] + }, + "properties": { + "id": "meter-1685", + "maker": "Maker I", + "model": "Model 1685", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77920761632993, + 21.171984084940366 + ] + }, + "properties": { + "id": "meter-1686", + "maker": "Maker J", + "model": "Model 1686", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00084942162317, + 26.463073021515232 + ] + }, + "properties": { + "id": "meter-1687", + "maker": "Maker I", + "model": "Model 1687", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01462061325166, + 26.506909115170437 + ] + }, + "properties": { + "id": "meter-1688", + "maker": "Maker B", + "model": "Model 1688", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.780875652226236, + 27.509389466462174 + ] + }, + "properties": { + "id": "meter-1689", + "maker": "Maker A", + "model": "Model 1689", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.28031227280038, + 21.47248113793856 + ] + }, + "properties": { + "id": "meter-1690", + "maker": "Maker C", + "model": "Model 1690", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.445552935738405, + 24.530692439115256 + ] + }, + "properties": { + "id": "meter-1691", + "maker": "Maker B", + "model": "Model 1691", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77698664531688, + 21.181293599883585 + ] + }, + "properties": { + "id": "meter-1692", + "maker": "Maker I", + "model": "Model 1692", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.62719935248196, + 28.302155852870893 + ] + }, + "properties": { + "id": "meter-1693", + "maker": "Maker B", + "model": "Model 1693", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.14908934369471, + 24.266322279308785 + ] + }, + "properties": { + "id": "meter-1694", + "maker": "Maker B", + "model": "Model 1694", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.655696160427716, + 24.69238702686733 + ] + }, + "properties": { + "id": "meter-1695", + "maker": "Maker G", + "model": "Model 1695", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21703690607958, + 29.964370634773157 + ] + }, + "properties": { + "id": "meter-1696", + "maker": "Maker H", + "model": "Model 1696", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.127568839113685, + 26.248657161949343 + ] + }, + "properties": { + "id": "meter-1697", + "maker": "Maker H", + "model": "Model 1697", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.98495077708137, + 30.9499341350735 + ] + }, + "properties": { + "id": "meter-1698", + "maker": "Maker C", + "model": "Model 1698", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.64429327058493, + 27.611275954379053 + ] + }, + "properties": { + "id": "meter-1699", + "maker": "Maker G", + "model": "Model 1699", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09346943631568, + 26.407041452260113 + ] + }, + "properties": { + "id": "meter-1700", + "maker": "Maker A", + "model": "Model 1700", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.882985000508526, + 24.510014920853603 + ] + }, + "properties": { + "id": "meter-1701", + "maker": "Maker G", + "model": "Model 1701", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.19031002387819, + 30.074818332445894 + ] + }, + "properties": { + "id": "meter-1702", + "maker": "Maker A", + "model": "Model 1702", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.390540359526995, + 24.49006378855574 + ] + }, + "properties": { + "id": "meter-1703", + "maker": "Maker B", + "model": "Model 1703", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.737732468372954, + 18.38469095031794 + ] + }, + "properties": { + "id": "meter-1704", + "maker": "Maker A", + "model": "Model 1704", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.39407130683951, + 30.133598900586858 + ] + }, + "properties": { + "id": "meter-1705", + "maker": "Maker D", + "model": "Model 1705", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.81685408418965, + 31.100837429039196 + ] + }, + "properties": { + "id": "meter-1706", + "maker": "Maker B", + "model": "Model 1706", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.41733135842672, + 18.000302223223933 + ] + }, + "properties": { + "id": "meter-1707", + "maker": "Maker H", + "model": "Model 1707", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.27134342845343, + 19.80981578322456 + ] + }, + "properties": { + "id": "meter-1708", + "maker": "Maker C", + "model": "Model 1708", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6729468660276, + 27.750886622024417 + ] + }, + "properties": { + "id": "meter-1709", + "maker": "Maker I", + "model": "Model 1709", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.11651938456027, + 21.603461023927522 + ] + }, + "properties": { + "id": "meter-1710", + "maker": "Maker D", + "model": "Model 1710", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.88762226312799, + 31.15312279885776 + ] + }, + "properties": { + "id": "meter-1711", + "maker": "Maker A", + "model": "Model 1711", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.907564536042955, + 31.044897747572683 + ] + }, + "properties": { + "id": "meter-1712", + "maker": "Maker G", + "model": "Model 1712", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.074436551604975, + 29.738240268901652 + ] + }, + "properties": { + "id": "meter-1713", + "maker": "Maker H", + "model": "Model 1713", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.29141827153983, + 30.06490341862461 + ] + }, + "properties": { + "id": "meter-1714", + "maker": "Maker F", + "model": "Model 1714", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.747160378011934, + 26.457936541395892 + ] + }, + "properties": { + "id": "meter-1715", + "maker": "Maker B", + "model": "Model 1715", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.466218401477974, + 21.51968314677279 + ] + }, + "properties": { + "id": "meter-1716", + "maker": "Maker G", + "model": "Model 1716", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13849146508405, + 26.352410109924826 + ] + }, + "properties": { + "id": "meter-1717", + "maker": "Maker C", + "model": "Model 1717", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2165209341583, + 21.5061377763919 + ] + }, + "properties": { + "id": "meter-1718", + "maker": "Maker H", + "model": "Model 1718", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.808078813433845, + 18.53981202853792 + ] + }, + "properties": { + "id": "meter-1719", + "maker": "Maker C", + "model": "Model 1719", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.514500933374514, + 18.114167672820138 + ] + }, + "properties": { + "id": "meter-1720", + "maker": "Maker A", + "model": "Model 1720", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.41052521694237, + 28.290678177501384 + ] + }, + "properties": { + "id": "meter-1721", + "maker": "Maker J", + "model": "Model 1721", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.96025444054095, + 30.877742215455033 + ] + }, + "properties": { + "id": "meter-1722", + "maker": "Maker B", + "model": "Model 1722", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.96191451158909, + 27.56451740668512 + ] + }, + "properties": { + "id": "meter-1723", + "maker": "Maker F", + "model": "Model 1723", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.6893843713563, + 18.033769611680366 + ] + }, + "properties": { + "id": "meter-1724", + "maker": "Maker E", + "model": "Model 1724", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.579986751727105, + 20.2128004868745 + ] + }, + "properties": { + "id": "meter-1725", + "maker": "Maker I", + "model": "Model 1725", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.50509147791819, + 20.16979038511621 + ] + }, + "properties": { + "id": "meter-1726", + "maker": "Maker B", + "model": "Model 1726", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.138562620685164, + 26.321839339507076 + ] + }, + "properties": { + "id": "meter-1727", + "maker": "Maker E", + "model": "Model 1727", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.31457495356848, + 30.202633032243543 + ] + }, + "properties": { + "id": "meter-1728", + "maker": "Maker J", + "model": "Model 1728", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06815840786164, + 26.20418183626148 + ] + }, + "properties": { + "id": "meter-1729", + "maker": "Maker I", + "model": "Model 1729", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.00065281045596, + 24.348011952900727 + ] + }, + "properties": { + "id": "meter-1730", + "maker": "Maker C", + "model": "Model 1730", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.066659831857194, + 26.3354196365976 + ] + }, + "properties": { + "id": "meter-1731", + "maker": "Maker F", + "model": "Model 1731", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.29662780978642, + 17.529286714962314 + ] + }, + "properties": { + "id": "meter-1732", + "maker": "Maker E", + "model": "Model 1732", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.118016413844174, + 30.742820767107546 + ] + }, + "properties": { + "id": "meter-1733", + "maker": "Maker D", + "model": "Model 1733", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20369009155893, + 26.3071359146851 + ] + }, + "properties": { + "id": "meter-1734", + "maker": "Maker D", + "model": "Model 1734", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11707154098989, + 26.37598407635076 + ] + }, + "properties": { + "id": "meter-1735", + "maker": "Maker J", + "model": "Model 1735", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.00626583505816, + 30.02572126392762 + ] + }, + "properties": { + "id": "meter-1736", + "maker": "Maker A", + "model": "Model 1736", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.90428536993032, + 26.47234981984067 + ] + }, + "properties": { + "id": "meter-1737", + "maker": "Maker B", + "model": "Model 1737", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.88163170382347, + 31.005657578325042 + ] + }, + "properties": { + "id": "meter-1738", + "maker": "Maker F", + "model": "Model 1738", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.762371221611346, + 24.526461663476237 + ] + }, + "properties": { + "id": "meter-1739", + "maker": "Maker F", + "model": "Model 1739", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.93619279252636, + 18.5081540658642 + ] + }, + "properties": { + "id": "meter-1740", + "maker": "Maker C", + "model": "Model 1740", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.911015385371606, + 26.660064889548853 + ] + }, + "properties": { + "id": "meter-1741", + "maker": "Maker D", + "model": "Model 1741", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.06929628887974, + 26.367616109146887 + ] + }, + "properties": { + "id": "meter-1742", + "maker": "Maker G", + "model": "Model 1742", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.74689044381912, + 26.182964024280498 + ] + }, + "properties": { + "id": "meter-1743", + "maker": "Maker I", + "model": "Model 1743", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03944413240616, + 31.084891399922267 + ] + }, + "properties": { + "id": "meter-1744", + "maker": "Maker J", + "model": "Model 1744", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.138062636253885, + 26.271446981346823 + ] + }, + "properties": { + "id": "meter-1745", + "maker": "Maker D", + "model": "Model 1745", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23151711216382, + 30.043640287842365 + ] + }, + "properties": { + "id": "meter-1746", + "maker": "Maker H", + "model": "Model 1746", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48069645157664, + 20.06745519500604 + ] + }, + "properties": { + "id": "meter-1747", + "maker": "Maker E", + "model": "Model 1747", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.70945719062155, + 24.565291061507626 + ] + }, + "properties": { + "id": "meter-1748", + "maker": "Maker C", + "model": "Model 1748", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.7886375265388, + 27.71491548982524 + ] + }, + "properties": { + "id": "meter-1749", + "maker": "Maker C", + "model": "Model 1749", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.18092535862143, + 30.791128363846138 + ] + }, + "properties": { + "id": "meter-1750", + "maker": "Maker D", + "model": "Model 1750", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.107695999584635, + 17.48917363589671 + ] + }, + "properties": { + "id": "meter-1751", + "maker": "Maker F", + "model": "Model 1751", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60830182556231, + 24.52408696092344 + ] + }, + "properties": { + "id": "meter-1752", + "maker": "Maker G", + "model": "Model 1752", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.52064461352686, + 21.50447377144067 + ] + }, + "properties": { + "id": "meter-1753", + "maker": "Maker G", + "model": "Model 1753", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.70242425092448, + 18.24814892703994 + ] + }, + "properties": { + "id": "meter-1754", + "maker": "Maker F", + "model": "Model 1754", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.4480447503852, + 18.239743611000502 + ] + }, + "properties": { + "id": "meter-1755", + "maker": "Maker A", + "model": "Model 1755", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94443330490085, + 26.484936559314296 + ] + }, + "properties": { + "id": "meter-1756", + "maker": "Maker E", + "model": "Model 1756", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10389444763029, + 26.133266455254827 + ] + }, + "properties": { + "id": "meter-1757", + "maker": "Maker G", + "model": "Model 1757", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21425917694566, + 26.330510625725125 + ] + }, + "properties": { + "id": "meter-1758", + "maker": "Maker C", + "model": "Model 1758", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.90517071445637, + 26.372258817290465 + ] + }, + "properties": { + "id": "meter-1759", + "maker": "Maker B", + "model": "Model 1759", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96384944130625, + 26.490690037057746 + ] + }, + "properties": { + "id": "meter-1760", + "maker": "Maker H", + "model": "Model 1760", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.69581998037506, + 28.405867977698378 + ] + }, + "properties": { + "id": "meter-1761", + "maker": "Maker F", + "model": "Model 1761", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.71124732805044, + 27.50515664463006 + ] + }, + "properties": { + "id": "meter-1762", + "maker": "Maker C", + "model": "Model 1762", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.877117923398856, + 26.29242632402402 + ] + }, + "properties": { + "id": "meter-1763", + "maker": "Maker I", + "model": "Model 1763", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.008643481441645, + 26.510188303388947 + ] + }, + "properties": { + "id": "meter-1764", + "maker": "Maker A", + "model": "Model 1764", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.974124420754755, + 26.325043724523137 + ] + }, + "properties": { + "id": "meter-1765", + "maker": "Maker B", + "model": "Model 1765", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.82156665451629, + 26.361321402121863 + ] + }, + "properties": { + "id": "meter-1766", + "maker": "Maker A", + "model": "Model 1766", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0870668387722, + 26.41172953193801 + ] + }, + "properties": { + "id": "meter-1767", + "maker": "Maker C", + "model": "Model 1767", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.42908590043568, + 28.33752725113186 + ] + }, + "properties": { + "id": "meter-1768", + "maker": "Maker B", + "model": "Model 1768", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.28119629620929, + 21.191336234990324 + ] + }, + "properties": { + "id": "meter-1769", + "maker": "Maker A", + "model": "Model 1769", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.78416077930427, + 26.256570619089207 + ] + }, + "properties": { + "id": "meter-1770", + "maker": "Maker J", + "model": "Model 1770", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.54037767553464, + 27.74362347628606 + ] + }, + "properties": { + "id": "meter-1771", + "maker": "Maker H", + "model": "Model 1771", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99257256946583, + 26.49032602305819 + ] + }, + "properties": { + "id": "meter-1772", + "maker": "Maker C", + "model": "Model 1772", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99903174091863, + 26.5278524827023 + ] + }, + "properties": { + "id": "meter-1773", + "maker": "Maker B", + "model": "Model 1773", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.4174376022326, + 25.18538510759628 + ] + }, + "properties": { + "id": "meter-1774", + "maker": "Maker E", + "model": "Model 1774", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71688038688165, + 18.36757395858844 + ] + }, + "properties": { + "id": "meter-1775", + "maker": "Maker E", + "model": "Model 1775", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11535853629859, + 26.3444315339481 + ] + }, + "properties": { + "id": "meter-1776", + "maker": "Maker C", + "model": "Model 1776", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.096040301422626, + 31.02059676442448 + ] + }, + "properties": { + "id": "meter-1777", + "maker": "Maker D", + "model": "Model 1777", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.88241652213006, + 26.471131576581776 + ] + }, + "properties": { + "id": "meter-1778", + "maker": "Maker I", + "model": "Model 1778", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.080778758453654, + 24.17111991832545 + ] + }, + "properties": { + "id": "meter-1779", + "maker": "Maker C", + "model": "Model 1779", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.106595985605885, + 26.229180076371854 + ] + }, + "properties": { + "id": "meter-1780", + "maker": "Maker E", + "model": "Model 1780", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.900100442314326, + 26.239812605614134 + ] + }, + "properties": { + "id": "meter-1781", + "maker": "Maker I", + "model": "Model 1781", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.11237109942186, + 24.109202251273587 + ] + }, + "properties": { + "id": "meter-1782", + "maker": "Maker B", + "model": "Model 1782", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.93047816933166, + 24.31050106983999 + ] + }, + "properties": { + "id": "meter-1783", + "maker": "Maker B", + "model": "Model 1783", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86715906018345, + 21.389296011712425 + ] + }, + "properties": { + "id": "meter-1784", + "maker": "Maker A", + "model": "Model 1784", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.198325587640745, + 26.290799062503357 + ] + }, + "properties": { + "id": "meter-1785", + "maker": "Maker E", + "model": "Model 1785", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.814640677245315, + 27.461941898045684 + ] + }, + "properties": { + "id": "meter-1786", + "maker": "Maker E", + "model": "Model 1786", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13108141340002, + 26.258036838491748 + ] + }, + "properties": { + "id": "meter-1787", + "maker": "Maker C", + "model": "Model 1787", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.7749877417321, + 18.155915890405364 + ] + }, + "properties": { + "id": "meter-1788", + "maker": "Maker C", + "model": "Model 1788", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.014005307192534, + 26.492686701438394 + ] + }, + "properties": { + "id": "meter-1789", + "maker": "Maker H", + "model": "Model 1789", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.101577578935306, + 24.172626832015958 + ] + }, + "properties": { + "id": "meter-1790", + "maker": "Maker F", + "model": "Model 1790", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.62616910974074, + 28.686016396053226 + ] + }, + "properties": { + "id": "meter-1791", + "maker": "Maker G", + "model": "Model 1791", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.85820546609654, + 27.425554119625918 + ] + }, + "properties": { + "id": "meter-1792", + "maker": "Maker E", + "model": "Model 1792", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12914686096288, + 17.4746853214854 + ] + }, + "properties": { + "id": "meter-1793", + "maker": "Maker H", + "model": "Model 1793", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.90501136788545, + 26.594548454438467 + ] + }, + "properties": { + "id": "meter-1794", + "maker": "Maker A", + "model": "Model 1794", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.31944908123705, + 19.902933132221058 + ] + }, + "properties": { + "id": "meter-1795", + "maker": "Maker G", + "model": "Model 1795", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.42604569332162, + 25.22342107530038 + ] + }, + "properties": { + "id": "meter-1796", + "maker": "Maker J", + "model": "Model 1796", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.9406298315644, + 31.064625658846094 + ] + }, + "properties": { + "id": "meter-1797", + "maker": "Maker J", + "model": "Model 1797", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.37414552895984, + 21.47910999266441 + ] + }, + "properties": { + "id": "meter-1798", + "maker": "Maker J", + "model": "Model 1798", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89778522082122, + 21.409473410289923 + ] + }, + "properties": { + "id": "meter-1799", + "maker": "Maker C", + "model": "Model 1799", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.46001080226683, + 24.65905082195434 + ] + }, + "properties": { + "id": "meter-1800", + "maker": "Maker I", + "model": "Model 1800", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70958353165605, + 20.11063298209026 + ] + }, + "properties": { + "id": "meter-1801", + "maker": "Maker G", + "model": "Model 1801", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.768693961658265, + 25.55997708089587 + ] + }, + "properties": { + "id": "meter-1802", + "maker": "Maker C", + "model": "Model 1802", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.88077268770356, + 26.555167738954726 + ] + }, + "properties": { + "id": "meter-1803", + "maker": "Maker A", + "model": "Model 1803", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96955554741461, + 26.29728826832024 + ] + }, + "properties": { + "id": "meter-1804", + "maker": "Maker B", + "model": "Model 1804", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.18229901585224, + 21.558567973045434 + ] + }, + "properties": { + "id": "meter-1805", + "maker": "Maker J", + "model": "Model 1805", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12826866939252, + 26.26367428020564 + ] + }, + "properties": { + "id": "meter-1806", + "maker": "Maker J", + "model": "Model 1806", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52110596863649, + 18.235374992868522 + ] + }, + "properties": { + "id": "meter-1807", + "maker": "Maker A", + "model": "Model 1807", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.327245112607415, + 21.614136327888954 + ] + }, + "properties": { + "id": "meter-1808", + "maker": "Maker A", + "model": "Model 1808", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.66775473303841, + 24.740570290423356 + ] + }, + "properties": { + "id": "meter-1809", + "maker": "Maker A", + "model": "Model 1809", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99025994981516, + 17.55764681979687 + ] + }, + "properties": { + "id": "meter-1810", + "maker": "Maker D", + "model": "Model 1810", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.258665056280975, + 19.80937181153736 + ] + }, + "properties": { + "id": "meter-1811", + "maker": "Maker D", + "model": "Model 1811", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.149054980016835, + 26.202609349180996 + ] + }, + "properties": { + "id": "meter-1812", + "maker": "Maker J", + "model": "Model 1812", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.07522766403824, + 17.65031476284445 + ] + }, + "properties": { + "id": "meter-1813", + "maker": "Maker C", + "model": "Model 1813", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20802996452713, + 26.278947193404104 + ] + }, + "properties": { + "id": "meter-1814", + "maker": "Maker F", + "model": "Model 1814", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.838925910163944, + 18.254369426551847 + ] + }, + "properties": { + "id": "meter-1815", + "maker": "Maker G", + "model": "Model 1815", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0694135157429, + 24.093968898496822 + ] + }, + "properties": { + "id": "meter-1816", + "maker": "Maker B", + "model": "Model 1816", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.82706668572116, + 21.514175240349036 + ] + }, + "properties": { + "id": "meter-1817", + "maker": "Maker B", + "model": "Model 1817", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06647185606415, + 24.085692507698685 + ] + }, + "properties": { + "id": "meter-1818", + "maker": "Maker E", + "model": "Model 1818", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.693499978556666, + 24.698631550509955 + ] + }, + "properties": { + "id": "meter-1819", + "maker": "Maker I", + "model": "Model 1819", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.80148467075322, + 26.43079141294955 + ] + }, + "properties": { + "id": "meter-1820", + "maker": "Maker G", + "model": "Model 1820", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.83195191041956, + 18.311050691087527 + ] + }, + "properties": { + "id": "meter-1821", + "maker": "Maker H", + "model": "Model 1821", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.83670701727274, + 26.429054109623237 + ] + }, + "properties": { + "id": "meter-1822", + "maker": "Maker A", + "model": "Model 1822", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.32948963875252, + 29.786335741725246 + ] + }, + "properties": { + "id": "meter-1823", + "maker": "Maker I", + "model": "Model 1823", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.643096723873896, + 27.667028030888517 + ] + }, + "properties": { + "id": "meter-1824", + "maker": "Maker D", + "model": "Model 1824", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.86481022308404, + 18.30273373494121 + ] + }, + "properties": { + "id": "meter-1825", + "maker": "Maker H", + "model": "Model 1825", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.67279090666465, + 18.414529285913872 + ] + }, + "properties": { + "id": "meter-1826", + "maker": "Maker E", + "model": "Model 1826", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.223765821793684, + 26.430807630571984 + ] + }, + "properties": { + "id": "meter-1827", + "maker": "Maker H", + "model": "Model 1827", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.01182589063307, + 18.385667391585606 + ] + }, + "properties": { + "id": "meter-1828", + "maker": "Maker B", + "model": "Model 1828", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04168684253423, + 24.186504924137324 + ] + }, + "properties": { + "id": "meter-1829", + "maker": "Maker D", + "model": "Model 1829", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05013827254191, + 24.191174039402895 + ] + }, + "properties": { + "id": "meter-1830", + "maker": "Maker B", + "model": "Model 1830", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.151581415743415, + 26.25119486057075 + ] + }, + "properties": { + "id": "meter-1831", + "maker": "Maker E", + "model": "Model 1831", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.01269718387792, + 30.090291777653142 + ] + }, + "properties": { + "id": "meter-1832", + "maker": "Maker J", + "model": "Model 1832", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.168814154082526, + 29.945970300420854 + ] + }, + "properties": { + "id": "meter-1833", + "maker": "Maker G", + "model": "Model 1833", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.7607651234663, + 18.20489914209926 + ] + }, + "properties": { + "id": "meter-1834", + "maker": "Maker G", + "model": "Model 1834", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20990512985566, + 26.283918559057234 + ] + }, + "properties": { + "id": "meter-1835", + "maker": "Maker E", + "model": "Model 1835", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.387906931218566, + 30.018027256407787 + ] + }, + "properties": { + "id": "meter-1836", + "maker": "Maker F", + "model": "Model 1836", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.77932232985196, + 24.649439064949846 + ] + }, + "properties": { + "id": "meter-1837", + "maker": "Maker I", + "model": "Model 1837", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53002121407644, + 18.110066503221297 + ] + }, + "properties": { + "id": "meter-1838", + "maker": "Maker I", + "model": "Model 1838", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.66680000092216, + 24.683837336139383 + ] + }, + "properties": { + "id": "meter-1839", + "maker": "Maker B", + "model": "Model 1839", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.43913736388281, + 18.25990417137186 + ] + }, + "properties": { + "id": "meter-1840", + "maker": "Maker F", + "model": "Model 1840", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.80091856415004, + 26.619781233277386 + ] + }, + "properties": { + "id": "meter-1841", + "maker": "Maker B", + "model": "Model 1841", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09470290455038, + 24.106354771662936 + ] + }, + "properties": { + "id": "meter-1842", + "maker": "Maker B", + "model": "Model 1842", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72839264642703, + 18.29031346378314 + ] + }, + "properties": { + "id": "meter-1843", + "maker": "Maker E", + "model": "Model 1843", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05556425348893, + 24.15596543917838 + ] + }, + "properties": { + "id": "meter-1844", + "maker": "Maker I", + "model": "Model 1844", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.28565652259811, + 20.010348264334134 + ] + }, + "properties": { + "id": "meter-1845", + "maker": "Maker I", + "model": "Model 1845", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03032028949264, + 26.298073152117578 + ] + }, + "properties": { + "id": "meter-1846", + "maker": "Maker E", + "model": "Model 1846", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.86214466583739, + 27.543803543871206 + ] + }, + "properties": { + "id": "meter-1847", + "maker": "Maker H", + "model": "Model 1847", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.227967736837535, + 17.61478460507273 + ] + }, + "properties": { + "id": "meter-1848", + "maker": "Maker D", + "model": "Model 1848", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.03167808914676, + 30.02532174811354 + ] + }, + "properties": { + "id": "meter-1849", + "maker": "Maker G", + "model": "Model 1849", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05094388762761, + 26.327480126658404 + ] + }, + "properties": { + "id": "meter-1850", + "maker": "Maker F", + "model": "Model 1850", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99098292335038, + 26.27967298759466 + ] + }, + "properties": { + "id": "meter-1851", + "maker": "Maker E", + "model": "Model 1851", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.34879796702647, + 25.448808443318672 + ] + }, + "properties": { + "id": "meter-1852", + "maker": "Maker B", + "model": "Model 1852", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.65499795642012, + 25.345326844117828 + ] + }, + "properties": { + "id": "meter-1853", + "maker": "Maker E", + "model": "Model 1853", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.5501161457228, + 18.22552805069461 + ] + }, + "properties": { + "id": "meter-1854", + "maker": "Maker B", + "model": "Model 1854", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20586157160386, + 26.271736244321765 + ] + }, + "properties": { + "id": "meter-1855", + "maker": "Maker C", + "model": "Model 1855", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.05443768767968, + 30.995767156238447 + ] + }, + "properties": { + "id": "meter-1856", + "maker": "Maker B", + "model": "Model 1856", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.977950646397005, + 30.715162945523073 + ] + }, + "properties": { + "id": "meter-1857", + "maker": "Maker I", + "model": "Model 1857", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.160241400742045, + 26.293196045118385 + ] + }, + "properties": { + "id": "meter-1858", + "maker": "Maker C", + "model": "Model 1858", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.169149762454026, + 31.14494069084281 + ] + }, + "properties": { + "id": "meter-1859", + "maker": "Maker B", + "model": "Model 1859", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.82166735917022, + 21.4189985684632 + ] + }, + "properties": { + "id": "meter-1860", + "maker": "Maker I", + "model": "Model 1860", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08827746293801, + 26.41655772365303 + ] + }, + "properties": { + "id": "meter-1861", + "maker": "Maker J", + "model": "Model 1861", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.075287505654934, + 17.61181983955419 + ] + }, + "properties": { + "id": "meter-1862", + "maker": "Maker E", + "model": "Model 1862", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.593681880578174, + 25.340068859611858 + ] + }, + "properties": { + "id": "meter-1863", + "maker": "Maker F", + "model": "Model 1863", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.379246460970414, + 30.030292371550164 + ] + }, + "properties": { + "id": "meter-1864", + "maker": "Maker A", + "model": "Model 1864", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03335219262991, + 30.966922142691633 + ] + }, + "properties": { + "id": "meter-1865", + "maker": "Maker A", + "model": "Model 1865", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.280257550824516, + 29.93805551124285 + ] + }, + "properties": { + "id": "meter-1866", + "maker": "Maker A", + "model": "Model 1866", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.130749968007905, + 17.49072070557696 + ] + }, + "properties": { + "id": "meter-1867", + "maker": "Maker F", + "model": "Model 1867", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.7770720915405, + 21.181518844270382 + ] + }, + "properties": { + "id": "meter-1868", + "maker": "Maker C", + "model": "Model 1868", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97458472385591, + 26.326183503390514 + ] + }, + "properties": { + "id": "meter-1869", + "maker": "Maker E", + "model": "Model 1869", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.686146246984435, + 24.80132074175925 + ] + }, + "properties": { + "id": "meter-1870", + "maker": "Maker D", + "model": "Model 1870", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07463877905877, + 26.19759770411351 + ] + }, + "properties": { + "id": "meter-1871", + "maker": "Maker C", + "model": "Model 1871", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.848184681803566, + 17.4966305377781 + ] + }, + "properties": { + "id": "meter-1872", + "maker": "Maker C", + "model": "Model 1872", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.125191072629, + 26.188875534302497 + ] + }, + "properties": { + "id": "meter-1873", + "maker": "Maker F", + "model": "Model 1873", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.54880688857878, + 18.104109267180792 + ] + }, + "properties": { + "id": "meter-1874", + "maker": "Maker A", + "model": "Model 1874", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.871138173627905, + 24.65143782154483 + ] + }, + "properties": { + "id": "meter-1875", + "maker": "Maker A", + "model": "Model 1875", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.93141969467979, + 21.596832350707984 + ] + }, + "properties": { + "id": "meter-1876", + "maker": "Maker A", + "model": "Model 1876", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11114293593403, + 26.35132972854255 + ] + }, + "properties": { + "id": "meter-1877", + "maker": "Maker D", + "model": "Model 1877", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.25812541669158, + 29.976134670898954 + ] + }, + "properties": { + "id": "meter-1878", + "maker": "Maker E", + "model": "Model 1878", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.859897613585254, + 21.390057646351774 + ] + }, + "properties": { + "id": "meter-1879", + "maker": "Maker D", + "model": "Model 1879", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.24769576531466, + 17.561450060990033 + ] + }, + "properties": { + "id": "meter-1880", + "maker": "Maker C", + "model": "Model 1880", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.710563426009315, + 25.367452503684813 + ] + }, + "properties": { + "id": "meter-1881", + "maker": "Maker C", + "model": "Model 1881", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.31236714282216, + 29.94674984366793 + ] + }, + "properties": { + "id": "meter-1882", + "maker": "Maker C", + "model": "Model 1882", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.90452124105142, + 26.726047813945563 + ] + }, + "properties": { + "id": "meter-1883", + "maker": "Maker B", + "model": "Model 1883", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2918848732417, + 21.66125684887488 + ] + }, + "properties": { + "id": "meter-1884", + "maker": "Maker D", + "model": "Model 1884", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.43595410455744, + 28.288867998803422 + ] + }, + "properties": { + "id": "meter-1885", + "maker": "Maker A", + "model": "Model 1885", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.704208609551976, + 21.25895672528927 + ] + }, + "properties": { + "id": "meter-1886", + "maker": "Maker A", + "model": "Model 1886", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.36192350090304, + 25.400460158649604 + ] + }, + "properties": { + "id": "meter-1887", + "maker": "Maker H", + "model": "Model 1887", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13747289003598, + 17.497042860664347 + ] + }, + "properties": { + "id": "meter-1888", + "maker": "Maker A", + "model": "Model 1888", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21057664765725, + 21.415714465762054 + ] + }, + "properties": { + "id": "meter-1889", + "maker": "Maker G", + "model": "Model 1889", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15209635587994, + 26.198510202897914 + ] + }, + "properties": { + "id": "meter-1890", + "maker": "Maker C", + "model": "Model 1890", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.548603273941424, + 19.794520648981084 + ] + }, + "properties": { + "id": "meter-1891", + "maker": "Maker J", + "model": "Model 1891", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.62803450048336, + 28.39344222731649 + ] + }, + "properties": { + "id": "meter-1892", + "maker": "Maker J", + "model": "Model 1892", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.235413605350146, + 21.44557912722987 + ] + }, + "properties": { + "id": "meter-1893", + "maker": "Maker J", + "model": "Model 1893", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.92102212032876, + 18.213672224633683 + ] + }, + "properties": { + "id": "meter-1894", + "maker": "Maker I", + "model": "Model 1894", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.942180591992305, + 26.265561579444228 + ] + }, + "properties": { + "id": "meter-1895", + "maker": "Maker H", + "model": "Model 1895", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.58632110752491, + 28.348179847724268 + ] + }, + "properties": { + "id": "meter-1896", + "maker": "Maker F", + "model": "Model 1896", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.34068362297948, + 18.25583273184469 + ] + }, + "properties": { + "id": "meter-1897", + "maker": "Maker I", + "model": "Model 1897", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.40549450448507, + 25.450547794231646 + ] + }, + "properties": { + "id": "meter-1898", + "maker": "Maker J", + "model": "Model 1898", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98654738992111, + 26.48887491055497 + ] + }, + "properties": { + "id": "meter-1899", + "maker": "Maker H", + "model": "Model 1899", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0367118821455, + 26.305018694870338 + ] + }, + "properties": { + "id": "meter-1900", + "maker": "Maker B", + "model": "Model 1900", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.994931655321814, + 26.494484286960475 + ] + }, + "properties": { + "id": "meter-1901", + "maker": "Maker H", + "model": "Model 1901", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.00354717125033, + 30.09787793047428 + ] + }, + "properties": { + "id": "meter-1902", + "maker": "Maker F", + "model": "Model 1902", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86373066012538, + 21.512879106020375 + ] + }, + "properties": { + "id": "meter-1903", + "maker": "Maker B", + "model": "Model 1903", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.46043111643219, + 25.238519555566803 + ] + }, + "properties": { + "id": "meter-1904", + "maker": "Maker E", + "model": "Model 1904", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.190144188546334, + 24.13403303149231 + ] + }, + "properties": { + "id": "meter-1905", + "maker": "Maker G", + "model": "Model 1905", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.703804268862484, + 27.63280196984827 + ] + }, + "properties": { + "id": "meter-1906", + "maker": "Maker C", + "model": "Model 1906", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.77499112771987, + 18.174830163566554 + ] + }, + "properties": { + "id": "meter-1907", + "maker": "Maker H", + "model": "Model 1907", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.276943982674304, + 19.933850443245188 + ] + }, + "properties": { + "id": "meter-1908", + "maker": "Maker A", + "model": "Model 1908", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.609645575583826, + 24.66800857732387 + ] + }, + "properties": { + "id": "meter-1909", + "maker": "Maker I", + "model": "Model 1909", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.30693582303078, + 29.819649875868826 + ] + }, + "properties": { + "id": "meter-1910", + "maker": "Maker B", + "model": "Model 1910", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.450117781023415, + 28.17374949147715 + ] + }, + "properties": { + "id": "meter-1911", + "maker": "Maker J", + "model": "Model 1911", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.3787366860724, + 20.24322215666556 + ] + }, + "properties": { + "id": "meter-1912", + "maker": "Maker I", + "model": "Model 1912", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09724231017658, + 26.413585809729206 + ] + }, + "properties": { + "id": "meter-1913", + "maker": "Maker F", + "model": "Model 1913", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.18174295472761, + 30.1070814765872 + ] + }, + "properties": { + "id": "meter-1914", + "maker": "Maker F", + "model": "Model 1914", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.87396833180875, + 24.57277675991816 + ] + }, + "properties": { + "id": "meter-1915", + "maker": "Maker G", + "model": "Model 1915", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.83590465680006, + 24.595156706206428 + ] + }, + "properties": { + "id": "meter-1916", + "maker": "Maker I", + "model": "Model 1916", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.549989130938584, + 18.26976616496565 + ] + }, + "properties": { + "id": "meter-1917", + "maker": "Maker J", + "model": "Model 1917", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02682669101175, + 26.490483981706625 + ] + }, + "properties": { + "id": "meter-1918", + "maker": "Maker I", + "model": "Model 1918", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69116334208918, + 18.18980841825898 + ] + }, + "properties": { + "id": "meter-1919", + "maker": "Maker B", + "model": "Model 1919", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09088918618409, + 26.410362935053 + ] + }, + "properties": { + "id": "meter-1920", + "maker": "Maker E", + "model": "Model 1920", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87162012881592, + 25.40698207579455 + ] + }, + "properties": { + "id": "meter-1921", + "maker": "Maker I", + "model": "Model 1921", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.3061256102639, + 24.166949589272747 + ] + }, + "properties": { + "id": "meter-1922", + "maker": "Maker B", + "model": "Model 1922", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.192298571853044, + 26.242401484378302 + ] + }, + "properties": { + "id": "meter-1923", + "maker": "Maker H", + "model": "Model 1923", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52601277607313, + 18.493730192561976 + ] + }, + "properties": { + "id": "meter-1924", + "maker": "Maker J", + "model": "Model 1924", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.28367550949835, + 23.979524303927022 + ] + }, + "properties": { + "id": "meter-1925", + "maker": "Maker D", + "model": "Model 1925", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45686332077191, + 18.458351976410693 + ] + }, + "properties": { + "id": "meter-1926", + "maker": "Maker D", + "model": "Model 1926", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.719508668563186, + 27.426163994434642 + ] + }, + "properties": { + "id": "meter-1927", + "maker": "Maker A", + "model": "Model 1927", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.578511582337484, + 24.481367583136212 + ] + }, + "properties": { + "id": "meter-1928", + "maker": "Maker I", + "model": "Model 1928", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94088627743881, + 26.3762435846195 + ] + }, + "properties": { + "id": "meter-1929", + "maker": "Maker A", + "model": "Model 1929", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.915937993452424, + 26.37067257204619 + ] + }, + "properties": { + "id": "meter-1930", + "maker": "Maker G", + "model": "Model 1930", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15814525224963, + 26.324604599198995 + ] + }, + "properties": { + "id": "meter-1931", + "maker": "Maker G", + "model": "Model 1931", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.74669972938691, + 27.640576113813804 + ] + }, + "properties": { + "id": "meter-1932", + "maker": "Maker G", + "model": "Model 1932", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06554660871902, + 26.41143245770342 + ] + }, + "properties": { + "id": "meter-1933", + "maker": "Maker E", + "model": "Model 1933", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.46565365811601, + 24.789126206677278 + ] + }, + "properties": { + "id": "meter-1934", + "maker": "Maker G", + "model": "Model 1934", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61162193016465, + 24.524748743526867 + ] + }, + "properties": { + "id": "meter-1935", + "maker": "Maker J", + "model": "Model 1935", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.61041515493046, + 24.769889567111427 + ] + }, + "properties": { + "id": "meter-1936", + "maker": "Maker H", + "model": "Model 1936", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.583391880504486, + 24.506941415261892 + ] + }, + "properties": { + "id": "meter-1937", + "maker": "Maker F", + "model": "Model 1937", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.356270980864764, + 21.29145706585532 + ] + }, + "properties": { + "id": "meter-1938", + "maker": "Maker E", + "model": "Model 1938", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.68217894398801, + 25.422552171409585 + ] + }, + "properties": { + "id": "meter-1939", + "maker": "Maker F", + "model": "Model 1939", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98084393164752, + 26.61613934040296 + ] + }, + "properties": { + "id": "meter-1940", + "maker": "Maker J", + "model": "Model 1940", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10074880731728, + 26.328899911066692 + ] + }, + "properties": { + "id": "meter-1941", + "maker": "Maker F", + "model": "Model 1941", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.6946910956691, + 18.30177569354249 + ] + }, + "properties": { + "id": "meter-1942", + "maker": "Maker B", + "model": "Model 1942", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.01917396510471, + 24.116222672734008 + ] + }, + "properties": { + "id": "meter-1943", + "maker": "Maker A", + "model": "Model 1943", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13450692985826, + 26.404755090455797 + ] + }, + "properties": { + "id": "meter-1944", + "maker": "Maker E", + "model": "Model 1944", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04976492712082, + 24.152401056057904 + ] + }, + "properties": { + "id": "meter-1945", + "maker": "Maker C", + "model": "Model 1945", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.966076466233986, + 26.46081647775092 + ] + }, + "properties": { + "id": "meter-1946", + "maker": "Maker B", + "model": "Model 1946", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54313288132548, + 25.44998226640441 + ] + }, + "properties": { + "id": "meter-1947", + "maker": "Maker J", + "model": "Model 1947", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.776649390598, + 27.72829009414138 + ] + }, + "properties": { + "id": "meter-1948", + "maker": "Maker F", + "model": "Model 1948", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.710242163845, + 27.42375058468342 + ] + }, + "properties": { + "id": "meter-1949", + "maker": "Maker C", + "model": "Model 1949", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.180480068941954, + 26.28132287611779 + ] + }, + "properties": { + "id": "meter-1950", + "maker": "Maker G", + "model": "Model 1950", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.209659461735214, + 26.340190174457533 + ] + }, + "properties": { + "id": "meter-1951", + "maker": "Maker H", + "model": "Model 1951", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.46355287069732, + 28.60604221997049 + ] + }, + "properties": { + "id": "meter-1952", + "maker": "Maker G", + "model": "Model 1952", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.50792679445923, + 19.985798204519405 + ] + }, + "properties": { + "id": "meter-1953", + "maker": "Maker J", + "model": "Model 1953", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.72340457154614, + 20.01156510802962 + ] + }, + "properties": { + "id": "meter-1954", + "maker": "Maker A", + "model": "Model 1954", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.981640072386654, + 26.281697210011977 + ] + }, + "properties": { + "id": "meter-1955", + "maker": "Maker A", + "model": "Model 1955", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.24888329090903, + 24.088526140795622 + ] + }, + "properties": { + "id": "meter-1956", + "maker": "Maker H", + "model": "Model 1956", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.1817617777839, + 31.100579152619023 + ] + }, + "properties": { + "id": "meter-1957", + "maker": "Maker C", + "model": "Model 1957", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.018361008032535, + 29.82621259962634 + ] + }, + "properties": { + "id": "meter-1958", + "maker": "Maker B", + "model": "Model 1958", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9536964017475, + 26.618547693175312 + ] + }, + "properties": { + "id": "meter-1959", + "maker": "Maker C", + "model": "Model 1959", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09207372129635, + 26.429915605545393 + ] + }, + "properties": { + "id": "meter-1960", + "maker": "Maker B", + "model": "Model 1960", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.61916411092767, + 18.02447092361761 + ] + }, + "properties": { + "id": "meter-1961", + "maker": "Maker H", + "model": "Model 1961", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.92238866198992, + 21.66138542662151 + ] + }, + "properties": { + "id": "meter-1962", + "maker": "Maker B", + "model": "Model 1962", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.21332857655608, + 20.0199684076747 + ] + }, + "properties": { + "id": "meter-1963", + "maker": "Maker E", + "model": "Model 1963", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.774674903932485, + 21.505023155513346 + ] + }, + "properties": { + "id": "meter-1964", + "maker": "Maker B", + "model": "Model 1964", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.564184738960265, + 24.75238012880042 + ] + }, + "properties": { + "id": "meter-1965", + "maker": "Maker D", + "model": "Model 1965", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.300469574985456, + 20.086455590307832 + ] + }, + "properties": { + "id": "meter-1966", + "maker": "Maker F", + "model": "Model 1966", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.82259395353987, + 18.484557363884363 + ] + }, + "properties": { + "id": "meter-1967", + "maker": "Maker C", + "model": "Model 1967", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.64090881143167, + 18.433669814887065 + ] + }, + "properties": { + "id": "meter-1968", + "maker": "Maker F", + "model": "Model 1968", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.922122643385, + 31.163085201059438 + ] + }, + "properties": { + "id": "meter-1969", + "maker": "Maker I", + "model": "Model 1969", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98489457507766, + 26.476758469326157 + ] + }, + "properties": { + "id": "meter-1970", + "maker": "Maker J", + "model": "Model 1970", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.80667282006875, + 24.382357857229227 + ] + }, + "properties": { + "id": "meter-1971", + "maker": "Maker A", + "model": "Model 1971", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94459751841408, + 17.597544095947917 + ] + }, + "properties": { + "id": "meter-1972", + "maker": "Maker B", + "model": "Model 1972", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2609886468438, + 21.484983885110072 + ] + }, + "properties": { + "id": "meter-1973", + "maker": "Maker D", + "model": "Model 1973", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.49214606583072, + 24.48651326661196 + ] + }, + "properties": { + "id": "meter-1974", + "maker": "Maker F", + "model": "Model 1974", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.17168740686574, + 30.09805813532371 + ] + }, + "properties": { + "id": "meter-1975", + "maker": "Maker F", + "model": "Model 1975", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.04813338869171, + 26.236056885880377 + ] + }, + "properties": { + "id": "meter-1976", + "maker": "Maker C", + "model": "Model 1976", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.27546371160373, + 20.013910892720116 + ] + }, + "properties": { + "id": "meter-1977", + "maker": "Maker H", + "model": "Model 1977", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00257573224404, + 17.624495402404975 + ] + }, + "properties": { + "id": "meter-1978", + "maker": "Maker F", + "model": "Model 1978", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.41577319817009, + 29.983182370151784 + ] + }, + "properties": { + "id": "meter-1979", + "maker": "Maker A", + "model": "Model 1979", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.386131500653384, + 25.32180409215845 + ] + }, + "properties": { + "id": "meter-1980", + "maker": "Maker A", + "model": "Model 1980", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.706863467599455, + 18.514208190417538 + ] + }, + "properties": { + "id": "meter-1981", + "maker": "Maker G", + "model": "Model 1981", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.20047429461971, + 21.509441213113607 + ] + }, + "properties": { + "id": "meter-1982", + "maker": "Maker A", + "model": "Model 1982", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.116409021979436, + 26.20320784220608 + ] + }, + "properties": { + "id": "meter-1983", + "maker": "Maker G", + "model": "Model 1983", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.33209753632307, + 18.137804928763256 + ] + }, + "properties": { + "id": "meter-1984", + "maker": "Maker G", + "model": "Model 1984", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.709147762666916, + 25.372931312338103 + ] + }, + "properties": { + "id": "meter-1985", + "maker": "Maker G", + "model": "Model 1985", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.30941280145987, + 23.966602757350262 + ] + }, + "properties": { + "id": "meter-1986", + "maker": "Maker I", + "model": "Model 1986", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.63163467732938, + 24.4272041877625 + ] + }, + "properties": { + "id": "meter-1987", + "maker": "Maker G", + "model": "Model 1987", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19480741067561, + 26.332298432927566 + ] + }, + "properties": { + "id": "meter-1988", + "maker": "Maker J", + "model": "Model 1988", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.078168395559594, + 26.298537626475035 + ] + }, + "properties": { + "id": "meter-1989", + "maker": "Maker H", + "model": "Model 1989", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.681045811897036, + 18.135479550006476 + ] + }, + "properties": { + "id": "meter-1990", + "maker": "Maker I", + "model": "Model 1990", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.926169455880036, + 26.270521887667293 + ] + }, + "properties": { + "id": "meter-1991", + "maker": "Maker I", + "model": "Model 1991", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.577680708590414, + 24.572104142474657 + ] + }, + "properties": { + "id": "meter-1992", + "maker": "Maker C", + "model": "Model 1992", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.59197264932129, + 28.290889609034082 + ] + }, + "properties": { + "id": "meter-1993", + "maker": "Maker E", + "model": "Model 1993", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.208134914170714, + 29.97119807746248 + ] + }, + "properties": { + "id": "meter-1994", + "maker": "Maker A", + "model": "Model 1994", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98869005188335, + 17.62434625087647 + ] + }, + "properties": { + "id": "meter-1995", + "maker": "Maker F", + "model": "Model 1995", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.707683220787715, + 25.362960639266305 + ] + }, + "properties": { + "id": "meter-1996", + "maker": "Maker H", + "model": "Model 1996", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.101905818703834, + 26.38876167843573 + ] + }, + "properties": { + "id": "meter-1997", + "maker": "Maker A", + "model": "Model 1997", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00090512331605, + 26.58402764653151 + ] + }, + "properties": { + "id": "meter-1998", + "maker": "Maker F", + "model": "Model 1998", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.40538432410498, + 21.469895147656263 + ] + }, + "properties": { + "id": "meter-1999", + "maker": "Maker J", + "model": "Model 1999", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.448927439267095, + 25.433477512307498 + ] + }, + "properties": { + "id": "meter-2000", + "maker": "Maker D", + "model": "Model 2000", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.61592273911003, + 25.242379433763006 + ] + }, + "properties": { + "id": "meter-2001", + "maker": "Maker H", + "model": "Model 2001", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.2104492305669, + 24.1820267039129 + ] + }, + "properties": { + "id": "meter-2002", + "maker": "Maker H", + "model": "Model 2002", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.0952471564797, + 29.696059352116134 + ] + }, + "properties": { + "id": "meter-2003", + "maker": "Maker A", + "model": "Model 2003", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.75137295099034, + 21.233360860208098 + ] + }, + "properties": { + "id": "meter-2004", + "maker": "Maker B", + "model": "Model 2004", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.10824038452268, + 29.83836161319794 + ] + }, + "properties": { + "id": "meter-2005", + "maker": "Maker J", + "model": "Model 2005", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96466652818029, + 17.555980717676604 + ] + }, + "properties": { + "id": "meter-2006", + "maker": "Maker H", + "model": "Model 2006", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.12603530436382, + 30.984471462338647 + ] + }, + "properties": { + "id": "meter-2007", + "maker": "Maker C", + "model": "Model 2007", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.083273623611326, + 17.544837303721668 + ] + }, + "properties": { + "id": "meter-2008", + "maker": "Maker D", + "model": "Model 2008", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.632802464690556, + 18.455557212746662 + ] + }, + "properties": { + "id": "meter-2009", + "maker": "Maker I", + "model": "Model 2009", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99537979501754, + 17.470521427471844 + ] + }, + "properties": { + "id": "meter-2010", + "maker": "Maker F", + "model": "Model 2010", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89884192296492, + 24.478378987660857 + ] + }, + "properties": { + "id": "meter-2011", + "maker": "Maker E", + "model": "Model 2011", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.77511365614759, + 27.31944223060246 + ] + }, + "properties": { + "id": "meter-2012", + "maker": "Maker H", + "model": "Model 2012", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.427108499495255, + 20.138839024533482 + ] + }, + "properties": { + "id": "meter-2013", + "maker": "Maker B", + "model": "Model 2013", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.70628732760918, + 18.124127746536367 + ] + }, + "properties": { + "id": "meter-2014", + "maker": "Maker D", + "model": "Model 2014", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.041876487967095, + 26.268299746699068 + ] + }, + "properties": { + "id": "meter-2015", + "maker": "Maker J", + "model": "Model 2015", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99527065637545, + 26.502275560607846 + ] + }, + "properties": { + "id": "meter-2016", + "maker": "Maker D", + "model": "Model 2016", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.573330797478626, + 28.45944177297052 + ] + }, + "properties": { + "id": "meter-2017", + "maker": "Maker I", + "model": "Model 2017", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.643950355789784, + 27.40659624333672 + ] + }, + "properties": { + "id": "meter-2018", + "maker": "Maker D", + "model": "Model 2018", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.80407208348566, + 18.433695798235537 + ] + }, + "properties": { + "id": "meter-2019", + "maker": "Maker C", + "model": "Model 2019", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.51815679758046, + 24.68829410664498 + ] + }, + "properties": { + "id": "meter-2020", + "maker": "Maker E", + "model": "Model 2020", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.109419021578645, + 24.177543989253497 + ] + }, + "properties": { + "id": "meter-2021", + "maker": "Maker G", + "model": "Model 2021", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.392627530056664, + 24.59222964408279 + ] + }, + "properties": { + "id": "meter-2022", + "maker": "Maker H", + "model": "Model 2022", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.350258576996445, + 25.22831392152793 + ] + }, + "properties": { + "id": "meter-2023", + "maker": "Maker J", + "model": "Model 2023", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55168017752337, + 27.313497819198627 + ] + }, + "properties": { + "id": "meter-2024", + "maker": "Maker A", + "model": "Model 2024", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1357551629264, + 26.354284381223668 + ] + }, + "properties": { + "id": "meter-2025", + "maker": "Maker G", + "model": "Model 2025", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.83968727498953, + 27.40457033190404 + ] + }, + "properties": { + "id": "meter-2026", + "maker": "Maker E", + "model": "Model 2026", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97017282619469, + 26.51274556233455 + ] + }, + "properties": { + "id": "meter-2027", + "maker": "Maker G", + "model": "Model 2027", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.90021346456709, + 26.71892810357702 + ] + }, + "properties": { + "id": "meter-2028", + "maker": "Maker H", + "model": "Model 2028", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.047687396688524, + 30.99945218947842 + ] + }, + "properties": { + "id": "meter-2029", + "maker": "Maker H", + "model": "Model 2029", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.03210353071673, + 29.7757613967239 + ] + }, + "properties": { + "id": "meter-2030", + "maker": "Maker H", + "model": "Model 2030", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.237939504914266, + 29.968835474037114 + ] + }, + "properties": { + "id": "meter-2031", + "maker": "Maker B", + "model": "Model 2031", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.53103532663234, + 24.655883479572847 + ] + }, + "properties": { + "id": "meter-2032", + "maker": "Maker F", + "model": "Model 2032", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.61716706029585, + 24.640012252952484 + ] + }, + "properties": { + "id": "meter-2033", + "maker": "Maker G", + "model": "Model 2033", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.82822390923845, + 21.40609745382073 + ] + }, + "properties": { + "id": "meter-2034", + "maker": "Maker I", + "model": "Model 2034", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.46212474155716, + 28.592069415446208 + ] + }, + "properties": { + "id": "meter-2035", + "maker": "Maker G", + "model": "Model 2035", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92462736605128, + 26.362701096260963 + ] + }, + "properties": { + "id": "meter-2036", + "maker": "Maker H", + "model": "Model 2036", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.66312221529815, + 28.467355186391075 + ] + }, + "properties": { + "id": "meter-2037", + "maker": "Maker D", + "model": "Model 2037", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.40942389068463, + 24.352986349291704 + ] + }, + "properties": { + "id": "meter-2038", + "maker": "Maker E", + "model": "Model 2038", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.13198335073718, + 24.249655922112588 + ] + }, + "properties": { + "id": "meter-2039", + "maker": "Maker H", + "model": "Model 2039", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.59572240505067, + 20.00431841922733 + ] + }, + "properties": { + "id": "meter-2040", + "maker": "Maker C", + "model": "Model 2040", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.27904491925118, + 24.05777193335393 + ] + }, + "properties": { + "id": "meter-2041", + "maker": "Maker A", + "model": "Model 2041", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.94660672657037, + 21.36768739524125 + ] + }, + "properties": { + "id": "meter-2042", + "maker": "Maker F", + "model": "Model 2042", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.74985656131508, + 26.56866221722894 + ] + }, + "properties": { + "id": "meter-2043", + "maker": "Maker C", + "model": "Model 2043", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1196435019947, + 17.47209260519055 + ] + }, + "properties": { + "id": "meter-2044", + "maker": "Maker I", + "model": "Model 2044", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.49725318115217, + 20.094666626577506 + ] + }, + "properties": { + "id": "meter-2045", + "maker": "Maker F", + "model": "Model 2045", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53158309585178, + 18.130981991550456 + ] + }, + "properties": { + "id": "meter-2046", + "maker": "Maker A", + "model": "Model 2046", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.83562266537782, + 24.564323342901712 + ] + }, + "properties": { + "id": "meter-2047", + "maker": "Maker I", + "model": "Model 2047", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.719459668619834, + 27.748193147855932 + ] + }, + "properties": { + "id": "meter-2048", + "maker": "Maker H", + "model": "Model 2048", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.86640944978454, + 24.155869942487904 + ] + }, + "properties": { + "id": "meter-2049", + "maker": "Maker J", + "model": "Model 2049", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.09280002488772, + 21.28905450299606 + ] + }, + "properties": { + "id": "meter-2050", + "maker": "Maker F", + "model": "Model 2050", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.43479692903376, + 28.57446261379351 + ] + }, + "properties": { + "id": "meter-2051", + "maker": "Maker J", + "model": "Model 2051", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.998195064039706, + 26.59908675322756 + ] + }, + "properties": { + "id": "meter-2052", + "maker": "Maker D", + "model": "Model 2052", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.156338173812934, + 26.19479119258592 + ] + }, + "properties": { + "id": "meter-2053", + "maker": "Maker H", + "model": "Model 2053", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.565272727530804, + 28.57032273016876 + ] + }, + "properties": { + "id": "meter-2054", + "maker": "Maker H", + "model": "Model 2054", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92960067150614, + 26.1892789933909 + ] + }, + "properties": { + "id": "meter-2055", + "maker": "Maker E", + "model": "Model 2055", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.48425760742989, + 24.681167518071526 + ] + }, + "properties": { + "id": "meter-2056", + "maker": "Maker C", + "model": "Model 2056", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.6088267338861, + 24.528375310806474 + ] + }, + "properties": { + "id": "meter-2057", + "maker": "Maker G", + "model": "Model 2057", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.852555868318646, + 27.460157216150165 + ] + }, + "properties": { + "id": "meter-2058", + "maker": "Maker D", + "model": "Model 2058", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.5709171271627, + 25.32795823082192 + ] + }, + "properties": { + "id": "meter-2059", + "maker": "Maker D", + "model": "Model 2059", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.89634524481915, + 26.709364935330967 + ] + }, + "properties": { + "id": "meter-2060", + "maker": "Maker F", + "model": "Model 2060", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08560753400383, + 26.34442763971825 + ] + }, + "properties": { + "id": "meter-2061", + "maker": "Maker H", + "model": "Model 2061", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.51686646559757, + 19.874171058105595 + ] + }, + "properties": { + "id": "meter-2062", + "maker": "Maker H", + "model": "Model 2062", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.73329186989836, + 21.65614044991527 + ] + }, + "properties": { + "id": "meter-2063", + "maker": "Maker C", + "model": "Model 2063", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.51413877476898, + 24.67654989996768 + ] + }, + "properties": { + "id": "meter-2064", + "maker": "Maker J", + "model": "Model 2064", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65587732937014, + 27.46488578361872 + ] + }, + "properties": { + "id": "meter-2065", + "maker": "Maker I", + "model": "Model 2065", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.01720922444876, + 24.10552324686582 + ] + }, + "properties": { + "id": "meter-2066", + "maker": "Maker A", + "model": "Model 2066", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.060093005208856, + 24.242231658595976 + ] + }, + "properties": { + "id": "meter-2067", + "maker": "Maker E", + "model": "Model 2067", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.953977561440894, + 21.501415559185062 + ] + }, + "properties": { + "id": "meter-2068", + "maker": "Maker F", + "model": "Model 2068", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.594165239198226, + 24.642429948578805 + ] + }, + "properties": { + "id": "meter-2069", + "maker": "Maker D", + "model": "Model 2069", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.171913921211434, + 21.55261581377989 + ] + }, + "properties": { + "id": "meter-2070", + "maker": "Maker F", + "model": "Model 2070", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.772699892146306, + 18.450007339509618 + ] + }, + "properties": { + "id": "meter-2071", + "maker": "Maker B", + "model": "Model 2071", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69985386779182, + 27.51636520650964 + ] + }, + "properties": { + "id": "meter-2072", + "maker": "Maker G", + "model": "Model 2072", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60913612690908, + 24.50809028231275 + ] + }, + "properties": { + "id": "meter-2073", + "maker": "Maker H", + "model": "Model 2073", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.90850928203763, + 24.273408153840645 + ] + }, + "properties": { + "id": "meter-2074", + "maker": "Maker H", + "model": "Model 2074", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68565082000316, + 24.764393992704356 + ] + }, + "properties": { + "id": "meter-2075", + "maker": "Maker C", + "model": "Model 2075", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.937403150316115, + 17.30918921991712 + ] + }, + "properties": { + "id": "meter-2076", + "maker": "Maker D", + "model": "Model 2076", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.22515468856915, + 24.200327413474067 + ] + }, + "properties": { + "id": "meter-2077", + "maker": "Maker E", + "model": "Model 2077", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.071326005257546, + 30.875934160443315 + ] + }, + "properties": { + "id": "meter-2078", + "maker": "Maker F", + "model": "Model 2078", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.935447510534125, + 26.191464242843615 + ] + }, + "properties": { + "id": "meter-2079", + "maker": "Maker F", + "model": "Model 2079", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.45195968891638, + 28.356434781864493 + ] + }, + "properties": { + "id": "meter-2080", + "maker": "Maker J", + "model": "Model 2080", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.60221483053026, + 19.78723563897045 + ] + }, + "properties": { + "id": "meter-2081", + "maker": "Maker H", + "model": "Model 2081", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.7187711830927, + 18.411816600380323 + ] + }, + "properties": { + "id": "meter-2082", + "maker": "Maker J", + "model": "Model 2082", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.04143933684966, + 30.968191243267963 + ] + }, + "properties": { + "id": "meter-2083", + "maker": "Maker C", + "model": "Model 2083", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58276190064916, + 25.327888159410204 + ] + }, + "properties": { + "id": "meter-2084", + "maker": "Maker G", + "model": "Model 2084", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99446264249526, + 17.735633769956998 + ] + }, + "properties": { + "id": "meter-2085", + "maker": "Maker F", + "model": "Model 2085", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15008500089985, + 26.407763726356933 + ] + }, + "properties": { + "id": "meter-2086", + "maker": "Maker J", + "model": "Model 2086", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.670950376475396, + 21.56733080019027 + ] + }, + "properties": { + "id": "meter-2087", + "maker": "Maker B", + "model": "Model 2087", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.809269253344254, + 24.318507181845053 + ] + }, + "properties": { + "id": "meter-2088", + "maker": "Maker I", + "model": "Model 2088", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45924000807698, + 18.06531468450772 + ] + }, + "properties": { + "id": "meter-2089", + "maker": "Maker H", + "model": "Model 2089", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87224149234462, + 26.739196193171214 + ] + }, + "properties": { + "id": "meter-2090", + "maker": "Maker A", + "model": "Model 2090", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.10120060369453, + 21.68365949459667 + ] + }, + "properties": { + "id": "meter-2091", + "maker": "Maker C", + "model": "Model 2091", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.76179923901308, + 21.22264306621767 + ] + }, + "properties": { + "id": "meter-2092", + "maker": "Maker B", + "model": "Model 2092", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.31226838543008, + 21.284367710302792 + ] + }, + "properties": { + "id": "meter-2093", + "maker": "Maker E", + "model": "Model 2093", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.633946062561066, + 24.397683420277012 + ] + }, + "properties": { + "id": "meter-2094", + "maker": "Maker B", + "model": "Model 2094", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.74610196317637, + 25.15635802190669 + ] + }, + "properties": { + "id": "meter-2095", + "maker": "Maker G", + "model": "Model 2095", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.2545596428369, + 24.000676981836897 + ] + }, + "properties": { + "id": "meter-2096", + "maker": "Maker F", + "model": "Model 2096", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.22594425854785, + 17.470058584310266 + ] + }, + "properties": { + "id": "meter-2097", + "maker": "Maker J", + "model": "Model 2097", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.280167317824294, + 19.78676010001102 + ] + }, + "properties": { + "id": "meter-2098", + "maker": "Maker I", + "model": "Model 2098", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.146581909524635, + 29.96148631272418 + ] + }, + "properties": { + "id": "meter-2099", + "maker": "Maker D", + "model": "Model 2099", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.37431341289472, + 24.416502585902023 + ] + }, + "properties": { + "id": "meter-2100", + "maker": "Maker D", + "model": "Model 2100", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.82742288639321, + 25.428010209608985 + ] + }, + "properties": { + "id": "meter-2101", + "maker": "Maker C", + "model": "Model 2101", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63623051300414, + 24.51188266418893 + ] + }, + "properties": { + "id": "meter-2102", + "maker": "Maker G", + "model": "Model 2102", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.007972611011475, + 26.306552312656 + ] + }, + "properties": { + "id": "meter-2103", + "maker": "Maker I", + "model": "Model 2103", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.4359803590768, + 30.094292565928665 + ] + }, + "properties": { + "id": "meter-2104", + "maker": "Maker A", + "model": "Model 2104", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.089642566825006, + 24.095146962918616 + ] + }, + "properties": { + "id": "meter-2105", + "maker": "Maker A", + "model": "Model 2105", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.509973062498844, + 18.158490842926287 + ] + }, + "properties": { + "id": "meter-2106", + "maker": "Maker D", + "model": "Model 2106", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.47944916410347, + 24.54754844287253 + ] + }, + "properties": { + "id": "meter-2107", + "maker": "Maker J", + "model": "Model 2107", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.129416826457565, + 26.250413154003432 + ] + }, + "properties": { + "id": "meter-2108", + "maker": "Maker D", + "model": "Model 2108", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.56376758503414, + 24.595622581602715 + ] + }, + "properties": { + "id": "meter-2109", + "maker": "Maker C", + "model": "Model 2109", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.03673106367233, + 29.86868564571786 + ] + }, + "properties": { + "id": "meter-2110", + "maker": "Maker A", + "model": "Model 2110", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.13699235699092, + 30.139060676802043 + ] + }, + "properties": { + "id": "meter-2111", + "maker": "Maker H", + "model": "Model 2111", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.949307683687124, + 17.731315952515455 + ] + }, + "properties": { + "id": "meter-2112", + "maker": "Maker F", + "model": "Model 2112", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85577345429502, + 21.3746900783038 + ] + }, + "properties": { + "id": "meter-2113", + "maker": "Maker F", + "model": "Model 2113", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72875296222117, + 18.304565089274604 + ] + }, + "properties": { + "id": "meter-2114", + "maker": "Maker D", + "model": "Model 2114", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.976106059061685, + 26.36779994865145 + ] + }, + "properties": { + "id": "meter-2115", + "maker": "Maker I", + "model": "Model 2115", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.54990617489465, + 18.059696815930348 + ] + }, + "properties": { + "id": "meter-2116", + "maker": "Maker I", + "model": "Model 2116", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09000033687519, + 17.442094987844722 + ] + }, + "properties": { + "id": "meter-2117", + "maker": "Maker C", + "model": "Model 2117", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.99090649764612, + 30.074156937431532 + ] + }, + "properties": { + "id": "meter-2118", + "maker": "Maker G", + "model": "Model 2118", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.19459166233687, + 21.493178164225814 + ] + }, + "properties": { + "id": "meter-2119", + "maker": "Maker C", + "model": "Model 2119", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03145738396742, + 30.957712803593328 + ] + }, + "properties": { + "id": "meter-2120", + "maker": "Maker H", + "model": "Model 2120", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.779178649478446, + 18.136792693300947 + ] + }, + "properties": { + "id": "meter-2121", + "maker": "Maker J", + "model": "Model 2121", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84651176459175, + 21.37055242225471 + ] + }, + "properties": { + "id": "meter-2122", + "maker": "Maker G", + "model": "Model 2122", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.14113133807701, + 29.843169154048987 + ] + }, + "properties": { + "id": "meter-2123", + "maker": "Maker D", + "model": "Model 2123", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95332595092656, + 26.337835056611823 + ] + }, + "properties": { + "id": "meter-2124", + "maker": "Maker A", + "model": "Model 2124", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07710948574825, + 26.21462445605854 + ] + }, + "properties": { + "id": "meter-2125", + "maker": "Maker G", + "model": "Model 2125", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10710003786073, + 26.156964268850935 + ] + }, + "properties": { + "id": "meter-2126", + "maker": "Maker D", + "model": "Model 2126", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.31323024608853, + 24.249250860286384 + ] + }, + "properties": { + "id": "meter-2127", + "maker": "Maker A", + "model": "Model 2127", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07233259225903, + 26.43179993049795 + ] + }, + "properties": { + "id": "meter-2128", + "maker": "Maker B", + "model": "Model 2128", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.258761353094144, + 19.964606471835527 + ] + }, + "properties": { + "id": "meter-2129", + "maker": "Maker F", + "model": "Model 2129", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07899510306376, + 24.210990083752666 + ] + }, + "properties": { + "id": "meter-2130", + "maker": "Maker A", + "model": "Model 2130", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.66325756225237, + 20.152446438953966 + ] + }, + "properties": { + "id": "meter-2131", + "maker": "Maker C", + "model": "Model 2131", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15246669972512, + 26.396799156605546 + ] + }, + "properties": { + "id": "meter-2132", + "maker": "Maker D", + "model": "Model 2132", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42145975008487, + 19.966096539016043 + ] + }, + "properties": { + "id": "meter-2133", + "maker": "Maker I", + "model": "Model 2133", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61186021858754, + 24.52534076522795 + ] + }, + "properties": { + "id": "meter-2134", + "maker": "Maker C", + "model": "Model 2134", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.074026096896766, + 24.12183189108187 + ] + }, + "properties": { + "id": "meter-2135", + "maker": "Maker C", + "model": "Model 2135", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.39637931995303, + 28.22576885070394 + ] + }, + "properties": { + "id": "meter-2136", + "maker": "Maker I", + "model": "Model 2136", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.823432786563956, + 21.308355871029995 + ] + }, + "properties": { + "id": "meter-2137", + "maker": "Maker G", + "model": "Model 2137", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45620232840144, + 27.669221949178198 + ] + }, + "properties": { + "id": "meter-2138", + "maker": "Maker G", + "model": "Model 2138", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.12135618122733, + 24.04697771439998 + ] + }, + "properties": { + "id": "meter-2139", + "maker": "Maker B", + "model": "Model 2139", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10793504575602, + 26.32248902722823 + ] + }, + "properties": { + "id": "meter-2140", + "maker": "Maker E", + "model": "Model 2140", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.489492253984416, + 24.460217384522863 + ] + }, + "properties": { + "id": "meter-2141", + "maker": "Maker B", + "model": "Model 2141", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97463368910579, + 26.167326397169095 + ] + }, + "properties": { + "id": "meter-2142", + "maker": "Maker J", + "model": "Model 2142", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98298910813362, + 26.27172433640871 + ] + }, + "properties": { + "id": "meter-2143", + "maker": "Maker E", + "model": "Model 2143", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.056822830162496, + 30.848473243392373 + ] + }, + "properties": { + "id": "meter-2144", + "maker": "Maker H", + "model": "Model 2144", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06985715107419, + 26.426820482511413 + ] + }, + "properties": { + "id": "meter-2145", + "maker": "Maker F", + "model": "Model 2145", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.27557674329841, + 19.828077628022335 + ] + }, + "properties": { + "id": "meter-2146", + "maker": "Maker B", + "model": "Model 2146", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.207593574399596, + 21.595641271515518 + ] + }, + "properties": { + "id": "meter-2147", + "maker": "Maker F", + "model": "Model 2147", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.27422442337148, + 30.084869832628833 + ] + }, + "properties": { + "id": "meter-2148", + "maker": "Maker F", + "model": "Model 2148", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.56864519409242, + 25.332962641967267 + ] + }, + "properties": { + "id": "meter-2149", + "maker": "Maker F", + "model": "Model 2149", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.84324808408987, + 31.173336772808376 + ] + }, + "properties": { + "id": "meter-2150", + "maker": "Maker G", + "model": "Model 2150", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9790337242927, + 26.448235116183103 + ] + }, + "properties": { + "id": "meter-2151", + "maker": "Maker B", + "model": "Model 2151", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.4177256993855, + 25.115527368968714 + ] + }, + "properties": { + "id": "meter-2152", + "maker": "Maker C", + "model": "Model 2152", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.24090821188735, + 30.16252651062649 + ] + }, + "properties": { + "id": "meter-2153", + "maker": "Maker D", + "model": "Model 2153", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02111709471825, + 26.231770219269567 + ] + }, + "properties": { + "id": "meter-2154", + "maker": "Maker C", + "model": "Model 2154", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.574568797257356, + 25.327032828871932 + ] + }, + "properties": { + "id": "meter-2155", + "maker": "Maker C", + "model": "Model 2155", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.240320176539996, + 21.48061608948433 + ] + }, + "properties": { + "id": "meter-2156", + "maker": "Maker E", + "model": "Model 2156", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0110651624167, + 24.3518845298103 + ] + }, + "properties": { + "id": "meter-2157", + "maker": "Maker E", + "model": "Model 2157", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.11931410345734, + 30.914674940517354 + ] + }, + "properties": { + "id": "meter-2158", + "maker": "Maker D", + "model": "Model 2158", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11886384045487, + 26.561835786275005 + ] + }, + "properties": { + "id": "meter-2159", + "maker": "Maker J", + "model": "Model 2159", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.573094726920296, + 17.9936124519148 + ] + }, + "properties": { + "id": "meter-2160", + "maker": "Maker E", + "model": "Model 2160", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97637202336774, + 26.321491476676886 + ] + }, + "properties": { + "id": "meter-2161", + "maker": "Maker E", + "model": "Model 2161", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09695408038721, + 17.535277880886714 + ] + }, + "properties": { + "id": "meter-2162", + "maker": "Maker F", + "model": "Model 2162", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.094885738204106, + 24.375007071217293 + ] + }, + "properties": { + "id": "meter-2163", + "maker": "Maker I", + "model": "Model 2163", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.76536566885715, + 21.486689091223287 + ] + }, + "properties": { + "id": "meter-2164", + "maker": "Maker I", + "model": "Model 2164", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77641379804983, + 21.403186673439215 + ] + }, + "properties": { + "id": "meter-2165", + "maker": "Maker C", + "model": "Model 2165", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08727684780821, + 26.421571618586544 + ] + }, + "properties": { + "id": "meter-2166", + "maker": "Maker F", + "model": "Model 2166", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.26558498618628, + 30.041102061131017 + ] + }, + "properties": { + "id": "meter-2167", + "maker": "Maker B", + "model": "Model 2167", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.106480187390694, + 17.49382573582824 + ] + }, + "properties": { + "id": "meter-2168", + "maker": "Maker I", + "model": "Model 2168", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.662009628354404, + 28.33104311156983 + ] + }, + "properties": { + "id": "meter-2169", + "maker": "Maker C", + "model": "Model 2169", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20030228916071, + 29.963671980839226 + ] + }, + "properties": { + "id": "meter-2170", + "maker": "Maker A", + "model": "Model 2170", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98296710788358, + 26.586850736191902 + ] + }, + "properties": { + "id": "meter-2171", + "maker": "Maker D", + "model": "Model 2171", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.39676258766913, + 20.00405919293038 + ] + }, + "properties": { + "id": "meter-2172", + "maker": "Maker H", + "model": "Model 2172", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.82501480322313, + 21.593009082579684 + ] + }, + "properties": { + "id": "meter-2173", + "maker": "Maker E", + "model": "Model 2173", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.79298663550103, + 28.250692246706777 + ] + }, + "properties": { + "id": "meter-2174", + "maker": "Maker J", + "model": "Model 2174", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.64304253179808, + 28.582435928446053 + ] + }, + "properties": { + "id": "meter-2175", + "maker": "Maker A", + "model": "Model 2175", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.26255325057006, + 18.19916596624083 + ] + }, + "properties": { + "id": "meter-2176", + "maker": "Maker B", + "model": "Model 2176", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.99983533676616, + 31.00849281141929 + ] + }, + "properties": { + "id": "meter-2177", + "maker": "Maker G", + "model": "Model 2177", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85967123683528, + 21.387840043526413 + ] + }, + "properties": { + "id": "meter-2178", + "maker": "Maker C", + "model": "Model 2178", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.82728243500298, + 24.37250791163757 + ] + }, + "properties": { + "id": "meter-2179", + "maker": "Maker A", + "model": "Model 2179", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.34475308518845, + 25.496937020473666 + ] + }, + "properties": { + "id": "meter-2180", + "maker": "Maker E", + "model": "Model 2180", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01381007021398, + 17.680364025759825 + ] + }, + "properties": { + "id": "meter-2181", + "maker": "Maker A", + "model": "Model 2181", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03234809916616, + 30.939717562127857 + ] + }, + "properties": { + "id": "meter-2182", + "maker": "Maker H", + "model": "Model 2182", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96681543569067, + 26.439441477299486 + ] + }, + "properties": { + "id": "meter-2183", + "maker": "Maker I", + "model": "Model 2183", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.6983048636865, + 24.576540869775023 + ] + }, + "properties": { + "id": "meter-2184", + "maker": "Maker C", + "model": "Model 2184", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18313883564343, + 26.312396981435313 + ] + }, + "properties": { + "id": "meter-2185", + "maker": "Maker E", + "model": "Model 2185", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.495448982139635, + 18.14368279498183 + ] + }, + "properties": { + "id": "meter-2186", + "maker": "Maker C", + "model": "Model 2186", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19548148626434, + 26.39349303535735 + ] + }, + "properties": { + "id": "meter-2187", + "maker": "Maker F", + "model": "Model 2187", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.56747172778752, + 24.511364610463644 + ] + }, + "properties": { + "id": "meter-2188", + "maker": "Maker D", + "model": "Model 2188", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.787740517279865, + 21.569974153682296 + ] + }, + "properties": { + "id": "meter-2189", + "maker": "Maker G", + "model": "Model 2189", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.8564833877554, + 28.461961111767604 + ] + }, + "properties": { + "id": "meter-2190", + "maker": "Maker H", + "model": "Model 2190", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.052179761036655, + 17.483070539486526 + ] + }, + "properties": { + "id": "meter-2191", + "maker": "Maker F", + "model": "Model 2191", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.26118073506664, + 18.249315183437687 + ] + }, + "properties": { + "id": "meter-2192", + "maker": "Maker I", + "model": "Model 2192", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.707250936830526, + 18.294063515266462 + ] + }, + "properties": { + "id": "meter-2193", + "maker": "Maker I", + "model": "Model 2193", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.484367647633356, + 27.570917218573072 + ] + }, + "properties": { + "id": "meter-2194", + "maker": "Maker G", + "model": "Model 2194", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.98295509025204, + 24.31721093968571 + ] + }, + "properties": { + "id": "meter-2195", + "maker": "Maker J", + "model": "Model 2195", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45311490682565, + 18.192046570986058 + ] + }, + "properties": { + "id": "meter-2196", + "maker": "Maker F", + "model": "Model 2196", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.207501753223916, + 26.245751563239413 + ] + }, + "properties": { + "id": "meter-2197", + "maker": "Maker C", + "model": "Model 2197", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.867162907761305, + 21.491584595073913 + ] + }, + "properties": { + "id": "meter-2198", + "maker": "Maker E", + "model": "Model 2198", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.98502729329422, + 21.43006217809185 + ] + }, + "properties": { + "id": "meter-2199", + "maker": "Maker I", + "model": "Model 2199", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77896412260737, + 24.52927988537522 + ] + }, + "properties": { + "id": "meter-2200", + "maker": "Maker D", + "model": "Model 2200", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.67994512247057, + 28.56831090376616 + ] + }, + "properties": { + "id": "meter-2201", + "maker": "Maker E", + "model": "Model 2201", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.83422350192798, + 26.309490011232814 + ] + }, + "properties": { + "id": "meter-2202", + "maker": "Maker H", + "model": "Model 2202", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.05578197912911, + 30.935166615953648 + ] + }, + "properties": { + "id": "meter-2203", + "maker": "Maker C", + "model": "Model 2203", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.62202261025128, + 28.4083734667852 + ] + }, + "properties": { + "id": "meter-2204", + "maker": "Maker H", + "model": "Model 2204", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.01052507722233, + 24.135078456205676 + ] + }, + "properties": { + "id": "meter-2205", + "maker": "Maker I", + "model": "Model 2205", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.120708145982455, + 26.34757580917995 + ] + }, + "properties": { + "id": "meter-2206", + "maker": "Maker E", + "model": "Model 2206", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.74153305321102, + 19.993425520489353 + ] + }, + "properties": { + "id": "meter-2207", + "maker": "Maker J", + "model": "Model 2207", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.177424790749, + 26.286224838931723 + ] + }, + "properties": { + "id": "meter-2208", + "maker": "Maker D", + "model": "Model 2208", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.949449619809194, + 26.534811142609914 + ] + }, + "properties": { + "id": "meter-2209", + "maker": "Maker E", + "model": "Model 2209", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.078344758917794, + 26.442581963444805 + ] + }, + "properties": { + "id": "meter-2210", + "maker": "Maker B", + "model": "Model 2210", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.89580890523176, + 27.401490827789132 + ] + }, + "properties": { + "id": "meter-2211", + "maker": "Maker J", + "model": "Model 2211", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1112588687782, + 26.436925733441555 + ] + }, + "properties": { + "id": "meter-2212", + "maker": "Maker E", + "model": "Model 2212", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.219254732178065, + 21.421098421733685 + ] + }, + "properties": { + "id": "meter-2213", + "maker": "Maker B", + "model": "Model 2213", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.17450153332464, + 21.314917136830182 + ] + }, + "properties": { + "id": "meter-2214", + "maker": "Maker I", + "model": "Model 2214", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55981009897898, + 20.18245528701321 + ] + }, + "properties": { + "id": "meter-2215", + "maker": "Maker B", + "model": "Model 2215", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62797597353404, + 20.096780642199896 + ] + }, + "properties": { + "id": "meter-2216", + "maker": "Maker B", + "model": "Model 2216", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.716468247978945, + 18.31615522290975 + ] + }, + "properties": { + "id": "meter-2217", + "maker": "Maker I", + "model": "Model 2217", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.578483903233675, + 20.22798169395625 + ] + }, + "properties": { + "id": "meter-2218", + "maker": "Maker D", + "model": "Model 2218", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.584622204928074, + 17.988744685708213 + ] + }, + "properties": { + "id": "meter-2219", + "maker": "Maker B", + "model": "Model 2219", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14999473205156, + 26.222423029754967 + ] + }, + "properties": { + "id": "meter-2220", + "maker": "Maker D", + "model": "Model 2220", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.93924309121418, + 21.512093646643887 + ] + }, + "properties": { + "id": "meter-2221", + "maker": "Maker E", + "model": "Model 2221", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97641008575216, + 26.333529706836366 + ] + }, + "properties": { + "id": "meter-2222", + "maker": "Maker F", + "model": "Model 2222", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.682153669179804, + 25.362258275225233 + ] + }, + "properties": { + "id": "meter-2223", + "maker": "Maker D", + "model": "Model 2223", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.84525369441051, + 26.265220223280465 + ] + }, + "properties": { + "id": "meter-2224", + "maker": "Maker B", + "model": "Model 2224", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77847287459748, + 24.4666360165331 + ] + }, + "properties": { + "id": "meter-2225", + "maker": "Maker C", + "model": "Model 2225", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.32750212825153, + 21.543082820290962 + ] + }, + "properties": { + "id": "meter-2226", + "maker": "Maker H", + "model": "Model 2226", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.39985994639374, + 28.37413164440885 + ] + }, + "properties": { + "id": "meter-2227", + "maker": "Maker G", + "model": "Model 2227", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.404825563863206, + 18.374943837195598 + ] + }, + "properties": { + "id": "meter-2228", + "maker": "Maker B", + "model": "Model 2228", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.952911870638076, + 26.31048792647306 + ] + }, + "properties": { + "id": "meter-2229", + "maker": "Maker F", + "model": "Model 2229", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.186816455144985, + 17.47910080811434 + ] + }, + "properties": { + "id": "meter-2230", + "maker": "Maker F", + "model": "Model 2230", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.756287047439045, + 18.272362492633324 + ] + }, + "properties": { + "id": "meter-2231", + "maker": "Maker F", + "model": "Model 2231", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.91588360916279, + 24.708651438004495 + ] + }, + "properties": { + "id": "meter-2232", + "maker": "Maker B", + "model": "Model 2232", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.06726549862676, + 30.94420434591932 + ] + }, + "properties": { + "id": "meter-2233", + "maker": "Maker E", + "model": "Model 2233", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.063923124021386, + 24.080738361764492 + ] + }, + "properties": { + "id": "meter-2234", + "maker": "Maker J", + "model": "Model 2234", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.222808614293825, + 30.154053407935994 + ] + }, + "properties": { + "id": "meter-2235", + "maker": "Maker F", + "model": "Model 2235", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.11859642152184, + 30.963870445394303 + ] + }, + "properties": { + "id": "meter-2236", + "maker": "Maker C", + "model": "Model 2236", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.663049711362774, + 18.409106447103603 + ] + }, + "properties": { + "id": "meter-2237", + "maker": "Maker E", + "model": "Model 2237", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.74415727612253, + 24.519812845627225 + ] + }, + "properties": { + "id": "meter-2238", + "maker": "Maker J", + "model": "Model 2238", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.71731571107084, + 25.314615521701537 + ] + }, + "properties": { + "id": "meter-2239", + "maker": "Maker A", + "model": "Model 2239", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.78996863233868, + 25.445712582917427 + ] + }, + "properties": { + "id": "meter-2240", + "maker": "Maker I", + "model": "Model 2240", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.5481131549984, + 28.424558743300928 + ] + }, + "properties": { + "id": "meter-2241", + "maker": "Maker J", + "model": "Model 2241", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81612762526732, + 24.73709120838204 + ] + }, + "properties": { + "id": "meter-2242", + "maker": "Maker H", + "model": "Model 2242", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.662341080160886, + 21.4392464827391 + ] + }, + "properties": { + "id": "meter-2243", + "maker": "Maker G", + "model": "Model 2243", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.856983893566536, + 24.203275337431396 + ] + }, + "properties": { + "id": "meter-2244", + "maker": "Maker I", + "model": "Model 2244", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.79652793668951, + 18.322308425088128 + ] + }, + "properties": { + "id": "meter-2245", + "maker": "Maker F", + "model": "Model 2245", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.403762952051345, + 27.449944560139258 + ] + }, + "properties": { + "id": "meter-2246", + "maker": "Maker C", + "model": "Model 2246", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05664932322078, + 26.453208718783014 + ] + }, + "properties": { + "id": "meter-2247", + "maker": "Maker D", + "model": "Model 2247", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.970325679419005, + 26.415738735193028 + ] + }, + "properties": { + "id": "meter-2248", + "maker": "Maker I", + "model": "Model 2248", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.30283794818974, + 20.0997161426725 + ] + }, + "properties": { + "id": "meter-2249", + "maker": "Maker I", + "model": "Model 2249", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.978159593830156, + 26.536266799362636 + ] + }, + "properties": { + "id": "meter-2250", + "maker": "Maker A", + "model": "Model 2250", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52746265727457, + 18.19900587213032 + ] + }, + "properties": { + "id": "meter-2251", + "maker": "Maker F", + "model": "Model 2251", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.280639495814995, + 30.06880352524004 + ] + }, + "properties": { + "id": "meter-2252", + "maker": "Maker J", + "model": "Model 2252", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.171269788724835, + 17.637214059890628 + ] + }, + "properties": { + "id": "meter-2253", + "maker": "Maker I", + "model": "Model 2253", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08212948757132, + 26.423785698359186 + ] + }, + "properties": { + "id": "meter-2254", + "maker": "Maker C", + "model": "Model 2254", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.567896087196814, + 28.476124716395628 + ] + }, + "properties": { + "id": "meter-2255", + "maker": "Maker I", + "model": "Model 2255", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.019083380290844, + 26.452491987568422 + ] + }, + "properties": { + "id": "meter-2256", + "maker": "Maker H", + "model": "Model 2256", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.05033388940748, + 30.959084234726944 + ] + }, + "properties": { + "id": "meter-2257", + "maker": "Maker B", + "model": "Model 2257", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01227489409379, + 26.51200916181698 + ] + }, + "properties": { + "id": "meter-2258", + "maker": "Maker D", + "model": "Model 2258", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.607365122677784, + 25.406520173199638 + ] + }, + "properties": { + "id": "meter-2259", + "maker": "Maker C", + "model": "Model 2259", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.189519923032016, + 19.963240746191676 + ] + }, + "properties": { + "id": "meter-2260", + "maker": "Maker C", + "model": "Model 2260", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0309612787036, + 26.474410972434335 + ] + }, + "properties": { + "id": "meter-2261", + "maker": "Maker A", + "model": "Model 2261", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.944510835445826, + 21.381103489536997 + ] + }, + "properties": { + "id": "meter-2262", + "maker": "Maker I", + "model": "Model 2262", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.612436050303295, + 24.59881594048937 + ] + }, + "properties": { + "id": "meter-2263", + "maker": "Maker D", + "model": "Model 2263", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.951786440865504, + 31.12707795649085 + ] + }, + "properties": { + "id": "meter-2264", + "maker": "Maker F", + "model": "Model 2264", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.70639615080174, + 24.430839184067647 + ] + }, + "properties": { + "id": "meter-2265", + "maker": "Maker I", + "model": "Model 2265", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.638328187961775, + 18.221649700944127 + ] + }, + "properties": { + "id": "meter-2266", + "maker": "Maker G", + "model": "Model 2266", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.082720224742715, + 26.25921220150568 + ] + }, + "properties": { + "id": "meter-2267", + "maker": "Maker D", + "model": "Model 2267", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.05941403672899, + 26.552818426183755 + ] + }, + "properties": { + "id": "meter-2268", + "maker": "Maker G", + "model": "Model 2268", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.29869726846478, + 24.07208253189698 + ] + }, + "properties": { + "id": "meter-2269", + "maker": "Maker I", + "model": "Model 2269", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.5016942807646, + 21.538472690411837 + ] + }, + "properties": { + "id": "meter-2270", + "maker": "Maker H", + "model": "Model 2270", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.86533001135433, + 27.505858064591052 + ] + }, + "properties": { + "id": "meter-2271", + "maker": "Maker J", + "model": "Model 2271", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.2427659778057, + 30.997534200390998 + ] + }, + "properties": { + "id": "meter-2272", + "maker": "Maker G", + "model": "Model 2272", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20447038531736, + 26.30933561368855 + ] + }, + "properties": { + "id": "meter-2273", + "maker": "Maker H", + "model": "Model 2273", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.530158727016115, + 25.485770114341786 + ] + }, + "properties": { + "id": "meter-2274", + "maker": "Maker B", + "model": "Model 2274", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98795379074799, + 26.32537717916123 + ] + }, + "properties": { + "id": "meter-2275", + "maker": "Maker B", + "model": "Model 2275", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46474667796591, + 20.00919110748721 + ] + }, + "properties": { + "id": "meter-2276", + "maker": "Maker H", + "model": "Model 2276", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.729583506947705, + 24.95055857982481 + ] + }, + "properties": { + "id": "meter-2277", + "maker": "Maker J", + "model": "Model 2277", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.67335983815188, + 18.188413988250055 + ] + }, + "properties": { + "id": "meter-2278", + "maker": "Maker F", + "model": "Model 2278", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.65686146227698, + 28.532711332704547 + ] + }, + "properties": { + "id": "meter-2279", + "maker": "Maker C", + "model": "Model 2279", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.659306784337346, + 27.428584534481725 + ] + }, + "properties": { + "id": "meter-2280", + "maker": "Maker C", + "model": "Model 2280", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.508293958842636, + 19.89290419451714 + ] + }, + "properties": { + "id": "meter-2281", + "maker": "Maker A", + "model": "Model 2281", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.60859488644511, + 27.503161461177474 + ] + }, + "properties": { + "id": "meter-2282", + "maker": "Maker D", + "model": "Model 2282", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.05371704045486, + 29.84944145078782 + ] + }, + "properties": { + "id": "meter-2283", + "maker": "Maker E", + "model": "Model 2283", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.02269311966192, + 30.041206863023458 + ] + }, + "properties": { + "id": "meter-2284", + "maker": "Maker C", + "model": "Model 2284", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.82038575803527, + 24.680266885748917 + ] + }, + "properties": { + "id": "meter-2285", + "maker": "Maker B", + "model": "Model 2285", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.33006818147345, + 19.95799328713082 + ] + }, + "properties": { + "id": "meter-2286", + "maker": "Maker I", + "model": "Model 2286", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02162890352115, + 26.36871267191087 + ] + }, + "properties": { + "id": "meter-2287", + "maker": "Maker D", + "model": "Model 2287", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.71202246448211, + 21.448297115078898 + ] + }, + "properties": { + "id": "meter-2288", + "maker": "Maker J", + "model": "Model 2288", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.47218023914318, + 28.385427650451483 + ] + }, + "properties": { + "id": "meter-2289", + "maker": "Maker D", + "model": "Model 2289", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.550204374406256, + 18.159313342126836 + ] + }, + "properties": { + "id": "meter-2290", + "maker": "Maker H", + "model": "Model 2290", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70863033459904, + 20.13205593399795 + ] + }, + "properties": { + "id": "meter-2291", + "maker": "Maker A", + "model": "Model 2291", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.72477031127009, + 25.156967565276762 + ] + }, + "properties": { + "id": "meter-2292", + "maker": "Maker E", + "model": "Model 2292", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.27604033404684, + 21.501796671156384 + ] + }, + "properties": { + "id": "meter-2293", + "maker": "Maker I", + "model": "Model 2293", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.80092967965162, + 26.32393625514504 + ] + }, + "properties": { + "id": "meter-2294", + "maker": "Maker H", + "model": "Model 2294", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.244527908826065, + 17.40386476262624 + ] + }, + "properties": { + "id": "meter-2295", + "maker": "Maker E", + "model": "Model 2295", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.62194662764938, + 18.089062962142354 + ] + }, + "properties": { + "id": "meter-2296", + "maker": "Maker B", + "model": "Model 2296", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.468557138473756, + 21.590562431403498 + ] + }, + "properties": { + "id": "meter-2297", + "maker": "Maker I", + "model": "Model 2297", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.78343950715645, + 28.546908209399742 + ] + }, + "properties": { + "id": "meter-2298", + "maker": "Maker F", + "model": "Model 2298", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.63157245109435, + 24.824725183937243 + ] + }, + "properties": { + "id": "meter-2299", + "maker": "Maker G", + "model": "Model 2299", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67867922264334, + 24.617165134160008 + ] + }, + "properties": { + "id": "meter-2300", + "maker": "Maker C", + "model": "Model 2300", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.62020536643969, + 25.444369447766572 + ] + }, + "properties": { + "id": "meter-2301", + "maker": "Maker E", + "model": "Model 2301", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14301791636112, + 17.495600468851194 + ] + }, + "properties": { + "id": "meter-2302", + "maker": "Maker E", + "model": "Model 2302", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.591303999549005, + 28.531906899681708 + ] + }, + "properties": { + "id": "meter-2303", + "maker": "Maker J", + "model": "Model 2303", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09254454087535, + 26.387595137924485 + ] + }, + "properties": { + "id": "meter-2304", + "maker": "Maker A", + "model": "Model 2304", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.197383210759675, + 26.271540941750178 + ] + }, + "properties": { + "id": "meter-2305", + "maker": "Maker F", + "model": "Model 2305", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.69615529547117, + 24.589423009467737 + ] + }, + "properties": { + "id": "meter-2306", + "maker": "Maker J", + "model": "Model 2306", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58026810546571, + 25.381518528776926 + ] + }, + "properties": { + "id": "meter-2307", + "maker": "Maker B", + "model": "Model 2307", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.447618567831555, + 18.344854473526645 + ] + }, + "properties": { + "id": "meter-2308", + "maker": "Maker A", + "model": "Model 2308", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68172302000526, + 18.213176823837667 + ] + }, + "properties": { + "id": "meter-2309", + "maker": "Maker B", + "model": "Model 2309", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.150404105311196, + 17.46316546309916 + ] + }, + "properties": { + "id": "meter-2310", + "maker": "Maker H", + "model": "Model 2310", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97833791309983, + 26.484492345931553 + ] + }, + "properties": { + "id": "meter-2311", + "maker": "Maker D", + "model": "Model 2311", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.867837737954815, + 26.700038342472784 + ] + }, + "properties": { + "id": "meter-2312", + "maker": "Maker J", + "model": "Model 2312", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.878010578630864, + 21.36909929711338 + ] + }, + "properties": { + "id": "meter-2313", + "maker": "Maker J", + "model": "Model 2313", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19790464855341, + 26.20834580585597 + ] + }, + "properties": { + "id": "meter-2314", + "maker": "Maker H", + "model": "Model 2314", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.05000740538594, + 17.402276880692412 + ] + }, + "properties": { + "id": "meter-2315", + "maker": "Maker I", + "model": "Model 2315", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.7167188584423, + 26.40764069272876 + ] + }, + "properties": { + "id": "meter-2316", + "maker": "Maker I", + "model": "Model 2316", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9925135203268, + 26.41758859598159 + ] + }, + "properties": { + "id": "meter-2317", + "maker": "Maker I", + "model": "Model 2317", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.681507721101575, + 27.452690786495 + ] + }, + "properties": { + "id": "meter-2318", + "maker": "Maker A", + "model": "Model 2318", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.90137113250664, + 26.338848486834074 + ] + }, + "properties": { + "id": "meter-2319", + "maker": "Maker H", + "model": "Model 2319", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.85141998193016, + 18.37849662692242 + ] + }, + "properties": { + "id": "meter-2320", + "maker": "Maker G", + "model": "Model 2320", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.12250129917086, + 30.20478606711891 + ] + }, + "properties": { + "id": "meter-2321", + "maker": "Maker G", + "model": "Model 2321", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60780668708718, + 24.39231177034422 + ] + }, + "properties": { + "id": "meter-2322", + "maker": "Maker F", + "model": "Model 2322", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.90963677862207, + 26.562432458671562 + ] + }, + "properties": { + "id": "meter-2323", + "maker": "Maker B", + "model": "Model 2323", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.823611496680925, + 25.225851837305104 + ] + }, + "properties": { + "id": "meter-2324", + "maker": "Maker E", + "model": "Model 2324", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.920311298253694, + 24.293067517200402 + ] + }, + "properties": { + "id": "meter-2325", + "maker": "Maker J", + "model": "Model 2325", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88856397896567, + 21.320238487795663 + ] + }, + "properties": { + "id": "meter-2326", + "maker": "Maker I", + "model": "Model 2326", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.190019808964166, + 29.865542332515176 + ] + }, + "properties": { + "id": "meter-2327", + "maker": "Maker G", + "model": "Model 2327", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.72586701321965, + 28.14076329997958 + ] + }, + "properties": { + "id": "meter-2328", + "maker": "Maker I", + "model": "Model 2328", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.567567189328514, + 24.483595561302344 + ] + }, + "properties": { + "id": "meter-2329", + "maker": "Maker G", + "model": "Model 2329", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.124254356587464, + 17.49790171606945 + ] + }, + "properties": { + "id": "meter-2330", + "maker": "Maker H", + "model": "Model 2330", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.0547253812563, + 30.967040865623627 + ] + }, + "properties": { + "id": "meter-2331", + "maker": "Maker F", + "model": "Model 2331", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58125475546593, + 25.350354179578584 + ] + }, + "properties": { + "id": "meter-2332", + "maker": "Maker F", + "model": "Model 2332", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88492843776693, + 21.381809510599883 + ] + }, + "properties": { + "id": "meter-2333", + "maker": "Maker E", + "model": "Model 2333", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.605270568214074, + 28.412612710369807 + ] + }, + "properties": { + "id": "meter-2334", + "maker": "Maker H", + "model": "Model 2334", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.30246023954567, + 18.246188449048443 + ] + }, + "properties": { + "id": "meter-2335", + "maker": "Maker E", + "model": "Model 2335", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.50886674357521, + 25.311667039180954 + ] + }, + "properties": { + "id": "meter-2336", + "maker": "Maker E", + "model": "Model 2336", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.60455442010715, + 19.914457904172348 + ] + }, + "properties": { + "id": "meter-2337", + "maker": "Maker F", + "model": "Model 2337", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66621200320785, + 18.275969358377417 + ] + }, + "properties": { + "id": "meter-2338", + "maker": "Maker I", + "model": "Model 2338", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.998643820393966, + 26.346757398804748 + ] + }, + "properties": { + "id": "meter-2339", + "maker": "Maker I", + "model": "Model 2339", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.47358585930445, + 21.513773313381257 + ] + }, + "properties": { + "id": "meter-2340", + "maker": "Maker B", + "model": "Model 2340", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.06260534879645, + 30.91559773123427 + ] + }, + "properties": { + "id": "meter-2341", + "maker": "Maker H", + "model": "Model 2341", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.51575826506282, + 18.216263761751858 + ] + }, + "properties": { + "id": "meter-2342", + "maker": "Maker A", + "model": "Model 2342", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23965369861854, + 21.478448145747603 + ] + }, + "properties": { + "id": "meter-2343", + "maker": "Maker C", + "model": "Model 2343", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.37978842840034, + 28.39917315640974 + ] + }, + "properties": { + "id": "meter-2344", + "maker": "Maker D", + "model": "Model 2344", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.95111579643098, + 26.35741824915858 + ] + }, + "properties": { + "id": "meter-2345", + "maker": "Maker H", + "model": "Model 2345", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11560292254881, + 17.66040421988399 + ] + }, + "properties": { + "id": "meter-2346", + "maker": "Maker D", + "model": "Model 2346", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.224733676398145, + 21.678691957746544 + ] + }, + "properties": { + "id": "meter-2347", + "maker": "Maker J", + "model": "Model 2347", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.47145567668428, + 21.377255500403344 + ] + }, + "properties": { + "id": "meter-2348", + "maker": "Maker E", + "model": "Model 2348", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.6403724623673, + 18.189120015210246 + ] + }, + "properties": { + "id": "meter-2349", + "maker": "Maker H", + "model": "Model 2349", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.39319515169753, + 20.049526214098844 + ] + }, + "properties": { + "id": "meter-2350", + "maker": "Maker E", + "model": "Model 2350", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.99590836476817, + 30.954092904014495 + ] + }, + "properties": { + "id": "meter-2351", + "maker": "Maker E", + "model": "Model 2351", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10372994627519, + 26.186243746629145 + ] + }, + "properties": { + "id": "meter-2352", + "maker": "Maker F", + "model": "Model 2352", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.23009893636964, + 31.092633690775422 + ] + }, + "properties": { + "id": "meter-2353", + "maker": "Maker F", + "model": "Model 2353", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.60451382413641, + 24.692085318943395 + ] + }, + "properties": { + "id": "meter-2354", + "maker": "Maker E", + "model": "Model 2354", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.60763050214003, + 25.373644017831744 + ] + }, + "properties": { + "id": "meter-2355", + "maker": "Maker D", + "model": "Model 2355", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.09423912535079, + 31.079869481725403 + ] + }, + "properties": { + "id": "meter-2356", + "maker": "Maker H", + "model": "Model 2356", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.40604290543131, + 21.52949250571879 + ] + }, + "properties": { + "id": "meter-2357", + "maker": "Maker F", + "model": "Model 2357", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1177496477383, + 26.21223309846631 + ] + }, + "properties": { + "id": "meter-2358", + "maker": "Maker J", + "model": "Model 2358", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94578057873693, + 26.320547065752855 + ] + }, + "properties": { + "id": "meter-2359", + "maker": "Maker F", + "model": "Model 2359", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66555406048878, + 18.13591027657367 + ] + }, + "properties": { + "id": "meter-2360", + "maker": "Maker B", + "model": "Model 2360", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.16016763298977, + 26.25555772836405 + ] + }, + "properties": { + "id": "meter-2361", + "maker": "Maker I", + "model": "Model 2361", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99756455714638, + 26.477142476242108 + ] + }, + "properties": { + "id": "meter-2362", + "maker": "Maker H", + "model": "Model 2362", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.442579263339766, + 28.296772963287534 + ] + }, + "properties": { + "id": "meter-2363", + "maker": "Maker H", + "model": "Model 2363", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.89358400321672, + 30.783956139108383 + ] + }, + "properties": { + "id": "meter-2364", + "maker": "Maker H", + "model": "Model 2364", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67769559346929, + 19.930210777909522 + ] + }, + "properties": { + "id": "meter-2365", + "maker": "Maker A", + "model": "Model 2365", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.131206823760756, + 17.53764428417165 + ] + }, + "properties": { + "id": "meter-2366", + "maker": "Maker F", + "model": "Model 2366", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.46583934549115, + 18.24776702618559 + ] + }, + "properties": { + "id": "meter-2367", + "maker": "Maker I", + "model": "Model 2367", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25397287370458, + 21.585641998968356 + ] + }, + "properties": { + "id": "meter-2368", + "maker": "Maker J", + "model": "Model 2368", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87720078156236, + 26.318667908519334 + ] + }, + "properties": { + "id": "meter-2369", + "maker": "Maker C", + "model": "Model 2369", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.3907225931623, + 18.01275985186507 + ] + }, + "properties": { + "id": "meter-2370", + "maker": "Maker D", + "model": "Model 2370", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.54112687973798, + 18.299609957889892 + ] + }, + "properties": { + "id": "meter-2371", + "maker": "Maker A", + "model": "Model 2371", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.44603679266244, + 18.35988367606976 + ] + }, + "properties": { + "id": "meter-2372", + "maker": "Maker B", + "model": "Model 2372", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.38839564955493, + 20.027762602977386 + ] + }, + "properties": { + "id": "meter-2373", + "maker": "Maker E", + "model": "Model 2373", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06877370266798, + 26.2390599156897 + ] + }, + "properties": { + "id": "meter-2374", + "maker": "Maker C", + "model": "Model 2374", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.673057986855866, + 24.726653547048638 + ] + }, + "properties": { + "id": "meter-2375", + "maker": "Maker B", + "model": "Model 2375", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.65756976655106, + 28.490600741316857 + ] + }, + "properties": { + "id": "meter-2376", + "maker": "Maker G", + "model": "Model 2376", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.120978830724525, + 26.357067820511123 + ] + }, + "properties": { + "id": "meter-2377", + "maker": "Maker I", + "model": "Model 2377", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.958679089207344, + 26.196421054254937 + ] + }, + "properties": { + "id": "meter-2378", + "maker": "Maker A", + "model": "Model 2378", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62350697547016, + 20.043779085961493 + ] + }, + "properties": { + "id": "meter-2379", + "maker": "Maker H", + "model": "Model 2379", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.208174963901534, + 26.27937945912842 + ] + }, + "properties": { + "id": "meter-2380", + "maker": "Maker D", + "model": "Model 2380", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.80035326630417, + 24.648717155353044 + ] + }, + "properties": { + "id": "meter-2381", + "maker": "Maker G", + "model": "Model 2381", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.76275924299953, + 28.32922241271179 + ] + }, + "properties": { + "id": "meter-2382", + "maker": "Maker C", + "model": "Model 2382", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.040259838843696, + 26.406474055028582 + ] + }, + "properties": { + "id": "meter-2383", + "maker": "Maker D", + "model": "Model 2383", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.657632921948114, + 27.304929354056206 + ] + }, + "properties": { + "id": "meter-2384", + "maker": "Maker H", + "model": "Model 2384", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46872279211202, + 20.00939012657981 + ] + }, + "properties": { + "id": "meter-2385", + "maker": "Maker G", + "model": "Model 2385", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.47638908162792, + 28.624301655475456 + ] + }, + "properties": { + "id": "meter-2386", + "maker": "Maker B", + "model": "Model 2386", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.86047432289374, + 25.247977801301246 + ] + }, + "properties": { + "id": "meter-2387", + "maker": "Maker E", + "model": "Model 2387", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.68880151311845, + 24.552688352220333 + ] + }, + "properties": { + "id": "meter-2388", + "maker": "Maker I", + "model": "Model 2388", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.79241655597608, + 18.35373585787699 + ] + }, + "properties": { + "id": "meter-2389", + "maker": "Maker F", + "model": "Model 2389", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.04422275502288, + 30.972161598755218 + ] + }, + "properties": { + "id": "meter-2390", + "maker": "Maker G", + "model": "Model 2390", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.138906318320295, + 26.37576390155217 + ] + }, + "properties": { + "id": "meter-2391", + "maker": "Maker F", + "model": "Model 2391", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.787878092806835, + 18.54644206570833 + ] + }, + "properties": { + "id": "meter-2392", + "maker": "Maker C", + "model": "Model 2392", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77146511576804, + 24.287280579001106 + ] + }, + "properties": { + "id": "meter-2393", + "maker": "Maker C", + "model": "Model 2393", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.88126145186711, + 26.675161632294365 + ] + }, + "properties": { + "id": "meter-2394", + "maker": "Maker G", + "model": "Model 2394", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05741919374762, + 26.365814258876327 + ] + }, + "properties": { + "id": "meter-2395", + "maker": "Maker B", + "model": "Model 2395", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.51659817799845, + 18.168519957348725 + ] + }, + "properties": { + "id": "meter-2396", + "maker": "Maker I", + "model": "Model 2396", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92087543772193, + 17.53147817977355 + ] + }, + "properties": { + "id": "meter-2397", + "maker": "Maker G", + "model": "Model 2397", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.48173301521182, + 25.22981551854099 + ] + }, + "properties": { + "id": "meter-2398", + "maker": "Maker H", + "model": "Model 2398", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92024623039515, + 26.367945726841118 + ] + }, + "properties": { + "id": "meter-2399", + "maker": "Maker F", + "model": "Model 2399", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.69512867491663, + 26.34138376988677 + ] + }, + "properties": { + "id": "meter-2400", + "maker": "Maker J", + "model": "Model 2400", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.990197365516636, + 26.18406578590315 + ] + }, + "properties": { + "id": "meter-2401", + "maker": "Maker D", + "model": "Model 2401", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11294607691395, + 17.424096142728533 + ] + }, + "properties": { + "id": "meter-2402", + "maker": "Maker D", + "model": "Model 2402", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.596905794478275, + 18.005936803367753 + ] + }, + "properties": { + "id": "meter-2403", + "maker": "Maker A", + "model": "Model 2403", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.988045816915076, + 26.363967882296052 + ] + }, + "properties": { + "id": "meter-2404", + "maker": "Maker I", + "model": "Model 2404", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10611550252784, + 26.43253676028367 + ] + }, + "properties": { + "id": "meter-2405", + "maker": "Maker H", + "model": "Model 2405", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25238137026465, + 21.591348387147015 + ] + }, + "properties": { + "id": "meter-2406", + "maker": "Maker G", + "model": "Model 2406", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.38068028953503, + 17.625329203149793 + ] + }, + "properties": { + "id": "meter-2407", + "maker": "Maker F", + "model": "Model 2407", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.008707520183044, + 30.99469505789664 + ] + }, + "properties": { + "id": "meter-2408", + "maker": "Maker E", + "model": "Model 2408", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88648204227743, + 21.437541499575918 + ] + }, + "properties": { + "id": "meter-2409", + "maker": "Maker F", + "model": "Model 2409", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.80467944832303, + 26.394063701643496 + ] + }, + "properties": { + "id": "meter-2410", + "maker": "Maker E", + "model": "Model 2410", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.38446022501131, + 29.795868000395707 + ] + }, + "properties": { + "id": "meter-2411", + "maker": "Maker D", + "model": "Model 2411", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.653304659934044, + 25.440301592231148 + ] + }, + "properties": { + "id": "meter-2412", + "maker": "Maker I", + "model": "Model 2412", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.595177090007745, + 28.399758016013735 + ] + }, + "properties": { + "id": "meter-2413", + "maker": "Maker C", + "model": "Model 2413", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.39855810286096, + 20.110097084212928 + ] + }, + "properties": { + "id": "meter-2414", + "maker": "Maker I", + "model": "Model 2414", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.65873235231413, + 28.591182393624024 + ] + }, + "properties": { + "id": "meter-2415", + "maker": "Maker I", + "model": "Model 2415", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46984796878881, + 20.012507929333434 + ] + }, + "properties": { + "id": "meter-2416", + "maker": "Maker F", + "model": "Model 2416", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71694322024018, + 18.246817215905995 + ] + }, + "properties": { + "id": "meter-2417", + "maker": "Maker B", + "model": "Model 2417", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.47703377676589, + 18.259906225304704 + ] + }, + "properties": { + "id": "meter-2418", + "maker": "Maker A", + "model": "Model 2418", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.00383142850373, + 21.427027850529477 + ] + }, + "properties": { + "id": "meter-2419", + "maker": "Maker H", + "model": "Model 2419", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.61780913302094, + 28.33841289284842 + ] + }, + "properties": { + "id": "meter-2420", + "maker": "Maker D", + "model": "Model 2420", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.225708728918, + 29.96836725462157 + ] + }, + "properties": { + "id": "meter-2421", + "maker": "Maker B", + "model": "Model 2421", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67328369687706, + 27.399143405384837 + ] + }, + "properties": { + "id": "meter-2422", + "maker": "Maker F", + "model": "Model 2422", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.961988125049366, + 26.263378959756984 + ] + }, + "properties": { + "id": "meter-2423", + "maker": "Maker C", + "model": "Model 2423", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.04426039902023, + 30.93965379489784 + ] + }, + "properties": { + "id": "meter-2424", + "maker": "Maker A", + "model": "Model 2424", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1541711703939, + 26.12275107055327 + ] + }, + "properties": { + "id": "meter-2425", + "maker": "Maker C", + "model": "Model 2425", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20048506856385, + 26.287405211711498 + ] + }, + "properties": { + "id": "meter-2426", + "maker": "Maker B", + "model": "Model 2426", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99154219765352, + 26.441991124518673 + ] + }, + "properties": { + "id": "meter-2427", + "maker": "Maker D", + "model": "Model 2427", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89348377529699, + 21.547264306678496 + ] + }, + "properties": { + "id": "meter-2428", + "maker": "Maker H", + "model": "Model 2428", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.6895971345608, + 18.25356514562195 + ] + }, + "properties": { + "id": "meter-2429", + "maker": "Maker D", + "model": "Model 2429", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.59395286909816, + 28.393749581050756 + ] + }, + "properties": { + "id": "meter-2430", + "maker": "Maker D", + "model": "Model 2430", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.3481560351686, + 20.179852050878825 + ] + }, + "properties": { + "id": "meter-2431", + "maker": "Maker J", + "model": "Model 2431", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.910907089826345, + 26.228512762190263 + ] + }, + "properties": { + "id": "meter-2432", + "maker": "Maker A", + "model": "Model 2432", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.173577698769336, + 21.41150004180992 + ] + }, + "properties": { + "id": "meter-2433", + "maker": "Maker C", + "model": "Model 2433", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21400550249838, + 29.89349458422886 + ] + }, + "properties": { + "id": "meter-2434", + "maker": "Maker I", + "model": "Model 2434", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.86894811241891, + 26.562413874416126 + ] + }, + "properties": { + "id": "meter-2435", + "maker": "Maker G", + "model": "Model 2435", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.202055385751116, + 21.468624794885375 + ] + }, + "properties": { + "id": "meter-2436", + "maker": "Maker H", + "model": "Model 2436", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.634481328808846, + 25.410064384818202 + ] + }, + "properties": { + "id": "meter-2437", + "maker": "Maker G", + "model": "Model 2437", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.93751304354513, + 21.381479619456048 + ] + }, + "properties": { + "id": "meter-2438", + "maker": "Maker F", + "model": "Model 2438", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.83417736300866, + 24.541171808530652 + ] + }, + "properties": { + "id": "meter-2439", + "maker": "Maker J", + "model": "Model 2439", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.06262883590658, + 29.734559310913735 + ] + }, + "properties": { + "id": "meter-2440", + "maker": "Maker C", + "model": "Model 2440", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.860547059092205, + 26.157332352826792 + ] + }, + "properties": { + "id": "meter-2441", + "maker": "Maker H", + "model": "Model 2441", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.474992525594025, + 24.446275468832997 + ] + }, + "properties": { + "id": "meter-2442", + "maker": "Maker G", + "model": "Model 2442", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.37863695525683, + 21.440717160130948 + ] + }, + "properties": { + "id": "meter-2443", + "maker": "Maker B", + "model": "Model 2443", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93863345042918, + 26.3905641032907 + ] + }, + "properties": { + "id": "meter-2444", + "maker": "Maker J", + "model": "Model 2444", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71593442834594, + 18.325266124477068 + ] + }, + "properties": { + "id": "meter-2445", + "maker": "Maker I", + "model": "Model 2445", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.43230387960562, + 30.166415339583725 + ] + }, + "properties": { + "id": "meter-2446", + "maker": "Maker H", + "model": "Model 2446", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.40243007553241, + 18.32035439710412 + ] + }, + "properties": { + "id": "meter-2447", + "maker": "Maker I", + "model": "Model 2447", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.2599570067798, + 29.87828368777133 + ] + }, + "properties": { + "id": "meter-2448", + "maker": "Maker A", + "model": "Model 2448", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.82005858100232, + 27.678966967506877 + ] + }, + "properties": { + "id": "meter-2449", + "maker": "Maker F", + "model": "Model 2449", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03750338598157, + 26.236981789644826 + ] + }, + "properties": { + "id": "meter-2450", + "maker": "Maker I", + "model": "Model 2450", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.29524930661153, + 30.219753610478726 + ] + }, + "properties": { + "id": "meter-2451", + "maker": "Maker D", + "model": "Model 2451", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84980688284243, + 21.550438146931153 + ] + }, + "properties": { + "id": "meter-2452", + "maker": "Maker G", + "model": "Model 2452", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.56177752527714, + 25.332098690334053 + ] + }, + "properties": { + "id": "meter-2453", + "maker": "Maker I", + "model": "Model 2453", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.626479183218414, + 28.42063255749169 + ] + }, + "properties": { + "id": "meter-2454", + "maker": "Maker B", + "model": "Model 2454", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.058795653612364, + 24.129258359113823 + ] + }, + "properties": { + "id": "meter-2455", + "maker": "Maker C", + "model": "Model 2455", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.20111672284956, + 24.28058180854333 + ] + }, + "properties": { + "id": "meter-2456", + "maker": "Maker J", + "model": "Model 2456", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23046793123083, + 21.546280810006266 + ] + }, + "properties": { + "id": "meter-2457", + "maker": "Maker C", + "model": "Model 2457", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.27413774694867, + 18.032655019346468 + ] + }, + "properties": { + "id": "meter-2458", + "maker": "Maker C", + "model": "Model 2458", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.42624514782826, + 18.233756601082057 + ] + }, + "properties": { + "id": "meter-2459", + "maker": "Maker H", + "model": "Model 2459", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01819421723308, + 26.485417271869785 + ] + }, + "properties": { + "id": "meter-2460", + "maker": "Maker B", + "model": "Model 2460", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.18299493796571, + 17.54602860783369 + ] + }, + "properties": { + "id": "meter-2461", + "maker": "Maker B", + "model": "Model 2461", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.47429934415897, + 18.181762336603207 + ] + }, + "properties": { + "id": "meter-2462", + "maker": "Maker H", + "model": "Model 2462", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.1805225161104, + 29.978789555836396 + ] + }, + "properties": { + "id": "meter-2463", + "maker": "Maker F", + "model": "Model 2463", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.613146064939805, + 27.576331378240074 + ] + }, + "properties": { + "id": "meter-2464", + "maker": "Maker F", + "model": "Model 2464", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.593275111098535, + 28.405229324490488 + ] + }, + "properties": { + "id": "meter-2465", + "maker": "Maker C", + "model": "Model 2465", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.62651863769353, + 28.454431562037254 + ] + }, + "properties": { + "id": "meter-2466", + "maker": "Maker I", + "model": "Model 2466", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.906880771165284, + 26.62425380214036 + ] + }, + "properties": { + "id": "meter-2467", + "maker": "Maker F", + "model": "Model 2467", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.728190252288144, + 18.59152157969152 + ] + }, + "properties": { + "id": "meter-2468", + "maker": "Maker H", + "model": "Model 2468", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.38961275934539, + 17.466454717171377 + ] + }, + "properties": { + "id": "meter-2469", + "maker": "Maker F", + "model": "Model 2469", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.583338224258384, + 20.28948847879623 + ] + }, + "properties": { + "id": "meter-2470", + "maker": "Maker C", + "model": "Model 2470", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.55878156419565, + 18.505117209618497 + ] + }, + "properties": { + "id": "meter-2471", + "maker": "Maker A", + "model": "Model 2471", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68559963454151, + 18.245261043112087 + ] + }, + "properties": { + "id": "meter-2472", + "maker": "Maker C", + "model": "Model 2472", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99228051277702, + 26.500666722778547 + ] + }, + "properties": { + "id": "meter-2473", + "maker": "Maker C", + "model": "Model 2473", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.83184500753742, + 26.367148540190723 + ] + }, + "properties": { + "id": "meter-2474", + "maker": "Maker E", + "model": "Model 2474", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.827583201847354, + 18.35818807615341 + ] + }, + "properties": { + "id": "meter-2475", + "maker": "Maker I", + "model": "Model 2475", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.866055113681746, + 21.44672365184168 + ] + }, + "properties": { + "id": "meter-2476", + "maker": "Maker D", + "model": "Model 2476", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.81920861670984, + 28.407852379081284 + ] + }, + "properties": { + "id": "meter-2477", + "maker": "Maker E", + "model": "Model 2477", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.491439229299594, + 18.17151307104705 + ] + }, + "properties": { + "id": "meter-2478", + "maker": "Maker B", + "model": "Model 2478", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.48960385063399, + 24.676320999044083 + ] + }, + "properties": { + "id": "meter-2479", + "maker": "Maker A", + "model": "Model 2479", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.738364081188564, + 25.57482127083004 + ] + }, + "properties": { + "id": "meter-2480", + "maker": "Maker D", + "model": "Model 2480", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.75165071216478, + 28.314291795695123 + ] + }, + "properties": { + "id": "meter-2481", + "maker": "Maker D", + "model": "Model 2481", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.25453392319914, + 18.233240882891234 + ] + }, + "properties": { + "id": "meter-2482", + "maker": "Maker H", + "model": "Model 2482", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.757404311250035, + 18.30167960536021 + ] + }, + "properties": { + "id": "meter-2483", + "maker": "Maker D", + "model": "Model 2483", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.65046496342715, + 25.451043976675102 + ] + }, + "properties": { + "id": "meter-2484", + "maker": "Maker C", + "model": "Model 2484", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.85243137560337, + 26.098829563284937 + ] + }, + "properties": { + "id": "meter-2485", + "maker": "Maker I", + "model": "Model 2485", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.274280775091974, + 24.20652704282962 + ] + }, + "properties": { + "id": "meter-2486", + "maker": "Maker A", + "model": "Model 2486", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.626234471363134, + 18.207712033131667 + ] + }, + "properties": { + "id": "meter-2487", + "maker": "Maker B", + "model": "Model 2487", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.859196201912255, + 30.762347632637404 + ] + }, + "properties": { + "id": "meter-2488", + "maker": "Maker J", + "model": "Model 2488", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85815908501783, + 24.42122152629809 + ] + }, + "properties": { + "id": "meter-2489", + "maker": "Maker J", + "model": "Model 2489", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18540589776058, + 26.195058647805713 + ] + }, + "properties": { + "id": "meter-2490", + "maker": "Maker E", + "model": "Model 2490", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94822986458125, + 26.777114635890683 + ] + }, + "properties": { + "id": "meter-2491", + "maker": "Maker E", + "model": "Model 2491", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.87521742148772, + 21.681195610294587 + ] + }, + "properties": { + "id": "meter-2492", + "maker": "Maker A", + "model": "Model 2492", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.477512474352096, + 20.004503320187887 + ] + }, + "properties": { + "id": "meter-2493", + "maker": "Maker H", + "model": "Model 2493", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.691013931564136, + 19.85234847419014 + ] + }, + "properties": { + "id": "meter-2494", + "maker": "Maker D", + "model": "Model 2494", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.26873074072896, + 29.90024373273658 + ] + }, + "properties": { + "id": "meter-2495", + "maker": "Maker J", + "model": "Model 2495", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.3731980231745, + 19.92784367075607 + ] + }, + "properties": { + "id": "meter-2496", + "maker": "Maker A", + "model": "Model 2496", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93714442521965, + 26.66469569742049 + ] + }, + "properties": { + "id": "meter-2497", + "maker": "Maker I", + "model": "Model 2497", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.71169955007301, + 26.22752192336628 + ] + }, + "properties": { + "id": "meter-2498", + "maker": "Maker G", + "model": "Model 2498", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.19507605707769, + 24.202307323549366 + ] + }, + "properties": { + "id": "meter-2499", + "maker": "Maker D", + "model": "Model 2499", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.67630411111245, + 18.415735434422395 + ] + }, + "properties": { + "id": "meter-2500", + "maker": "Maker E", + "model": "Model 2500", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.28664200262778, + 30.914665532487025 + ] + }, + "properties": { + "id": "meter-2501", + "maker": "Maker E", + "model": "Model 2501", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.34646551471862, + 18.142001031430254 + ] + }, + "properties": { + "id": "meter-2502", + "maker": "Maker J", + "model": "Model 2502", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26345932434044, + 21.565915773395723 + ] + }, + "properties": { + "id": "meter-2503", + "maker": "Maker J", + "model": "Model 2503", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.606569103306754, + 24.6913287427025 + ] + }, + "properties": { + "id": "meter-2504", + "maker": "Maker H", + "model": "Model 2504", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.55519497922451, + 25.37093636827091 + ] + }, + "properties": { + "id": "meter-2505", + "maker": "Maker C", + "model": "Model 2505", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.629530471430634, + 18.150060200926333 + ] + }, + "properties": { + "id": "meter-2506", + "maker": "Maker J", + "model": "Model 2506", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.4046269499638, + 17.52607243057923 + ] + }, + "properties": { + "id": "meter-2507", + "maker": "Maker I", + "model": "Model 2507", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.900827410930575, + 26.535776905536554 + ] + }, + "properties": { + "id": "meter-2508", + "maker": "Maker I", + "model": "Model 2508", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17260650774733, + 26.223833193347286 + ] + }, + "properties": { + "id": "meter-2509", + "maker": "Maker D", + "model": "Model 2509", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15575950831369, + 26.361608354282584 + ] + }, + "properties": { + "id": "meter-2510", + "maker": "Maker A", + "model": "Model 2510", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.047102798438516, + 17.631721362486026 + ] + }, + "properties": { + "id": "meter-2511", + "maker": "Maker B", + "model": "Model 2511", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03787893691841, + 26.76465644202541 + ] + }, + "properties": { + "id": "meter-2512", + "maker": "Maker H", + "model": "Model 2512", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.73196216255393, + 24.433259785887923 + ] + }, + "properties": { + "id": "meter-2513", + "maker": "Maker G", + "model": "Model 2513", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.22123475783277, + 21.687820853658064 + ] + }, + "properties": { + "id": "meter-2514", + "maker": "Maker C", + "model": "Model 2514", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.92474822031785, + 18.43982275896733 + ] + }, + "properties": { + "id": "meter-2515", + "maker": "Maker G", + "model": "Model 2515", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.450555250678136, + 24.676237151840997 + ] + }, + "properties": { + "id": "meter-2516", + "maker": "Maker H", + "model": "Model 2516", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.08700126408926, + 24.07297100498237 + ] + }, + "properties": { + "id": "meter-2517", + "maker": "Maker I", + "model": "Model 2517", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.02318348496154, + 24.110641902682886 + ] + }, + "properties": { + "id": "meter-2518", + "maker": "Maker C", + "model": "Model 2518", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.199046823200476, + 21.520513740349088 + ] + }, + "properties": { + "id": "meter-2519", + "maker": "Maker F", + "model": "Model 2519", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.835914686340296, + 26.18544801625289 + ] + }, + "properties": { + "id": "meter-2520", + "maker": "Maker F", + "model": "Model 2520", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.600682414678374, + 24.401007127666258 + ] + }, + "properties": { + "id": "meter-2521", + "maker": "Maker F", + "model": "Model 2521", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.711878226618985, + 18.147050351321994 + ] + }, + "properties": { + "id": "meter-2522", + "maker": "Maker E", + "model": "Model 2522", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.88164233096882, + 30.85723729618713 + ] + }, + "properties": { + "id": "meter-2523", + "maker": "Maker H", + "model": "Model 2523", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.80416347910732, + 26.43192541904642 + ] + }, + "properties": { + "id": "meter-2524", + "maker": "Maker I", + "model": "Model 2524", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.391602112624426, + 20.026509608955944 + ] + }, + "properties": { + "id": "meter-2525", + "maker": "Maker C", + "model": "Model 2525", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.8460479625181, + 27.75896302437968 + ] + }, + "properties": { + "id": "meter-2526", + "maker": "Maker B", + "model": "Model 2526", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.647792536341846, + 24.713717228170005 + ] + }, + "properties": { + "id": "meter-2527", + "maker": "Maker H", + "model": "Model 2527", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.5999457635961, + 18.206621864197896 + ] + }, + "properties": { + "id": "meter-2528", + "maker": "Maker G", + "model": "Model 2528", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.29813054821208, + 17.51577429289445 + ] + }, + "properties": { + "id": "meter-2529", + "maker": "Maker D", + "model": "Model 2529", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.17394732634434, + 29.98872267814892 + ] + }, + "properties": { + "id": "meter-2530", + "maker": "Maker E", + "model": "Model 2530", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.25467657837755, + 17.43341263830974 + ] + }, + "properties": { + "id": "meter-2531", + "maker": "Maker I", + "model": "Model 2531", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.833579428500215, + 24.570516208618706 + ] + }, + "properties": { + "id": "meter-2532", + "maker": "Maker J", + "model": "Model 2532", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.001223176933124, + 26.49468477418784 + ] + }, + "properties": { + "id": "meter-2533", + "maker": "Maker H", + "model": "Model 2533", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.680096754885575, + 25.5858787124557 + ] + }, + "properties": { + "id": "meter-2534", + "maker": "Maker G", + "model": "Model 2534", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.96625004854645, + 30.839976539222718 + ] + }, + "properties": { + "id": "meter-2535", + "maker": "Maker F", + "model": "Model 2535", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.468546709842386, + 18.435220008150495 + ] + }, + "properties": { + "id": "meter-2536", + "maker": "Maker F", + "model": "Model 2536", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94771234347894, + 26.524897223484224 + ] + }, + "properties": { + "id": "meter-2537", + "maker": "Maker H", + "model": "Model 2537", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.46331587149927, + 18.169359521166843 + ] + }, + "properties": { + "id": "meter-2538", + "maker": "Maker H", + "model": "Model 2538", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.32823922510959, + 18.231352895548966 + ] + }, + "properties": { + "id": "meter-2539", + "maker": "Maker J", + "model": "Model 2539", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96020373756303, + 26.23322313732825 + ] + }, + "properties": { + "id": "meter-2540", + "maker": "Maker G", + "model": "Model 2540", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.44242487613909, + 21.269476598023736 + ] + }, + "properties": { + "id": "meter-2541", + "maker": "Maker F", + "model": "Model 2541", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84584313464865, + 21.56225905091921 + ] + }, + "properties": { + "id": "meter-2542", + "maker": "Maker F", + "model": "Model 2542", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20871044319098, + 26.279341022872668 + ] + }, + "properties": { + "id": "meter-2543", + "maker": "Maker E", + "model": "Model 2543", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.01028510481252, + 24.332316329260454 + ] + }, + "properties": { + "id": "meter-2544", + "maker": "Maker I", + "model": "Model 2544", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.74773783914914, + 18.2600737163215 + ] + }, + "properties": { + "id": "meter-2545", + "maker": "Maker J", + "model": "Model 2545", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01898092152122, + 17.661921782807326 + ] + }, + "properties": { + "id": "meter-2546", + "maker": "Maker F", + "model": "Model 2546", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.064952703603566, + 24.113653993753665 + ] + }, + "properties": { + "id": "meter-2547", + "maker": "Maker E", + "model": "Model 2547", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.50884518475633, + 24.475304828420107 + ] + }, + "properties": { + "id": "meter-2548", + "maker": "Maker G", + "model": "Model 2548", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.068917770957846, + 24.092378711966184 + ] + }, + "properties": { + "id": "meter-2549", + "maker": "Maker B", + "model": "Model 2549", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17813139669855, + 17.534021085318514 + ] + }, + "properties": { + "id": "meter-2550", + "maker": "Maker H", + "model": "Model 2550", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20542714164959, + 29.970219912900163 + ] + }, + "properties": { + "id": "meter-2551", + "maker": "Maker B", + "model": "Model 2551", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96084221919802, + 26.262937956921128 + ] + }, + "properties": { + "id": "meter-2552", + "maker": "Maker H", + "model": "Model 2552", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.889465963045424, + 21.509181296781996 + ] + }, + "properties": { + "id": "meter-2553", + "maker": "Maker B", + "model": "Model 2553", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12445226530914, + 26.344239943738085 + ] + }, + "properties": { + "id": "meter-2554", + "maker": "Maker B", + "model": "Model 2554", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.647505566087816, + 27.33350837782009 + ] + }, + "properties": { + "id": "meter-2555", + "maker": "Maker B", + "model": "Model 2555", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.043943189789005, + 26.34579587319805 + ] + }, + "properties": { + "id": "meter-2556", + "maker": "Maker C", + "model": "Model 2556", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.68820899702551, + 27.516166980969192 + ] + }, + "properties": { + "id": "meter-2557", + "maker": "Maker H", + "model": "Model 2557", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21114984590448, + 30.092757253875927 + ] + }, + "properties": { + "id": "meter-2558", + "maker": "Maker H", + "model": "Model 2558", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.76803653298449, + 27.577398945796883 + ] + }, + "properties": { + "id": "meter-2559", + "maker": "Maker I", + "model": "Model 2559", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94862690101183, + 26.356200617294178 + ] + }, + "properties": { + "id": "meter-2560", + "maker": "Maker A", + "model": "Model 2560", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.073888095730524, + 30.9333960045951 + ] + }, + "properties": { + "id": "meter-2561", + "maker": "Maker E", + "model": "Model 2561", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.233002962894126, + 29.965249849311736 + ] + }, + "properties": { + "id": "meter-2562", + "maker": "Maker H", + "model": "Model 2562", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.75565776662813, + 21.386649623992273 + ] + }, + "properties": { + "id": "meter-2563", + "maker": "Maker J", + "model": "Model 2563", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.986356413031835, + 26.314867144597333 + ] + }, + "properties": { + "id": "meter-2564", + "maker": "Maker H", + "model": "Model 2564", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.798830100262144, + 21.61666982024972 + ] + }, + "properties": { + "id": "meter-2565", + "maker": "Maker A", + "model": "Model 2565", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.41159876262912, + 20.0885278568964 + ] + }, + "properties": { + "id": "meter-2566", + "maker": "Maker F", + "model": "Model 2566", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.474172515082515, + 20.024597065259496 + ] + }, + "properties": { + "id": "meter-2567", + "maker": "Maker B", + "model": "Model 2567", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20801682253442, + 26.278891340637237 + ] + }, + "properties": { + "id": "meter-2568", + "maker": "Maker B", + "model": "Model 2568", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.66796600020381, + 24.565866241052994 + ] + }, + "properties": { + "id": "meter-2569", + "maker": "Maker G", + "model": "Model 2569", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.02852083589852, + 30.97955680651443 + ] + }, + "properties": { + "id": "meter-2570", + "maker": "Maker J", + "model": "Model 2570", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.218915605843215, + 21.450919886819122 + ] + }, + "properties": { + "id": "meter-2571", + "maker": "Maker I", + "model": "Model 2571", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.336854411576, + 21.493908020067593 + ] + }, + "properties": { + "id": "meter-2572", + "maker": "Maker A", + "model": "Model 2572", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.756398374899874, + 21.56357531069826 + ] + }, + "properties": { + "id": "meter-2573", + "maker": "Maker G", + "model": "Model 2573", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.510861839898546, + 19.990352118322832 + ] + }, + "properties": { + "id": "meter-2574", + "maker": "Maker J", + "model": "Model 2574", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21563070573545, + 21.484171399150735 + ] + }, + "properties": { + "id": "meter-2575", + "maker": "Maker E", + "model": "Model 2575", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.27703233598167, + 21.45828193840679 + ] + }, + "properties": { + "id": "meter-2576", + "maker": "Maker E", + "model": "Model 2576", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85686375220425, + 21.37862009002052 + ] + }, + "properties": { + "id": "meter-2577", + "maker": "Maker D", + "model": "Model 2577", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.766712143938236, + 24.56071998570059 + ] + }, + "properties": { + "id": "meter-2578", + "maker": "Maker H", + "model": "Model 2578", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.453393816339016, + 28.640189287035156 + ] + }, + "properties": { + "id": "meter-2579", + "maker": "Maker B", + "model": "Model 2579", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.853338702102015, + 17.57562512300917 + ] + }, + "properties": { + "id": "meter-2580", + "maker": "Maker C", + "model": "Model 2580", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.901891927781726, + 26.327245462395364 + ] + }, + "properties": { + "id": "meter-2581", + "maker": "Maker D", + "model": "Model 2581", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.02373220299255, + 29.825718858955543 + ] + }, + "properties": { + "id": "meter-2582", + "maker": "Maker J", + "model": "Model 2582", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.91868565814881, + 24.27327243883277 + ] + }, + "properties": { + "id": "meter-2583", + "maker": "Maker I", + "model": "Model 2583", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08480983756508, + 26.42085022034328 + ] + }, + "properties": { + "id": "meter-2584", + "maker": "Maker H", + "model": "Model 2584", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.39157110447241, + 28.515801758143446 + ] + }, + "properties": { + "id": "meter-2585", + "maker": "Maker H", + "model": "Model 2585", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.79499525621822, + 28.31026444732429 + ] + }, + "properties": { + "id": "meter-2586", + "maker": "Maker D", + "model": "Model 2586", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.615649598765174, + 18.436656070104032 + ] + }, + "properties": { + "id": "meter-2587", + "maker": "Maker B", + "model": "Model 2587", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24792545909156, + 21.55197664627581 + ] + }, + "properties": { + "id": "meter-2588", + "maker": "Maker F", + "model": "Model 2588", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.08332450529758, + 24.293845501821902 + ] + }, + "properties": { + "id": "meter-2589", + "maker": "Maker H", + "model": "Model 2589", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53858698176905, + 18.17818229004407 + ] + }, + "properties": { + "id": "meter-2590", + "maker": "Maker G", + "model": "Model 2590", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.87129320817942, + 18.529245066393305 + ] + }, + "properties": { + "id": "meter-2591", + "maker": "Maker H", + "model": "Model 2591", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09904548294025, + 17.688019253822347 + ] + }, + "properties": { + "id": "meter-2592", + "maker": "Maker F", + "model": "Model 2592", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.66079110022906, + 28.588859525651543 + ] + }, + "properties": { + "id": "meter-2593", + "maker": "Maker C", + "model": "Model 2593", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.065391067092754, + 26.355667193020096 + ] + }, + "properties": { + "id": "meter-2594", + "maker": "Maker C", + "model": "Model 2594", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46090360756268, + 19.7708126806753 + ] + }, + "properties": { + "id": "meter-2595", + "maker": "Maker C", + "model": "Model 2595", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.28038327773862, + 29.875420788343042 + ] + }, + "properties": { + "id": "meter-2596", + "maker": "Maker D", + "model": "Model 2596", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94202591356316, + 26.325561096372983 + ] + }, + "properties": { + "id": "meter-2597", + "maker": "Maker D", + "model": "Model 2597", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49988489626332, + 18.261300683045416 + ] + }, + "properties": { + "id": "meter-2598", + "maker": "Maker I", + "model": "Model 2598", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.19178914957226, + 29.989828407669343 + ] + }, + "properties": { + "id": "meter-2599", + "maker": "Maker J", + "model": "Model 2599", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.14682648039251, + 21.655964653852692 + ] + }, + "properties": { + "id": "meter-2600", + "maker": "Maker I", + "model": "Model 2600", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61027585423341, + 24.254995335223974 + ] + }, + "properties": { + "id": "meter-2601", + "maker": "Maker A", + "model": "Model 2601", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.60247879513337, + 24.858095860796926 + ] + }, + "properties": { + "id": "meter-2602", + "maker": "Maker D", + "model": "Model 2602", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96220924942933, + 26.762759790629705 + ] + }, + "properties": { + "id": "meter-2603", + "maker": "Maker I", + "model": "Model 2603", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.209820675497475, + 21.530938491484818 + ] + }, + "properties": { + "id": "meter-2604", + "maker": "Maker I", + "model": "Model 2604", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.198506019996564, + 26.30254437946099 + ] + }, + "properties": { + "id": "meter-2605", + "maker": "Maker F", + "model": "Model 2605", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0129517510351, + 24.10261070846563 + ] + }, + "properties": { + "id": "meter-2606", + "maker": "Maker J", + "model": "Model 2606", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98870673261369, + 26.13715033082334 + ] + }, + "properties": { + "id": "meter-2607", + "maker": "Maker D", + "model": "Model 2607", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93155092888237, + 26.200408567744205 + ] + }, + "properties": { + "id": "meter-2608", + "maker": "Maker J", + "model": "Model 2608", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25679318333807, + 21.327612860112794 + ] + }, + "properties": { + "id": "meter-2609", + "maker": "Maker H", + "model": "Model 2609", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.63045394256946, + 25.329562957343256 + ] + }, + "properties": { + "id": "meter-2610", + "maker": "Maker B", + "model": "Model 2610", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.29319262967191, + 21.70891004260047 + ] + }, + "properties": { + "id": "meter-2611", + "maker": "Maker D", + "model": "Model 2611", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.82551668522223, + 24.356851804865233 + ] + }, + "properties": { + "id": "meter-2612", + "maker": "Maker A", + "model": "Model 2612", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.29632465716439, + 17.713859002964107 + ] + }, + "properties": { + "id": "meter-2613", + "maker": "Maker I", + "model": "Model 2613", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.93943654345546, + 26.312442556557315 + ] + }, + "properties": { + "id": "meter-2614", + "maker": "Maker A", + "model": "Model 2614", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.40002942201823, + 18.031989208222548 + ] + }, + "properties": { + "id": "meter-2615", + "maker": "Maker I", + "model": "Model 2615", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.62433383953734, + 28.37410557627864 + ] + }, + "properties": { + "id": "meter-2616", + "maker": "Maker D", + "model": "Model 2616", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.964136125451155, + 26.25940016520674 + ] + }, + "properties": { + "id": "meter-2617", + "maker": "Maker E", + "model": "Model 2617", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.78885054068058, + 25.154014906582876 + ] + }, + "properties": { + "id": "meter-2618", + "maker": "Maker D", + "model": "Model 2618", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.68458726573002, + 27.43414465841309 + ] + }, + "properties": { + "id": "meter-2619", + "maker": "Maker B", + "model": "Model 2619", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11592205447551, + 26.398264571887587 + ] + }, + "properties": { + "id": "meter-2620", + "maker": "Maker A", + "model": "Model 2620", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98300323458904, + 26.4282643820531 + ] + }, + "properties": { + "id": "meter-2621", + "maker": "Maker F", + "model": "Model 2621", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67409362859518, + 24.697351799979952 + ] + }, + "properties": { + "id": "meter-2622", + "maker": "Maker C", + "model": "Model 2622", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.712365459324495, + 21.53032696484316 + ] + }, + "properties": { + "id": "meter-2623", + "maker": "Maker G", + "model": "Model 2623", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.760970217619814, + 18.471138232352185 + ] + }, + "properties": { + "id": "meter-2624", + "maker": "Maker B", + "model": "Model 2624", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01647319587908, + 26.241243150451222 + ] + }, + "properties": { + "id": "meter-2625", + "maker": "Maker A", + "model": "Model 2625", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.43786188054465, + 18.247423261609374 + ] + }, + "properties": { + "id": "meter-2626", + "maker": "Maker G", + "model": "Model 2626", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.19611871777141, + 21.386988697412924 + ] + }, + "properties": { + "id": "meter-2627", + "maker": "Maker C", + "model": "Model 2627", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.2128077744257, + 26.268890249527093 + ] + }, + "properties": { + "id": "meter-2628", + "maker": "Maker D", + "model": "Model 2628", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06580386665036, + 26.396116533657132 + ] + }, + "properties": { + "id": "meter-2629", + "maker": "Maker E", + "model": "Model 2629", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69020440655605, + 18.073011656369438 + ] + }, + "properties": { + "id": "meter-2630", + "maker": "Maker F", + "model": "Model 2630", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06087030066968, + 24.117964692210094 + ] + }, + "properties": { + "id": "meter-2631", + "maker": "Maker G", + "model": "Model 2631", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.89216024060872, + 27.61654090591871 + ] + }, + "properties": { + "id": "meter-2632", + "maker": "Maker E", + "model": "Model 2632", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.73094193956246, + 27.577280822539326 + ] + }, + "properties": { + "id": "meter-2633", + "maker": "Maker B", + "model": "Model 2633", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.497764418833356, + 18.200533280144437 + ] + }, + "properties": { + "id": "meter-2634", + "maker": "Maker J", + "model": "Model 2634", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.00148636027201, + 21.34664054578894 + ] + }, + "properties": { + "id": "meter-2635", + "maker": "Maker I", + "model": "Model 2635", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.54875950620416, + 24.517682588364558 + ] + }, + "properties": { + "id": "meter-2636", + "maker": "Maker A", + "model": "Model 2636", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.41053935055684, + 25.58068237800913 + ] + }, + "properties": { + "id": "meter-2637", + "maker": "Maker B", + "model": "Model 2637", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06167466256535, + 26.374490631289362 + ] + }, + "properties": { + "id": "meter-2638", + "maker": "Maker J", + "model": "Model 2638", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.84783543152941, + 30.984450361206534 + ] + }, + "properties": { + "id": "meter-2639", + "maker": "Maker D", + "model": "Model 2639", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.099643781993876, + 26.251225616826513 + ] + }, + "properties": { + "id": "meter-2640", + "maker": "Maker I", + "model": "Model 2640", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.09611283030185, + 30.05226147442261 + ] + }, + "properties": { + "id": "meter-2641", + "maker": "Maker A", + "model": "Model 2641", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.50794735365057, + 19.8925012799494 + ] + }, + "properties": { + "id": "meter-2642", + "maker": "Maker B", + "model": "Model 2642", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9030312776519, + 26.554086652838734 + ] + }, + "properties": { + "id": "meter-2643", + "maker": "Maker J", + "model": "Model 2643", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.17271225472093, + 24.08303284469949 + ] + }, + "properties": { + "id": "meter-2644", + "maker": "Maker H", + "model": "Model 2644", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.77243591109028, + 26.594014585725283 + ] + }, + "properties": { + "id": "meter-2645", + "maker": "Maker B", + "model": "Model 2645", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06150303269133, + 24.08956605966774 + ] + }, + "properties": { + "id": "meter-2646", + "maker": "Maker C", + "model": "Model 2646", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.7062702309908, + 21.38484698898646 + ] + }, + "properties": { + "id": "meter-2647", + "maker": "Maker E", + "model": "Model 2647", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.172950376106506, + 30.75409610237432 + ] + }, + "properties": { + "id": "meter-2648", + "maker": "Maker E", + "model": "Model 2648", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.19980263382827, + 24.226566170703325 + ] + }, + "properties": { + "id": "meter-2649", + "maker": "Maker A", + "model": "Model 2649", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.56508884094832, + 28.202359335231613 + ] + }, + "properties": { + "id": "meter-2650", + "maker": "Maker A", + "model": "Model 2650", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85371441321088, + 21.38971530764051 + ] + }, + "properties": { + "id": "meter-2651", + "maker": "Maker C", + "model": "Model 2651", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.89114132689542, + 26.258182602989695 + ] + }, + "properties": { + "id": "meter-2652", + "maker": "Maker I", + "model": "Model 2652", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08355680918359, + 26.444824680216836 + ] + }, + "properties": { + "id": "meter-2653", + "maker": "Maker A", + "model": "Model 2653", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.2049996385143, + 17.524557818364972 + ] + }, + "properties": { + "id": "meter-2654", + "maker": "Maker I", + "model": "Model 2654", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.730999494963484, + 18.300760121047425 + ] + }, + "properties": { + "id": "meter-2655", + "maker": "Maker C", + "model": "Model 2655", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.56714871431544, + 18.117861777414657 + ] + }, + "properties": { + "id": "meter-2656", + "maker": "Maker J", + "model": "Model 2656", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.95157219588175, + 21.404405279918294 + ] + }, + "properties": { + "id": "meter-2657", + "maker": "Maker G", + "model": "Model 2657", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97937107976788, + 26.643621215546613 + ] + }, + "properties": { + "id": "meter-2658", + "maker": "Maker D", + "model": "Model 2658", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.1340629750432, + 30.83026974216796 + ] + }, + "properties": { + "id": "meter-2659", + "maker": "Maker B", + "model": "Model 2659", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.40686928591704, + 21.663472892676666 + ] + }, + "properties": { + "id": "meter-2660", + "maker": "Maker H", + "model": "Model 2660", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.93999419687986, + 27.396334869738883 + ] + }, + "properties": { + "id": "meter-2661", + "maker": "Maker I", + "model": "Model 2661", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.939266273266334, + 26.450264758647158 + ] + }, + "properties": { + "id": "meter-2662", + "maker": "Maker B", + "model": "Model 2662", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.7339400710841, + 18.283554472857173 + ] + }, + "properties": { + "id": "meter-2663", + "maker": "Maker J", + "model": "Model 2663", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45155944605291, + 19.738157703897866 + ] + }, + "properties": { + "id": "meter-2664", + "maker": "Maker D", + "model": "Model 2664", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.640221174143534, + 20.202537372520126 + ] + }, + "properties": { + "id": "meter-2665", + "maker": "Maker H", + "model": "Model 2665", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.22194118143303, + 20.00330892717272 + ] + }, + "properties": { + "id": "meter-2666", + "maker": "Maker D", + "model": "Model 2666", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.72336997904277, + 27.680695859167795 + ] + }, + "properties": { + "id": "meter-2667", + "maker": "Maker G", + "model": "Model 2667", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.974373596921424, + 26.497154375173338 + ] + }, + "properties": { + "id": "meter-2668", + "maker": "Maker H", + "model": "Model 2668", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91281455534058, + 26.528705873303807 + ] + }, + "properties": { + "id": "meter-2669", + "maker": "Maker H", + "model": "Model 2669", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.62040700922841, + 24.52659261431797 + ] + }, + "properties": { + "id": "meter-2670", + "maker": "Maker A", + "model": "Model 2670", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.354299848017774, + 28.327053183068713 + ] + }, + "properties": { + "id": "meter-2671", + "maker": "Maker J", + "model": "Model 2671", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06727077275504, + 26.45569813998739 + ] + }, + "properties": { + "id": "meter-2672", + "maker": "Maker B", + "model": "Model 2672", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.40001759099915, + 18.223963873091986 + ] + }, + "properties": { + "id": "meter-2673", + "maker": "Maker E", + "model": "Model 2673", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.695107231935694, + 18.03018213046461 + ] + }, + "properties": { + "id": "meter-2674", + "maker": "Maker G", + "model": "Model 2674", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.518466031658065, + 17.978649484391898 + ] + }, + "properties": { + "id": "meter-2675", + "maker": "Maker G", + "model": "Model 2675", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.55698583315991, + 28.381017122689567 + ] + }, + "properties": { + "id": "meter-2676", + "maker": "Maker J", + "model": "Model 2676", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04061260146745, + 17.521266943930964 + ] + }, + "properties": { + "id": "meter-2677", + "maker": "Maker A", + "model": "Model 2677", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04136456606507, + 24.074658086679364 + ] + }, + "properties": { + "id": "meter-2678", + "maker": "Maker D", + "model": "Model 2678", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.18588053917201, + 20.01874752878249 + ] + }, + "properties": { + "id": "meter-2679", + "maker": "Maker B", + "model": "Model 2679", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.85328599713874, + 26.606385349309946 + ] + }, + "properties": { + "id": "meter-2680", + "maker": "Maker A", + "model": "Model 2680", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63900936505034, + 24.55040923260955 + ] + }, + "properties": { + "id": "meter-2681", + "maker": "Maker D", + "model": "Model 2681", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08390505448993, + 26.394218942159036 + ] + }, + "properties": { + "id": "meter-2682", + "maker": "Maker H", + "model": "Model 2682", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17605816899718, + 26.361417477310482 + ] + }, + "properties": { + "id": "meter-2683", + "maker": "Maker F", + "model": "Model 2683", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.873115091451766, + 31.02193211130027 + ] + }, + "properties": { + "id": "meter-2684", + "maker": "Maker E", + "model": "Model 2684", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.962347385018994, + 24.130635491095077 + ] + }, + "properties": { + "id": "meter-2685", + "maker": "Maker E", + "model": "Model 2685", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.009455386474286, + 26.5180742522532 + ] + }, + "properties": { + "id": "meter-2686", + "maker": "Maker J", + "model": "Model 2686", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.68035067887591, + 26.328644240274183 + ] + }, + "properties": { + "id": "meter-2687", + "maker": "Maker B", + "model": "Model 2687", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.509913982407866, + 24.64693599099475 + ] + }, + "properties": { + "id": "meter-2688", + "maker": "Maker D", + "model": "Model 2688", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.69214084140701, + 25.362730284280655 + ] + }, + "properties": { + "id": "meter-2689", + "maker": "Maker A", + "model": "Model 2689", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.51174051060712, + 27.471122582518944 + ] + }, + "properties": { + "id": "meter-2690", + "maker": "Maker J", + "model": "Model 2690", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21626231234636, + 30.060813756863705 + ] + }, + "properties": { + "id": "meter-2691", + "maker": "Maker I", + "model": "Model 2691", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.75420401202155, + 21.31660682823155 + ] + }, + "properties": { + "id": "meter-2692", + "maker": "Maker B", + "model": "Model 2692", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.653838839727726, + 21.242343086651708 + ] + }, + "properties": { + "id": "meter-2693", + "maker": "Maker J", + "model": "Model 2693", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.15122865914892, + 30.9452539241569 + ] + }, + "properties": { + "id": "meter-2694", + "maker": "Maker I", + "model": "Model 2694", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.188411128200045, + 26.201785835329318 + ] + }, + "properties": { + "id": "meter-2695", + "maker": "Maker A", + "model": "Model 2695", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67825057424787, + 24.71600290078024 + ] + }, + "properties": { + "id": "meter-2696", + "maker": "Maker C", + "model": "Model 2696", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.266993910856456, + 24.255821160396806 + ] + }, + "properties": { + "id": "meter-2697", + "maker": "Maker D", + "model": "Model 2697", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.599268558911646, + 25.59359882517662 + ] + }, + "properties": { + "id": "meter-2698", + "maker": "Maker E", + "model": "Model 2698", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.882625148476016, + 31.095766973125407 + ] + }, + "properties": { + "id": "meter-2699", + "maker": "Maker B", + "model": "Model 2699", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.64091964637537, + 24.65964922182083 + ] + }, + "properties": { + "id": "meter-2700", + "maker": "Maker J", + "model": "Model 2700", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.20911846082129, + 30.911193085991954 + ] + }, + "properties": { + "id": "meter-2701", + "maker": "Maker I", + "model": "Model 2701", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.77022384160093, + 30.858895645255902 + ] + }, + "properties": { + "id": "meter-2702", + "maker": "Maker A", + "model": "Model 2702", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.68535731024502, + 25.539528859732346 + ] + }, + "properties": { + "id": "meter-2703", + "maker": "Maker B", + "model": "Model 2703", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.40873332158117, + 21.56172516202033 + ] + }, + "properties": { + "id": "meter-2704", + "maker": "Maker J", + "model": "Model 2704", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.8460871232712, + 18.154489504450968 + ] + }, + "properties": { + "id": "meter-2705", + "maker": "Maker G", + "model": "Model 2705", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.843801520637946, + 27.57530330479483 + ] + }, + "properties": { + "id": "meter-2706", + "maker": "Maker J", + "model": "Model 2706", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.210775644399185, + 30.058276989637573 + ] + }, + "properties": { + "id": "meter-2707", + "maker": "Maker A", + "model": "Model 2707", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.5575462688017, + 18.53902281261175 + ] + }, + "properties": { + "id": "meter-2708", + "maker": "Maker D", + "model": "Model 2708", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.93055785260673, + 26.04974812117091 + ] + }, + "properties": { + "id": "meter-2709", + "maker": "Maker E", + "model": "Model 2709", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.61142612608396, + 18.14673190670591 + ] + }, + "properties": { + "id": "meter-2710", + "maker": "Maker H", + "model": "Model 2710", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.6767589129998, + 18.44810229058025 + ] + }, + "properties": { + "id": "meter-2711", + "maker": "Maker I", + "model": "Model 2711", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98558913073568, + 26.639849378394096 + ] + }, + "properties": { + "id": "meter-2712", + "maker": "Maker E", + "model": "Model 2712", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.93257046270279, + 17.528755831952445 + ] + }, + "properties": { + "id": "meter-2713", + "maker": "Maker E", + "model": "Model 2713", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.33324749979102, + 24.615080674948885 + ] + }, + "properties": { + "id": "meter-2714", + "maker": "Maker H", + "model": "Model 2714", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26504264239552, + 21.30809922927849 + ] + }, + "properties": { + "id": "meter-2715", + "maker": "Maker I", + "model": "Model 2715", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.959428629735584, + 26.23744967588815 + ] + }, + "properties": { + "id": "meter-2716", + "maker": "Maker B", + "model": "Model 2716", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.28915609916899, + 24.20269399493784 + ] + }, + "properties": { + "id": "meter-2717", + "maker": "Maker I", + "model": "Model 2717", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.7710328480314, + 28.59001496162895 + ] + }, + "properties": { + "id": "meter-2718", + "maker": "Maker F", + "model": "Model 2718", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.091399048061305, + 17.461905362241687 + ] + }, + "properties": { + "id": "meter-2719", + "maker": "Maker A", + "model": "Model 2719", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.76956671770773, + 26.654470246552332 + ] + }, + "properties": { + "id": "meter-2720", + "maker": "Maker F", + "model": "Model 2720", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98388603871667, + 26.424524313001168 + ] + }, + "properties": { + "id": "meter-2721", + "maker": "Maker A", + "model": "Model 2721", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.276881605116465, + 30.235269715454656 + ] + }, + "properties": { + "id": "meter-2722", + "maker": "Maker G", + "model": "Model 2722", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.534733197298095, + 24.287819176397942 + ] + }, + "properties": { + "id": "meter-2723", + "maker": "Maker I", + "model": "Model 2723", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.64748765988222, + 18.06041013258341 + ] + }, + "properties": { + "id": "meter-2724", + "maker": "Maker G", + "model": "Model 2724", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54537186128538, + 25.312458491766485 + ] + }, + "properties": { + "id": "meter-2725", + "maker": "Maker B", + "model": "Model 2725", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.86159497050524, + 26.4711567620097 + ] + }, + "properties": { + "id": "meter-2726", + "maker": "Maker H", + "model": "Model 2726", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95491386068936, + 26.450666387736817 + ] + }, + "properties": { + "id": "meter-2727", + "maker": "Maker G", + "model": "Model 2727", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20298386541281, + 26.32399213832452 + ] + }, + "properties": { + "id": "meter-2728", + "maker": "Maker B", + "model": "Model 2728", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.150594644160705, + 21.641427714747216 + ] + }, + "properties": { + "id": "meter-2729", + "maker": "Maker I", + "model": "Model 2729", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.755555235928036, + 21.564439651622866 + ] + }, + "properties": { + "id": "meter-2730", + "maker": "Maker B", + "model": "Model 2730", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.21258494945389, + 17.471165300019997 + ] + }, + "properties": { + "id": "meter-2731", + "maker": "Maker C", + "model": "Model 2731", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.659775249149334, + 20.20305944610132 + ] + }, + "properties": { + "id": "meter-2732", + "maker": "Maker F", + "model": "Model 2732", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02569489502646, + 26.240386366060264 + ] + }, + "properties": { + "id": "meter-2733", + "maker": "Maker H", + "model": "Model 2733", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99868956434891, + 26.51132890254284 + ] + }, + "properties": { + "id": "meter-2734", + "maker": "Maker A", + "model": "Model 2734", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.57969571019827, + 18.353679707272832 + ] + }, + "properties": { + "id": "meter-2735", + "maker": "Maker C", + "model": "Model 2735", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.971944393426796, + 26.32653133606792 + ] + }, + "properties": { + "id": "meter-2736", + "maker": "Maker B", + "model": "Model 2736", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.0280971139097, + 30.91120467544172 + ] + }, + "properties": { + "id": "meter-2737", + "maker": "Maker A", + "model": "Model 2737", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.14726533657557, + 21.396328891398195 + ] + }, + "properties": { + "id": "meter-2738", + "maker": "Maker B", + "model": "Model 2738", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.16892319193735, + 26.330322316974346 + ] + }, + "properties": { + "id": "meter-2739", + "maker": "Maker H", + "model": "Model 2739", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.142346576146494, + 24.120310234012226 + ] + }, + "properties": { + "id": "meter-2740", + "maker": "Maker H", + "model": "Model 2740", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.9325560011535, + 26.39411302074255 + ] + }, + "properties": { + "id": "meter-2741", + "maker": "Maker E", + "model": "Model 2741", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.50272529079882, + 24.591732096743797 + ] + }, + "properties": { + "id": "meter-2742", + "maker": "Maker A", + "model": "Model 2742", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.16842321329705, + 17.52789154615468 + ] + }, + "properties": { + "id": "meter-2743", + "maker": "Maker A", + "model": "Model 2743", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.776452647819205, + 24.634930822563017 + ] + }, + "properties": { + "id": "meter-2744", + "maker": "Maker F", + "model": "Model 2744", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.60668565613095, + 20.22331409750001 + ] + }, + "properties": { + "id": "meter-2745", + "maker": "Maker I", + "model": "Model 2745", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.8938438941452, + 21.384311460175397 + ] + }, + "properties": { + "id": "meter-2746", + "maker": "Maker D", + "model": "Model 2746", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.429694170886265, + 25.321365397515027 + ] + }, + "properties": { + "id": "meter-2747", + "maker": "Maker J", + "model": "Model 2747", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69205566413865, + 27.507416993654306 + ] + }, + "properties": { + "id": "meter-2748", + "maker": "Maker D", + "model": "Model 2748", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.841196125907956, + 26.399301456237247 + ] + }, + "properties": { + "id": "meter-2749", + "maker": "Maker G", + "model": "Model 2749", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.71438518799626, + 28.637626849355595 + ] + }, + "properties": { + "id": "meter-2750", + "maker": "Maker F", + "model": "Model 2750", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.9443171979433, + 30.8487485439706 + ] + }, + "properties": { + "id": "meter-2751", + "maker": "Maker E", + "model": "Model 2751", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.05130616939077, + 30.986274839787434 + ] + }, + "properties": { + "id": "meter-2752", + "maker": "Maker B", + "model": "Model 2752", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08857837018064, + 26.421322968874307 + ] + }, + "properties": { + "id": "meter-2753", + "maker": "Maker I", + "model": "Model 2753", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.82574003032248, + 26.578719306654207 + ] + }, + "properties": { + "id": "meter-2754", + "maker": "Maker E", + "model": "Model 2754", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.51433493420234, + 18.27040494878219 + ] + }, + "properties": { + "id": "meter-2755", + "maker": "Maker G", + "model": "Model 2755", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.3686028822802, + 18.234430758896114 + ] + }, + "properties": { + "id": "meter-2756", + "maker": "Maker J", + "model": "Model 2756", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.27676141934765, + 17.53178328528495 + ] + }, + "properties": { + "id": "meter-2757", + "maker": "Maker E", + "model": "Model 2757", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00891758421316, + 26.50920598566761 + ] + }, + "properties": { + "id": "meter-2758", + "maker": "Maker E", + "model": "Model 2758", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.4561816596148, + 25.348105317319888 + ] + }, + "properties": { + "id": "meter-2759", + "maker": "Maker F", + "model": "Model 2759", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.54285687202209, + 18.406281413641945 + ] + }, + "properties": { + "id": "meter-2760", + "maker": "Maker H", + "model": "Model 2760", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20700663673004, + 26.254263011443584 + ] + }, + "properties": { + "id": "meter-2761", + "maker": "Maker C", + "model": "Model 2761", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.70145405071099, + 25.2781923647271 + ] + }, + "properties": { + "id": "meter-2762", + "maker": "Maker A", + "model": "Model 2762", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23807762768177, + 21.545479066917615 + ] + }, + "properties": { + "id": "meter-2763", + "maker": "Maker A", + "model": "Model 2763", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.561848089491335, + 18.442683578270113 + ] + }, + "properties": { + "id": "meter-2764", + "maker": "Maker H", + "model": "Model 2764", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88618510284314, + 21.238156393519684 + ] + }, + "properties": { + "id": "meter-2765", + "maker": "Maker D", + "model": "Model 2765", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95294194329988, + 26.326128851657575 + ] + }, + "properties": { + "id": "meter-2766", + "maker": "Maker G", + "model": "Model 2766", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.659043745470505, + 24.706008373933845 + ] + }, + "properties": { + "id": "meter-2767", + "maker": "Maker D", + "model": "Model 2767", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.71602242565566, + 27.51174746851134 + ] + }, + "properties": { + "id": "meter-2768", + "maker": "Maker D", + "model": "Model 2768", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17261316481306, + 26.41347173967376 + ] + }, + "properties": { + "id": "meter-2769", + "maker": "Maker G", + "model": "Model 2769", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.84458129859929, + 30.89900927151985 + ] + }, + "properties": { + "id": "meter-2770", + "maker": "Maker G", + "model": "Model 2770", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.46449934751814, + 28.429507834156365 + ] + }, + "properties": { + "id": "meter-2771", + "maker": "Maker D", + "model": "Model 2771", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13958619093131, + 26.408312369563593 + ] + }, + "properties": { + "id": "meter-2772", + "maker": "Maker J", + "model": "Model 2772", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45201601155215, + 27.376051582639402 + ] + }, + "properties": { + "id": "meter-2773", + "maker": "Maker A", + "model": "Model 2773", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12605199712724, + 17.48551359551582 + ] + }, + "properties": { + "id": "meter-2774", + "maker": "Maker J", + "model": "Model 2774", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04863289708415, + 24.16284759485122 + ] + }, + "properties": { + "id": "meter-2775", + "maker": "Maker H", + "model": "Model 2775", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.64224634489654, + 24.709605556008903 + ] + }, + "properties": { + "id": "meter-2776", + "maker": "Maker A", + "model": "Model 2776", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.7928687060386, + 21.321352899193446 + ] + }, + "properties": { + "id": "meter-2777", + "maker": "Maker F", + "model": "Model 2777", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.44618420932072, + 27.466058804198408 + ] + }, + "properties": { + "id": "meter-2778", + "maker": "Maker E", + "model": "Model 2778", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.18705742346961, + 21.249814628819035 + ] + }, + "properties": { + "id": "meter-2779", + "maker": "Maker C", + "model": "Model 2779", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.175372387156706, + 26.192351950923925 + ] + }, + "properties": { + "id": "meter-2780", + "maker": "Maker E", + "model": "Model 2780", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.75652551636446, + 25.22173472147001 + ] + }, + "properties": { + "id": "meter-2781", + "maker": "Maker J", + "model": "Model 2781", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.862163272474, + 24.423900400954583 + ] + }, + "properties": { + "id": "meter-2782", + "maker": "Maker B", + "model": "Model 2782", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11680471247572, + 26.28459924590797 + ] + }, + "properties": { + "id": "meter-2783", + "maker": "Maker A", + "model": "Model 2783", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.7651545423202, + 27.56702464098914 + ] + }, + "properties": { + "id": "meter-2784", + "maker": "Maker H", + "model": "Model 2784", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42042098276484, + 19.989052455497145 + ] + }, + "properties": { + "id": "meter-2785", + "maker": "Maker I", + "model": "Model 2785", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.083428803553545, + 26.33562195550499 + ] + }, + "properties": { + "id": "meter-2786", + "maker": "Maker I", + "model": "Model 2786", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.10933086399971, + 30.119292684572592 + ] + }, + "properties": { + "id": "meter-2787", + "maker": "Maker J", + "model": "Model 2787", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09073186164084, + 26.265130240710853 + ] + }, + "properties": { + "id": "meter-2788", + "maker": "Maker E", + "model": "Model 2788", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.48378772708962, + 24.492066848045432 + ] + }, + "properties": { + "id": "meter-2789", + "maker": "Maker A", + "model": "Model 2789", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.71897728990142, + 27.441885642653148 + ] + }, + "properties": { + "id": "meter-2790", + "maker": "Maker C", + "model": "Model 2790", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04052129954424, + 17.461534555083553 + ] + }, + "properties": { + "id": "meter-2791", + "maker": "Maker H", + "model": "Model 2791", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10770907414501, + 26.248423430163513 + ] + }, + "properties": { + "id": "meter-2792", + "maker": "Maker I", + "model": "Model 2792", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.02910316212723, + 21.459053114716248 + ] + }, + "properties": { + "id": "meter-2793", + "maker": "Maker H", + "model": "Model 2793", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.32290269245391, + 29.963024220603803 + ] + }, + "properties": { + "id": "meter-2794", + "maker": "Maker A", + "model": "Model 2794", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.537796530777335, + 28.361959234516394 + ] + }, + "properties": { + "id": "meter-2795", + "maker": "Maker I", + "model": "Model 2795", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03888045688574, + 30.905195341359143 + ] + }, + "properties": { + "id": "meter-2796", + "maker": "Maker E", + "model": "Model 2796", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.48751431949215, + 28.37847470422391 + ] + }, + "properties": { + "id": "meter-2797", + "maker": "Maker H", + "model": "Model 2797", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.66134840586553, + 27.380423102943837 + ] + }, + "properties": { + "id": "meter-2798", + "maker": "Maker D", + "model": "Model 2798", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.079993703266005, + 26.366169483714852 + ] + }, + "properties": { + "id": "meter-2799", + "maker": "Maker B", + "model": "Model 2799", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46482021613406, + 20.259309798663942 + ] + }, + "properties": { + "id": "meter-2800", + "maker": "Maker I", + "model": "Model 2800", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6392588809458, + 27.723372789647684 + ] + }, + "properties": { + "id": "meter-2801", + "maker": "Maker D", + "model": "Model 2801", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.07793705438843, + 17.481399780883166 + ] + }, + "properties": { + "id": "meter-2802", + "maker": "Maker J", + "model": "Model 2802", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.078301967519536, + 26.452748697600597 + ] + }, + "properties": { + "id": "meter-2803", + "maker": "Maker D", + "model": "Model 2803", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.2013991495994, + 29.966697080048966 + ] + }, + "properties": { + "id": "meter-2804", + "maker": "Maker I", + "model": "Model 2804", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.87557527151008, + 31.125382985309347 + ] + }, + "properties": { + "id": "meter-2805", + "maker": "Maker I", + "model": "Model 2805", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71783762485831, + 18.315637733686906 + ] + }, + "properties": { + "id": "meter-2806", + "maker": "Maker J", + "model": "Model 2806", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.011476452800885, + 26.535556306678334 + ] + }, + "properties": { + "id": "meter-2807", + "maker": "Maker F", + "model": "Model 2807", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.07779473954012, + 17.605326421579335 + ] + }, + "properties": { + "id": "meter-2808", + "maker": "Maker B", + "model": "Model 2808", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81111545603557, + 21.456879510766885 + ] + }, + "properties": { + "id": "meter-2809", + "maker": "Maker G", + "model": "Model 2809", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.72441222615559, + 26.518143495151637 + ] + }, + "properties": { + "id": "meter-2810", + "maker": "Maker J", + "model": "Model 2810", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13769138883552, + 17.53892000576784 + ] + }, + "properties": { + "id": "meter-2811", + "maker": "Maker C", + "model": "Model 2811", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.74550511315421, + 27.64633271882068 + ] + }, + "properties": { + "id": "meter-2812", + "maker": "Maker B", + "model": "Model 2812", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.557867120459555, + 24.25330447310182 + ] + }, + "properties": { + "id": "meter-2813", + "maker": "Maker D", + "model": "Model 2813", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.83088353668053, + 26.343009239645966 + ] + }, + "properties": { + "id": "meter-2814", + "maker": "Maker G", + "model": "Model 2814", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02244763014738, + 26.34790601211134 + ] + }, + "properties": { + "id": "meter-2815", + "maker": "Maker B", + "model": "Model 2815", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13068479161692, + 26.202131204709275 + ] + }, + "properties": { + "id": "meter-2816", + "maker": "Maker F", + "model": "Model 2816", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.76992693689579, + 27.240856230823624 + ] + }, + "properties": { + "id": "meter-2817", + "maker": "Maker B", + "model": "Model 2817", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.79356187410935, + 26.421705346474365 + ] + }, + "properties": { + "id": "meter-2818", + "maker": "Maker B", + "model": "Model 2818", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95258170176455, + 26.3929952757636 + ] + }, + "properties": { + "id": "meter-2819", + "maker": "Maker C", + "model": "Model 2819", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.889672082222575, + 26.152972971656723 + ] + }, + "properties": { + "id": "meter-2820", + "maker": "Maker E", + "model": "Model 2820", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4972889508989, + 20.15502213068871 + ] + }, + "properties": { + "id": "meter-2821", + "maker": "Maker A", + "model": "Model 2821", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.11422915291344, + 21.415639337865617 + ] + }, + "properties": { + "id": "meter-2822", + "maker": "Maker I", + "model": "Model 2822", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.50617216604973, + 21.607677902484323 + ] + }, + "properties": { + "id": "meter-2823", + "maker": "Maker F", + "model": "Model 2823", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.70615392332013, + 25.53932294295815 + ] + }, + "properties": { + "id": "meter-2824", + "maker": "Maker H", + "model": "Model 2824", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.601456520554024, + 27.251998528403117 + ] + }, + "properties": { + "id": "meter-2825", + "maker": "Maker H", + "model": "Model 2825", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.59740502460869, + 24.39200348886179 + ] + }, + "properties": { + "id": "meter-2826", + "maker": "Maker F", + "model": "Model 2826", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47317294398845, + 20.010143300667657 + ] + }, + "properties": { + "id": "meter-2827", + "maker": "Maker G", + "model": "Model 2827", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84596776631017, + 21.401505472642672 + ] + }, + "properties": { + "id": "meter-2828", + "maker": "Maker F", + "model": "Model 2828", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61430846401574, + 24.520678921865528 + ] + }, + "properties": { + "id": "meter-2829", + "maker": "Maker C", + "model": "Model 2829", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96339050743988, + 26.474165614091678 + ] + }, + "properties": { + "id": "meter-2830", + "maker": "Maker I", + "model": "Model 2830", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.18956040349949, + 26.26495155018661 + ] + }, + "properties": { + "id": "meter-2831", + "maker": "Maker D", + "model": "Model 2831", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.29771806140295, + 21.413000131985974 + ] + }, + "properties": { + "id": "meter-2832", + "maker": "Maker G", + "model": "Model 2832", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00239501979721, + 26.44238261089237 + ] + }, + "properties": { + "id": "meter-2833", + "maker": "Maker B", + "model": "Model 2833", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.58510019768598, + 24.832310901393083 + ] + }, + "properties": { + "id": "meter-2834", + "maker": "Maker G", + "model": "Model 2834", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06593149247768, + 26.429843922916472 + ] + }, + "properties": { + "id": "meter-2835", + "maker": "Maker C", + "model": "Model 2835", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.913966452546696, + 26.298330736216556 + ] + }, + "properties": { + "id": "meter-2836", + "maker": "Maker G", + "model": "Model 2836", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.73308477602093, + 24.350324982224944 + ] + }, + "properties": { + "id": "meter-2837", + "maker": "Maker C", + "model": "Model 2837", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.82700203065651, + 28.472298807492045 + ] + }, + "properties": { + "id": "meter-2838", + "maker": "Maker E", + "model": "Model 2838", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98054807572456, + 17.600822383917077 + ] + }, + "properties": { + "id": "meter-2839", + "maker": "Maker H", + "model": "Model 2839", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.76934417465941, + 18.468782285811574 + ] + }, + "properties": { + "id": "meter-2840", + "maker": "Maker B", + "model": "Model 2840", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.73878071268888, + 26.416840404170205 + ] + }, + "properties": { + "id": "meter-2841", + "maker": "Maker B", + "model": "Model 2841", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.30408581778264, + 30.23386737905614 + ] + }, + "properties": { + "id": "meter-2842", + "maker": "Maker B", + "model": "Model 2842", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.64487483686155, + 27.386359402840572 + ] + }, + "properties": { + "id": "meter-2843", + "maker": "Maker H", + "model": "Model 2843", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04870974165785, + 24.12873888310931 + ] + }, + "properties": { + "id": "meter-2844", + "maker": "Maker F", + "model": "Model 2844", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25484977221356, + 21.4040747573456 + ] + }, + "properties": { + "id": "meter-2845", + "maker": "Maker B", + "model": "Model 2845", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.3354825908814, + 18.23781965975881 + ] + }, + "properties": { + "id": "meter-2846", + "maker": "Maker B", + "model": "Model 2846", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.325256814081, + 28.396712545951686 + ] + }, + "properties": { + "id": "meter-2847", + "maker": "Maker F", + "model": "Model 2847", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.7861758881462, + 28.255976731298123 + ] + }, + "properties": { + "id": "meter-2848", + "maker": "Maker J", + "model": "Model 2848", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.79963501422181, + 18.528934528222614 + ] + }, + "properties": { + "id": "meter-2849", + "maker": "Maker A", + "model": "Model 2849", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15686697726762, + 26.344328715917065 + ] + }, + "properties": { + "id": "meter-2850", + "maker": "Maker E", + "model": "Model 2850", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05129891220171, + 24.19743982045609 + ] + }, + "properties": { + "id": "meter-2851", + "maker": "Maker G", + "model": "Model 2851", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.59598709075674, + 28.390809384718263 + ] + }, + "properties": { + "id": "meter-2852", + "maker": "Maker B", + "model": "Model 2852", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.173214598797045, + 17.523859984190363 + ] + }, + "properties": { + "id": "meter-2853", + "maker": "Maker I", + "model": "Model 2853", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08466381066376, + 26.181318086152913 + ] + }, + "properties": { + "id": "meter-2854", + "maker": "Maker C", + "model": "Model 2854", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.00614331430647, + 30.863390190438025 + ] + }, + "properties": { + "id": "meter-2855", + "maker": "Maker B", + "model": "Model 2855", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.81073176229461, + 24.766960035335842 + ] + }, + "properties": { + "id": "meter-2856", + "maker": "Maker H", + "model": "Model 2856", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.614481069876746, + 19.838032393072112 + ] + }, + "properties": { + "id": "meter-2857", + "maker": "Maker F", + "model": "Model 2857", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.77462696480905, + 26.68885455614127 + ] + }, + "properties": { + "id": "meter-2858", + "maker": "Maker G", + "model": "Model 2858", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.614557565730394, + 28.409206556247863 + ] + }, + "properties": { + "id": "meter-2859", + "maker": "Maker D", + "model": "Model 2859", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.57641939563566, + 24.472118603060796 + ] + }, + "properties": { + "id": "meter-2860", + "maker": "Maker J", + "model": "Model 2860", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.030462633390336, + 30.986563255410964 + ] + }, + "properties": { + "id": "meter-2861", + "maker": "Maker I", + "model": "Model 2861", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20069418589042, + 26.25144341939066 + ] + }, + "properties": { + "id": "meter-2862", + "maker": "Maker C", + "model": "Model 2862", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.9004777590337, + 24.334867531240214 + ] + }, + "properties": { + "id": "meter-2863", + "maker": "Maker C", + "model": "Model 2863", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.35229212409049, + 20.032519418364537 + ] + }, + "properties": { + "id": "meter-2864", + "maker": "Maker H", + "model": "Model 2864", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.718084308886894, + 18.263286069058598 + ] + }, + "properties": { + "id": "meter-2865", + "maker": "Maker J", + "model": "Model 2865", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.795132183322515, + 21.513453943155604 + ] + }, + "properties": { + "id": "meter-2866", + "maker": "Maker H", + "model": "Model 2866", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.43032579762361, + 24.7394393165204 + ] + }, + "properties": { + "id": "meter-2867", + "maker": "Maker F", + "model": "Model 2867", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.88381874489983, + 26.294054912580467 + ] + }, + "properties": { + "id": "meter-2868", + "maker": "Maker E", + "model": "Model 2868", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02296521674421, + 26.512377622581106 + ] + }, + "properties": { + "id": "meter-2869", + "maker": "Maker F", + "model": "Model 2869", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.985876361873295, + 26.238604055035847 + ] + }, + "properties": { + "id": "meter-2870", + "maker": "Maker C", + "model": "Model 2870", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61648153476485, + 24.51793974352676 + ] + }, + "properties": { + "id": "meter-2871", + "maker": "Maker H", + "model": "Model 2871", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.173411538984205, + 17.57558223636524 + ] + }, + "properties": { + "id": "meter-2872", + "maker": "Maker G", + "model": "Model 2872", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.572736087325204, + 20.08772819184474 + ] + }, + "properties": { + "id": "meter-2873", + "maker": "Maker E", + "model": "Model 2873", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.16755619255103, + 26.289468592004308 + ] + }, + "properties": { + "id": "meter-2874", + "maker": "Maker G", + "model": "Model 2874", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10541826610328, + 26.41483529046329 + ] + }, + "properties": { + "id": "meter-2875", + "maker": "Maker F", + "model": "Model 2875", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.75259942742069, + 25.105434968971878 + ] + }, + "properties": { + "id": "meter-2876", + "maker": "Maker D", + "model": "Model 2876", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.94466286959985, + 21.31003870644724 + ] + }, + "properties": { + "id": "meter-2877", + "maker": "Maker G", + "model": "Model 2877", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12285234911499, + 17.495754579363975 + ] + }, + "properties": { + "id": "meter-2878", + "maker": "Maker D", + "model": "Model 2878", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58896903180604, + 25.339428786754603 + ] + }, + "properties": { + "id": "meter-2879", + "maker": "Maker H", + "model": "Model 2879", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.244075055371596, + 20.002542140159335 + ] + }, + "properties": { + "id": "meter-2880", + "maker": "Maker A", + "model": "Model 2880", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.095578177210044, + 24.250031871613157 + ] + }, + "properties": { + "id": "meter-2881", + "maker": "Maker E", + "model": "Model 2881", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.369769089975286, + 21.508292447487836 + ] + }, + "properties": { + "id": "meter-2882", + "maker": "Maker J", + "model": "Model 2882", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.27471137991867, + 24.049295213591 + ] + }, + "properties": { + "id": "meter-2883", + "maker": "Maker C", + "model": "Model 2883", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.06525612232316, + 26.28925752856407 + ] + }, + "properties": { + "id": "meter-2884", + "maker": "Maker J", + "model": "Model 2884", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.952047564327344, + 30.830299839734476 + ] + }, + "properties": { + "id": "meter-2885", + "maker": "Maker A", + "model": "Model 2885", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.70287770927638, + 24.750946935257016 + ] + }, + "properties": { + "id": "meter-2886", + "maker": "Maker E", + "model": "Model 2886", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12358089003574, + 26.437319135735525 + ] + }, + "properties": { + "id": "meter-2887", + "maker": "Maker F", + "model": "Model 2887", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.59401009341689, + 28.38920169810281 + ] + }, + "properties": { + "id": "meter-2888", + "maker": "Maker B", + "model": "Model 2888", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.64859864276393, + 18.375620523353916 + ] + }, + "properties": { + "id": "meter-2889", + "maker": "Maker A", + "model": "Model 2889", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.22417796562993, + 17.407649576614574 + ] + }, + "properties": { + "id": "meter-2890", + "maker": "Maker A", + "model": "Model 2890", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.27789668430669, + 19.932296521393337 + ] + }, + "properties": { + "id": "meter-2891", + "maker": "Maker E", + "model": "Model 2891", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.69908112323037, + 28.576163426636644 + ] + }, + "properties": { + "id": "meter-2892", + "maker": "Maker E", + "model": "Model 2892", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.03780985779285, + 24.082936606749705 + ] + }, + "properties": { + "id": "meter-2893", + "maker": "Maker B", + "model": "Model 2893", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59387404236984, + 25.552878463702722 + ] + }, + "properties": { + "id": "meter-2894", + "maker": "Maker H", + "model": "Model 2894", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.591583320767974, + 28.4070228506246 + ] + }, + "properties": { + "id": "meter-2895", + "maker": "Maker A", + "model": "Model 2895", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.169040997045954, + 26.266228790477616 + ] + }, + "properties": { + "id": "meter-2896", + "maker": "Maker H", + "model": "Model 2896", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.015864116159285, + 18.372227301674194 + ] + }, + "properties": { + "id": "meter-2897", + "maker": "Maker H", + "model": "Model 2897", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.957810459250894, + 30.960830862343812 + ] + }, + "properties": { + "id": "meter-2898", + "maker": "Maker B", + "model": "Model 2898", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.833108647476585, + 21.478849576333936 + ] + }, + "properties": { + "id": "meter-2899", + "maker": "Maker C", + "model": "Model 2899", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.75028505835068, + 20.034852433705403 + ] + }, + "properties": { + "id": "meter-2900", + "maker": "Maker F", + "model": "Model 2900", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.00630301628673, + 21.50509627087542 + ] + }, + "properties": { + "id": "meter-2901", + "maker": "Maker B", + "model": "Model 2901", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.90383552646998, + 24.8165278176355 + ] + }, + "properties": { + "id": "meter-2902", + "maker": "Maker F", + "model": "Model 2902", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.891479918154715, + 17.454832699448236 + ] + }, + "properties": { + "id": "meter-2903", + "maker": "Maker D", + "model": "Model 2903", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.35556095217423, + 28.322484790181868 + ] + }, + "properties": { + "id": "meter-2904", + "maker": "Maker D", + "model": "Model 2904", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.1081194133284, + 24.17893880641812 + ] + }, + "properties": { + "id": "meter-2905", + "maker": "Maker E", + "model": "Model 2905", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.940609269092135, + 26.110661502989114 + ] + }, + "properties": { + "id": "meter-2906", + "maker": "Maker B", + "model": "Model 2906", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92559601170011, + 26.46194155383821 + ] + }, + "properties": { + "id": "meter-2907", + "maker": "Maker B", + "model": "Model 2907", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25729394399188, + 21.480450200119392 + ] + }, + "properties": { + "id": "meter-2908", + "maker": "Maker B", + "model": "Model 2908", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.51120614434479, + 27.609555121073832 + ] + }, + "properties": { + "id": "meter-2909", + "maker": "Maker B", + "model": "Model 2909", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47014688716817, + 20.014648703061074 + ] + }, + "properties": { + "id": "meter-2910", + "maker": "Maker G", + "model": "Model 2910", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.21321601318471, + 17.471154231714767 + ] + }, + "properties": { + "id": "meter-2911", + "maker": "Maker F", + "model": "Model 2911", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.726939249949474, + 27.644472186632584 + ] + }, + "properties": { + "id": "meter-2912", + "maker": "Maker E", + "model": "Model 2912", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.44956069269299, + 24.820640386795077 + ] + }, + "properties": { + "id": "meter-2913", + "maker": "Maker E", + "model": "Model 2913", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.24089466640505, + 29.779039958758496 + ] + }, + "properties": { + "id": "meter-2914", + "maker": "Maker G", + "model": "Model 2914", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97764057343554, + 26.30365823796905 + ] + }, + "properties": { + "id": "meter-2915", + "maker": "Maker J", + "model": "Model 2915", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.16740017480413, + 21.293851965896827 + ] + }, + "properties": { + "id": "meter-2916", + "maker": "Maker I", + "model": "Model 2916", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6702876600712, + 27.710935746230735 + ] + }, + "properties": { + "id": "meter-2917", + "maker": "Maker I", + "model": "Model 2917", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.12723478224275, + 21.58465486220089 + ] + }, + "properties": { + "id": "meter-2918", + "maker": "Maker D", + "model": "Model 2918", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.871637987797, + 26.330928760558525 + ] + }, + "properties": { + "id": "meter-2919", + "maker": "Maker J", + "model": "Model 2919", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06997128919768, + 26.362068341722633 + ] + }, + "properties": { + "id": "meter-2920", + "maker": "Maker A", + "model": "Model 2920", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12338277563153, + 17.45715643876028 + ] + }, + "properties": { + "id": "meter-2921", + "maker": "Maker I", + "model": "Model 2921", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07343955134675, + 26.375662159673762 + ] + }, + "properties": { + "id": "meter-2922", + "maker": "Maker B", + "model": "Model 2922", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.34968888463115, + 20.074512620074735 + ] + }, + "properties": { + "id": "meter-2923", + "maker": "Maker C", + "model": "Model 2923", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08695726594484, + 26.420931552505216 + ] + }, + "properties": { + "id": "meter-2924", + "maker": "Maker C", + "model": "Model 2924", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.37982267355056, + 18.423839890687777 + ] + }, + "properties": { + "id": "meter-2925", + "maker": "Maker J", + "model": "Model 2925", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.906465962435725, + 24.284369034642694 + ] + }, + "properties": { + "id": "meter-2926", + "maker": "Maker E", + "model": "Model 2926", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.83577255104869, + 21.670507834030932 + ] + }, + "properties": { + "id": "meter-2927", + "maker": "Maker D", + "model": "Model 2927", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.83972575530195, + 21.42632215130791 + ] + }, + "properties": { + "id": "meter-2928", + "maker": "Maker J", + "model": "Model 2928", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.6992479335878, + 24.31773989226481 + ] + }, + "properties": { + "id": "meter-2929", + "maker": "Maker A", + "model": "Model 2929", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.35468731412604, + 21.447736275730357 + ] + }, + "properties": { + "id": "meter-2930", + "maker": "Maker H", + "model": "Model 2930", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.764960065460265, + 27.524205867428897 + ] + }, + "properties": { + "id": "meter-2931", + "maker": "Maker D", + "model": "Model 2931", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0819095385002, + 24.128753940844277 + ] + }, + "properties": { + "id": "meter-2932", + "maker": "Maker B", + "model": "Model 2932", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.24086189437546, + 17.55828327372856 + ] + }, + "properties": { + "id": "meter-2933", + "maker": "Maker C", + "model": "Model 2933", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92047051294411, + 26.32858800104315 + ] + }, + "properties": { + "id": "meter-2934", + "maker": "Maker H", + "model": "Model 2934", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.21640573365405, + 17.40585833366633 + ] + }, + "properties": { + "id": "meter-2935", + "maker": "Maker E", + "model": "Model 2935", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.53882057175137, + 24.814909105463126 + ] + }, + "properties": { + "id": "meter-2936", + "maker": "Maker D", + "model": "Model 2936", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.220869933160365, + 29.955912272390208 + ] + }, + "properties": { + "id": "meter-2937", + "maker": "Maker A", + "model": "Model 2937", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.625693406972346, + 28.40116542602151 + ] + }, + "properties": { + "id": "meter-2938", + "maker": "Maker D", + "model": "Model 2938", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.978281212217574, + 26.305249917602687 + ] + }, + "properties": { + "id": "meter-2939", + "maker": "Maker I", + "model": "Model 2939", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.58530295872765, + 28.36277033412348 + ] + }, + "properties": { + "id": "meter-2940", + "maker": "Maker E", + "model": "Model 2940", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.80683262232636, + 21.146295705169962 + ] + }, + "properties": { + "id": "meter-2941", + "maker": "Maker F", + "model": "Model 2941", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.9165107228941, + 24.8794799300782 + ] + }, + "properties": { + "id": "meter-2942", + "maker": "Maker G", + "model": "Model 2942", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.46351175057957, + 28.357356783843702 + ] + }, + "properties": { + "id": "meter-2943", + "maker": "Maker I", + "model": "Model 2943", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11980532163055, + 26.3431307541176 + ] + }, + "properties": { + "id": "meter-2944", + "maker": "Maker E", + "model": "Model 2944", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09337133392607, + 17.64666147823767 + ] + }, + "properties": { + "id": "meter-2945", + "maker": "Maker J", + "model": "Model 2945", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.16892076040105, + 29.93333658632988 + ] + }, + "properties": { + "id": "meter-2946", + "maker": "Maker G", + "model": "Model 2946", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99708728727778, + 26.317188969883276 + ] + }, + "properties": { + "id": "meter-2947", + "maker": "Maker J", + "model": "Model 2947", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71518744815927, + 18.315647151759887 + ] + }, + "properties": { + "id": "meter-2948", + "maker": "Maker G", + "model": "Model 2948", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.710433557575215, + 21.586271513634443 + ] + }, + "properties": { + "id": "meter-2949", + "maker": "Maker J", + "model": "Model 2949", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.293809230779715, + 17.715348399319 + ] + }, + "properties": { + "id": "meter-2950", + "maker": "Maker F", + "model": "Model 2950", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.350171349736435, + 18.45773991986553 + ] + }, + "properties": { + "id": "meter-2951", + "maker": "Maker B", + "model": "Model 2951", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.09599730111862, + 21.43981330899813 + ] + }, + "properties": { + "id": "meter-2952", + "maker": "Maker D", + "model": "Model 2952", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.33313803874024, + 21.406373656774786 + ] + }, + "properties": { + "id": "meter-2953", + "maker": "Maker E", + "model": "Model 2953", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.95021568853761, + 26.613570288979115 + ] + }, + "properties": { + "id": "meter-2954", + "maker": "Maker E", + "model": "Model 2954", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.925460761903146, + 26.45994684177697 + ] + }, + "properties": { + "id": "meter-2955", + "maker": "Maker E", + "model": "Model 2955", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.149651082284855, + 26.265676792172513 + ] + }, + "properties": { + "id": "meter-2956", + "maker": "Maker D", + "model": "Model 2956", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.45549739035605, + 21.644033577576174 + ] + }, + "properties": { + "id": "meter-2957", + "maker": "Maker C", + "model": "Model 2957", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.442933628434595, + 18.207629096122506 + ] + }, + "properties": { + "id": "meter-2958", + "maker": "Maker A", + "model": "Model 2958", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86627857596048, + 21.095764472342516 + ] + }, + "properties": { + "id": "meter-2959", + "maker": "Maker G", + "model": "Model 2959", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.615016252338215, + 27.599200273656546 + ] + }, + "properties": { + "id": "meter-2960", + "maker": "Maker J", + "model": "Model 2960", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11655511868281, + 26.679315558284255 + ] + }, + "properties": { + "id": "meter-2961", + "maker": "Maker C", + "model": "Model 2961", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.14309284162748, + 24.27429425913908 + ] + }, + "properties": { + "id": "meter-2962", + "maker": "Maker A", + "model": "Model 2962", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.600159744214, + 24.56264617821478 + ] + }, + "properties": { + "id": "meter-2963", + "maker": "Maker I", + "model": "Model 2963", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.39557288523961, + 21.58348628405666 + ] + }, + "properties": { + "id": "meter-2964", + "maker": "Maker J", + "model": "Model 2964", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.948685624077484, + 26.252128792692503 + ] + }, + "properties": { + "id": "meter-2965", + "maker": "Maker I", + "model": "Model 2965", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.16937445544133, + 24.19327276636418 + ] + }, + "properties": { + "id": "meter-2966", + "maker": "Maker D", + "model": "Model 2966", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.16605061894741, + 30.015896316322756 + ] + }, + "properties": { + "id": "meter-2967", + "maker": "Maker D", + "model": "Model 2967", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.62542955475659, + 24.793926582815303 + ] + }, + "properties": { + "id": "meter-2968", + "maker": "Maker E", + "model": "Model 2968", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.469453380903076, + 28.243409357144767 + ] + }, + "properties": { + "id": "meter-2969", + "maker": "Maker C", + "model": "Model 2969", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53790854055779, + 18.31113123451195 + ] + }, + "properties": { + "id": "meter-2970", + "maker": "Maker A", + "model": "Model 2970", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.07569352044445, + 31.04658571438311 + ] + }, + "properties": { + "id": "meter-2971", + "maker": "Maker I", + "model": "Model 2971", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46640193866638, + 27.479538307408923 + ] + }, + "properties": { + "id": "meter-2972", + "maker": "Maker H", + "model": "Model 2972", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45663897126382, + 19.962921550122147 + ] + }, + "properties": { + "id": "meter-2973", + "maker": "Maker G", + "model": "Model 2973", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92059192687796, + 26.730523987445423 + ] + }, + "properties": { + "id": "meter-2974", + "maker": "Maker D", + "model": "Model 2974", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.759707049070244, + 18.324220842171297 + ] + }, + "properties": { + "id": "meter-2975", + "maker": "Maker F", + "model": "Model 2975", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.50685068645793, + 25.371955250770863 + ] + }, + "properties": { + "id": "meter-2976", + "maker": "Maker D", + "model": "Model 2976", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23795254370375, + 29.960453639759727 + ] + }, + "properties": { + "id": "meter-2977", + "maker": "Maker A", + "model": "Model 2977", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.82225252294536, + 26.381074745823728 + ] + }, + "properties": { + "id": "meter-2978", + "maker": "Maker B", + "model": "Model 2978", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.92593756620723, + 24.712505492439913 + ] + }, + "properties": { + "id": "meter-2979", + "maker": "Maker G", + "model": "Model 2979", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.732172014884384, + 24.722928083690373 + ] + }, + "properties": { + "id": "meter-2980", + "maker": "Maker E", + "model": "Model 2980", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05239098780388, + 26.376684905855193 + ] + }, + "properties": { + "id": "meter-2981", + "maker": "Maker E", + "model": "Model 2981", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02312977434069, + 26.748754813442535 + ] + }, + "properties": { + "id": "meter-2982", + "maker": "Maker E", + "model": "Model 2982", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.770939386183045, + 28.465860648160174 + ] + }, + "properties": { + "id": "meter-2983", + "maker": "Maker B", + "model": "Model 2983", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.24602853791643, + 17.556381033756104 + ] + }, + "properties": { + "id": "meter-2984", + "maker": "Maker C", + "model": "Model 2984", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.80833437551506, + 21.36773946849941 + ] + }, + "properties": { + "id": "meter-2985", + "maker": "Maker J", + "model": "Model 2985", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01609842582364, + 26.459973466412286 + ] + }, + "properties": { + "id": "meter-2986", + "maker": "Maker D", + "model": "Model 2986", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.86813715948451, + 28.419843221133885 + ] + }, + "properties": { + "id": "meter-2987", + "maker": "Maker F", + "model": "Model 2987", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.186930488762385, + 26.305090297213656 + ] + }, + "properties": { + "id": "meter-2988", + "maker": "Maker I", + "model": "Model 2988", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.590175571876905, + 25.613452413162328 + ] + }, + "properties": { + "id": "meter-2989", + "maker": "Maker I", + "model": "Model 2989", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.089681429290366, + 26.420480310746846 + ] + }, + "properties": { + "id": "meter-2990", + "maker": "Maker B", + "model": "Model 2990", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.15980006424925, + 24.083812237193484 + ] + }, + "properties": { + "id": "meter-2991", + "maker": "Maker I", + "model": "Model 2991", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.80166335593431, + 28.25759171024385 + ] + }, + "properties": { + "id": "meter-2992", + "maker": "Maker J", + "model": "Model 2992", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.46154160077972, + 21.39141907804196 + ] + }, + "properties": { + "id": "meter-2993", + "maker": "Maker A", + "model": "Model 2993", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23939804596814, + 29.953131600493897 + ] + }, + "properties": { + "id": "meter-2994", + "maker": "Maker D", + "model": "Model 2994", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00535483724654, + 26.504914076149262 + ] + }, + "properties": { + "id": "meter-2995", + "maker": "Maker J", + "model": "Model 2995", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.7480187187924, + 27.501055142571868 + ] + }, + "properties": { + "id": "meter-2996", + "maker": "Maker G", + "model": "Model 2996", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09401809374409, + 24.14259780140556 + ] + }, + "properties": { + "id": "meter-2997", + "maker": "Maker J", + "model": "Model 2997", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92826056090076, + 26.585029167892973 + ] + }, + "properties": { + "id": "meter-2998", + "maker": "Maker B", + "model": "Model 2998", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.33858880306203, + 18.257926096207687 + ] + }, + "properties": { + "id": "meter-2999", + "maker": "Maker H", + "model": "Model 2999", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.007766512022215, + 26.46594871809265 + ] + }, + "properties": { + "id": "meter-3000", + "maker": "Maker C", + "model": "Model 3000", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.226667679900885, + 21.483388606665034 + ] + }, + "properties": { + "id": "meter-3001", + "maker": "Maker F", + "model": "Model 3001", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.135328645249864, + 17.44754877112589 + ] + }, + "properties": { + "id": "meter-3002", + "maker": "Maker E", + "model": "Model 3002", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.61332778631449, + 18.470615453869065 + ] + }, + "properties": { + "id": "meter-3003", + "maker": "Maker A", + "model": "Model 3003", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.93794476488967, + 26.484023125311953 + ] + }, + "properties": { + "id": "meter-3004", + "maker": "Maker E", + "model": "Model 3004", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.38792366796031, + 24.62621995140085 + ] + }, + "properties": { + "id": "meter-3005", + "maker": "Maker H", + "model": "Model 3005", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.755435717745826, + 24.71726236323801 + ] + }, + "properties": { + "id": "meter-3006", + "maker": "Maker J", + "model": "Model 3006", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.66336513879828, + 21.57585218203523 + ] + }, + "properties": { + "id": "meter-3007", + "maker": "Maker C", + "model": "Model 3007", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.33073397756798, + 21.389912371620504 + ] + }, + "properties": { + "id": "meter-3008", + "maker": "Maker G", + "model": "Model 3008", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.5709586045564, + 28.407853139523898 + ] + }, + "properties": { + "id": "meter-3009", + "maker": "Maker D", + "model": "Model 3009", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.3224214799973, + 25.439370346891167 + ] + }, + "properties": { + "id": "meter-3010", + "maker": "Maker B", + "model": "Model 3010", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03828942215775, + 26.743924214262726 + ] + }, + "properties": { + "id": "meter-3011", + "maker": "Maker E", + "model": "Model 3011", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.84725769361024, + 27.57150535153434 + ] + }, + "properties": { + "id": "meter-3012", + "maker": "Maker F", + "model": "Model 3012", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85638204992381, + 21.420025563838404 + ] + }, + "properties": { + "id": "meter-3013", + "maker": "Maker J", + "model": "Model 3013", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.40299519743524, + 29.9838726998029 + ] + }, + "properties": { + "id": "meter-3014", + "maker": "Maker I", + "model": "Model 3014", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0216001137278, + 24.328531428603394 + ] + }, + "properties": { + "id": "meter-3015", + "maker": "Maker A", + "model": "Model 3015", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.20204812234489, + 19.98535259907796 + ] + }, + "properties": { + "id": "meter-3016", + "maker": "Maker F", + "model": "Model 3016", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.61688871192309, + 25.339513393234427 + ] + }, + "properties": { + "id": "meter-3017", + "maker": "Maker E", + "model": "Model 3017", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.574932911404396, + 24.59977603461531 + ] + }, + "properties": { + "id": "meter-3018", + "maker": "Maker I", + "model": "Model 3018", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.968242194598176, + 26.28489052846885 + ] + }, + "properties": { + "id": "meter-3019", + "maker": "Maker A", + "model": "Model 3019", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.122964001934015, + 24.049989699013935 + ] + }, + "properties": { + "id": "meter-3020", + "maker": "Maker J", + "model": "Model 3020", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03080120195523, + 30.97800506102457 + ] + }, + "properties": { + "id": "meter-3021", + "maker": "Maker H", + "model": "Model 3021", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.79152076744988, + 28.299923104509464 + ] + }, + "properties": { + "id": "meter-3022", + "maker": "Maker F", + "model": "Model 3022", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.941336089558924, + 26.263962726434603 + ] + }, + "properties": { + "id": "meter-3023", + "maker": "Maker A", + "model": "Model 3023", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09886637857406, + 24.108265555958653 + ] + }, + "properties": { + "id": "meter-3024", + "maker": "Maker H", + "model": "Model 3024", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.34504066204398, + 19.97943006644127 + ] + }, + "properties": { + "id": "meter-3025", + "maker": "Maker D", + "model": "Model 3025", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.995418127222166, + 26.540554508002664 + ] + }, + "properties": { + "id": "meter-3026", + "maker": "Maker H", + "model": "Model 3026", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.902073672641365, + 26.527654738230822 + ] + }, + "properties": { + "id": "meter-3027", + "maker": "Maker D", + "model": "Model 3027", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.7043859317995, + 25.473688248638478 + ] + }, + "properties": { + "id": "meter-3028", + "maker": "Maker B", + "model": "Model 3028", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.656362564000865, + 24.928609174719814 + ] + }, + "properties": { + "id": "meter-3029", + "maker": "Maker H", + "model": "Model 3029", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.151055930034524, + 21.288758977881105 + ] + }, + "properties": { + "id": "meter-3030", + "maker": "Maker F", + "model": "Model 3030", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.348648637925734, + 28.56970231845427 + ] + }, + "properties": { + "id": "meter-3031", + "maker": "Maker A", + "model": "Model 3031", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.18275972902522, + 21.54423603157173 + ] + }, + "properties": { + "id": "meter-3032", + "maker": "Maker H", + "model": "Model 3032", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17842303079146, + 26.372018735620173 + ] + }, + "properties": { + "id": "meter-3033", + "maker": "Maker I", + "model": "Model 3033", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.56079035562407, + 19.936536521072313 + ] + }, + "properties": { + "id": "meter-3034", + "maker": "Maker D", + "model": "Model 3034", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.50432874884711, + 24.6225691329443 + ] + }, + "properties": { + "id": "meter-3035", + "maker": "Maker A", + "model": "Model 3035", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.83604796992566, + 25.344009591677256 + ] + }, + "properties": { + "id": "meter-3036", + "maker": "Maker I", + "model": "Model 3036", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.32750909814134, + 28.315322799293714 + ] + }, + "properties": { + "id": "meter-3037", + "maker": "Maker C", + "model": "Model 3037", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.92372024319368, + 21.525659048647654 + ] + }, + "properties": { + "id": "meter-3038", + "maker": "Maker G", + "model": "Model 3038", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.176523798990836, + 29.94463602738864 + ] + }, + "properties": { + "id": "meter-3039", + "maker": "Maker G", + "model": "Model 3039", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.62909802966366, + 24.461301999100062 + ] + }, + "properties": { + "id": "meter-3040", + "maker": "Maker H", + "model": "Model 3040", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96909224242559, + 26.32920871168929 + ] + }, + "properties": { + "id": "meter-3041", + "maker": "Maker F", + "model": "Model 3041", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.45640972712078, + 24.6936871468751 + ] + }, + "properties": { + "id": "meter-3042", + "maker": "Maker F", + "model": "Model 3042", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.66550500991892, + 25.305469545218457 + ] + }, + "properties": { + "id": "meter-3043", + "maker": "Maker C", + "model": "Model 3043", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65496891380056, + 27.442704148464813 + ] + }, + "properties": { + "id": "meter-3044", + "maker": "Maker J", + "model": "Model 3044", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26175073577818, + 21.628618929791365 + ] + }, + "properties": { + "id": "meter-3045", + "maker": "Maker A", + "model": "Model 3045", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.86725177730798, + 30.92416098354571 + ] + }, + "properties": { + "id": "meter-3046", + "maker": "Maker J", + "model": "Model 3046", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.919584162229405, + 26.276582969420016 + ] + }, + "properties": { + "id": "meter-3047", + "maker": "Maker I", + "model": "Model 3047", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.764507893660614, + 18.091035565763505 + ] + }, + "properties": { + "id": "meter-3048", + "maker": "Maker J", + "model": "Model 3048", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.64349263218909, + 24.421049289431163 + ] + }, + "properties": { + "id": "meter-3049", + "maker": "Maker C", + "model": "Model 3049", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.88977528443528, + 26.51919558702053 + ] + }, + "properties": { + "id": "meter-3050", + "maker": "Maker H", + "model": "Model 3050", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.94443285877959, + 29.89382172248344 + ] + }, + "properties": { + "id": "meter-3051", + "maker": "Maker G", + "model": "Model 3051", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4300489697346, + 27.559327953338027 + ] + }, + "properties": { + "id": "meter-3052", + "maker": "Maker J", + "model": "Model 3052", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.51593788976962, + 20.043282417695938 + ] + }, + "properties": { + "id": "meter-3053", + "maker": "Maker F", + "model": "Model 3053", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.51276481122722, + 18.277688201791374 + ] + }, + "properties": { + "id": "meter-3054", + "maker": "Maker G", + "model": "Model 3054", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12658611137253, + 17.491018867577544 + ] + }, + "properties": { + "id": "meter-3055", + "maker": "Maker J", + "model": "Model 3055", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.24364206481586, + 30.853724187166712 + ] + }, + "properties": { + "id": "meter-3056", + "maker": "Maker I", + "model": "Model 3056", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.062922877862405, + 24.082079641681972 + ] + }, + "properties": { + "id": "meter-3057", + "maker": "Maker E", + "model": "Model 3057", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.591478420686556, + 21.297333160883742 + ] + }, + "properties": { + "id": "meter-3058", + "maker": "Maker D", + "model": "Model 3058", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.728270929313545, + 18.155784751617727 + ] + }, + "properties": { + "id": "meter-3059", + "maker": "Maker H", + "model": "Model 3059", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19942944725681, + 26.24109458782217 + ] + }, + "properties": { + "id": "meter-3060", + "maker": "Maker D", + "model": "Model 3060", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.284641324529794, + 20.159582144395827 + ] + }, + "properties": { + "id": "meter-3061", + "maker": "Maker A", + "model": "Model 3061", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98589554045739, + 26.527139558881586 + ] + }, + "properties": { + "id": "meter-3062", + "maker": "Maker D", + "model": "Model 3062", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.611584935920945, + 28.428355798579773 + ] + }, + "properties": { + "id": "meter-3063", + "maker": "Maker C", + "model": "Model 3063", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.16638394056047, + 26.20042945660134 + ] + }, + "properties": { + "id": "meter-3064", + "maker": "Maker E", + "model": "Model 3064", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.48648402573128, + 29.933830380309626 + ] + }, + "properties": { + "id": "meter-3065", + "maker": "Maker I", + "model": "Model 3065", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.306629244612346, + 21.496450319196985 + ] + }, + "properties": { + "id": "meter-3066", + "maker": "Maker A", + "model": "Model 3066", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.3115391435213, + 21.769684555214315 + ] + }, + "properties": { + "id": "meter-3067", + "maker": "Maker B", + "model": "Model 3067", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.2928256104329, + 18.143620788205805 + ] + }, + "properties": { + "id": "meter-3068", + "maker": "Maker H", + "model": "Model 3068", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.102437709194376, + 26.33495530476597 + ] + }, + "properties": { + "id": "meter-3069", + "maker": "Maker J", + "model": "Model 3069", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24399650465739, + 21.608750918344487 + ] + }, + "properties": { + "id": "meter-3070", + "maker": "Maker A", + "model": "Model 3070", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11906948106801, + 17.48768413261208 + ] + }, + "properties": { + "id": "meter-3071", + "maker": "Maker F", + "model": "Model 3071", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.60783622093428, + 18.05795934645956 + ] + }, + "properties": { + "id": "meter-3072", + "maker": "Maker J", + "model": "Model 3072", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.56825973381365, + 25.36004085665532 + ] + }, + "properties": { + "id": "meter-3073", + "maker": "Maker H", + "model": "Model 3073", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.3960140034038, + 20.20970550783019 + ] + }, + "properties": { + "id": "meter-3074", + "maker": "Maker E", + "model": "Model 3074", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.86579835254825, + 17.55668552547317 + ] + }, + "properties": { + "id": "meter-3075", + "maker": "Maker E", + "model": "Model 3075", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.925022412187786, + 26.305959177977137 + ] + }, + "properties": { + "id": "meter-3076", + "maker": "Maker H", + "model": "Model 3076", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.82768910256803, + 24.588056950914563 + ] + }, + "properties": { + "id": "meter-3077", + "maker": "Maker C", + "model": "Model 3077", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.383629687460676, + 19.991736508166305 + ] + }, + "properties": { + "id": "meter-3078", + "maker": "Maker E", + "model": "Model 3078", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.31792671249048, + 29.786311951575975 + ] + }, + "properties": { + "id": "meter-3079", + "maker": "Maker C", + "model": "Model 3079", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97975228363975, + 26.510834245116 + ] + }, + "properties": { + "id": "meter-3080", + "maker": "Maker G", + "model": "Model 3080", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.25202421152064, + 24.08893279165297 + ] + }, + "properties": { + "id": "meter-3081", + "maker": "Maker B", + "model": "Model 3081", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92580570061177, + 26.391531036031004 + ] + }, + "properties": { + "id": "meter-3082", + "maker": "Maker F", + "model": "Model 3082", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.2410660308567, + 29.756251502800144 + ] + }, + "properties": { + "id": "meter-3083", + "maker": "Maker A", + "model": "Model 3083", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03632601700156, + 26.398557214403404 + ] + }, + "properties": { + "id": "meter-3084", + "maker": "Maker J", + "model": "Model 3084", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.79363497088456, + 18.360482201040355 + ] + }, + "properties": { + "id": "meter-3085", + "maker": "Maker I", + "model": "Model 3085", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.72624976705725, + 27.5505691730205 + ] + }, + "properties": { + "id": "meter-3086", + "maker": "Maker I", + "model": "Model 3086", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.99905045330673, + 30.928729876070996 + ] + }, + "properties": { + "id": "meter-3087", + "maker": "Maker J", + "model": "Model 3087", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.615279531689346, + 21.478888548837485 + ] + }, + "properties": { + "id": "meter-3088", + "maker": "Maker I", + "model": "Model 3088", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.434938353040295, + 18.235633199558766 + ] + }, + "properties": { + "id": "meter-3089", + "maker": "Maker C", + "model": "Model 3089", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.75859210595211, + 25.417321497160817 + ] + }, + "properties": { + "id": "meter-3090", + "maker": "Maker F", + "model": "Model 3090", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.67945041737539, + 25.108769687293478 + ] + }, + "properties": { + "id": "meter-3091", + "maker": "Maker C", + "model": "Model 3091", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.488909208465834, + 20.066215197027223 + ] + }, + "properties": { + "id": "meter-3092", + "maker": "Maker D", + "model": "Model 3092", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.083500817161095, + 17.527865145965535 + ] + }, + "properties": { + "id": "meter-3093", + "maker": "Maker H", + "model": "Model 3093", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.64156447324498, + 27.62317911656771 + ] + }, + "properties": { + "id": "meter-3094", + "maker": "Maker A", + "model": "Model 3094", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.690287288070394, + 24.72051201525257 + ] + }, + "properties": { + "id": "meter-3095", + "maker": "Maker G", + "model": "Model 3095", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.15605256685265, + 21.267279093983703 + ] + }, + "properties": { + "id": "meter-3096", + "maker": "Maker C", + "model": "Model 3096", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.27406847861409, + 21.70217448414052 + ] + }, + "properties": { + "id": "meter-3097", + "maker": "Maker D", + "model": "Model 3097", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03023032928013, + 31.078269068704525 + ] + }, + "properties": { + "id": "meter-3098", + "maker": "Maker I", + "model": "Model 3098", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.64744368539442, + 18.132925822146067 + ] + }, + "properties": { + "id": "meter-3099", + "maker": "Maker H", + "model": "Model 3099", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.71290273691006, + 26.319917011330677 + ] + }, + "properties": { + "id": "meter-3100", + "maker": "Maker B", + "model": "Model 3100", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.0189585796849, + 30.991679362897692 + ] + }, + "properties": { + "id": "meter-3101", + "maker": "Maker G", + "model": "Model 3101", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.09283632481012, + 30.837480098382635 + ] + }, + "properties": { + "id": "meter-3102", + "maker": "Maker I", + "model": "Model 3102", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.069453077438766, + 26.296609452093882 + ] + }, + "properties": { + "id": "meter-3103", + "maker": "Maker C", + "model": "Model 3103", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.71675935744873, + 26.272823630036694 + ] + }, + "properties": { + "id": "meter-3104", + "maker": "Maker G", + "model": "Model 3104", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.68987899480547, + 24.39236105014057 + ] + }, + "properties": { + "id": "meter-3105", + "maker": "Maker H", + "model": "Model 3105", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.657791856766714, + 28.591404514335544 + ] + }, + "properties": { + "id": "meter-3106", + "maker": "Maker H", + "model": "Model 3106", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.16346215501232, + 26.314993938067378 + ] + }, + "properties": { + "id": "meter-3107", + "maker": "Maker D", + "model": "Model 3107", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.60625473758108, + 28.162126421371333 + ] + }, + "properties": { + "id": "meter-3108", + "maker": "Maker G", + "model": "Model 3108", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2825865787185, + 21.51157174959149 + ] + }, + "properties": { + "id": "meter-3109", + "maker": "Maker D", + "model": "Model 3109", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.88918679229498, + 18.249242538824625 + ] + }, + "properties": { + "id": "meter-3110", + "maker": "Maker H", + "model": "Model 3110", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.62920413187304, + 18.17926524899662 + ] + }, + "properties": { + "id": "meter-3111", + "maker": "Maker C", + "model": "Model 3111", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.209555980836, + 26.3207340559077 + ] + }, + "properties": { + "id": "meter-3112", + "maker": "Maker A", + "model": "Model 3112", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.43576490656496, + 18.313416973555388 + ] + }, + "properties": { + "id": "meter-3113", + "maker": "Maker B", + "model": "Model 3113", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.466432892309896, + 20.21826942060504 + ] + }, + "properties": { + "id": "meter-3114", + "maker": "Maker D", + "model": "Model 3114", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.2508382971371, + 30.037495273928112 + ] + }, + "properties": { + "id": "meter-3115", + "maker": "Maker E", + "model": "Model 3115", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.64073550516792, + 21.588560419963965 + ] + }, + "properties": { + "id": "meter-3116", + "maker": "Maker H", + "model": "Model 3116", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.531620086951484, + 25.290406060720485 + ] + }, + "properties": { + "id": "meter-3117", + "maker": "Maker F", + "model": "Model 3117", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17290263866153, + 26.40548798440556 + ] + }, + "properties": { + "id": "meter-3118", + "maker": "Maker G", + "model": "Model 3118", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.98329991562199, + 18.245457833413578 + ] + }, + "properties": { + "id": "meter-3119", + "maker": "Maker B", + "model": "Model 3119", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.08100892164062, + 30.8437576290741 + ] + }, + "properties": { + "id": "meter-3120", + "maker": "Maker J", + "model": "Model 3120", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.092137870738426, + 26.365832520465368 + ] + }, + "properties": { + "id": "meter-3121", + "maker": "Maker G", + "model": "Model 3121", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.72746428435528, + 25.19075239590339 + ] + }, + "properties": { + "id": "meter-3122", + "maker": "Maker I", + "model": "Model 3122", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.003535710976855, + 26.560446363824983 + ] + }, + "properties": { + "id": "meter-3123", + "maker": "Maker I", + "model": "Model 3123", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84665138055575, + 21.55046821826281 + ] + }, + "properties": { + "id": "meter-3124", + "maker": "Maker F", + "model": "Model 3124", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.367767355348164, + 17.584328256143557 + ] + }, + "properties": { + "id": "meter-3125", + "maker": "Maker E", + "model": "Model 3125", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21227714383368, + 26.285155636538075 + ] + }, + "properties": { + "id": "meter-3126", + "maker": "Maker B", + "model": "Model 3126", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.8035991695578, + 21.350859926256657 + ] + }, + "properties": { + "id": "meter-3127", + "maker": "Maker G", + "model": "Model 3127", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.464238571932256, + 27.314901300533577 + ] + }, + "properties": { + "id": "meter-3128", + "maker": "Maker F", + "model": "Model 3128", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.50696701060978, + 24.76323368014023 + ] + }, + "properties": { + "id": "meter-3129", + "maker": "Maker G", + "model": "Model 3129", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.3353385335256, + 19.95646614804406 + ] + }, + "properties": { + "id": "meter-3130", + "maker": "Maker B", + "model": "Model 3130", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.85157402289191, + 27.605328630402056 + ] + }, + "properties": { + "id": "meter-3131", + "maker": "Maker I", + "model": "Model 3131", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.48886054417892, + 25.300290729612687 + ] + }, + "properties": { + "id": "meter-3132", + "maker": "Maker F", + "model": "Model 3132", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.581339107980774, + 18.187074440053543 + ] + }, + "properties": { + "id": "meter-3133", + "maker": "Maker C", + "model": "Model 3133", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.61503144273619, + 18.164902770975342 + ] + }, + "properties": { + "id": "meter-3134", + "maker": "Maker J", + "model": "Model 3134", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.74836180843055, + 26.241817641572936 + ] + }, + "properties": { + "id": "meter-3135", + "maker": "Maker B", + "model": "Model 3135", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00699500017958, + 26.502927107436033 + ] + }, + "properties": { + "id": "meter-3136", + "maker": "Maker E", + "model": "Model 3136", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.061562895576685, + 17.585883283945716 + ] + }, + "properties": { + "id": "meter-3137", + "maker": "Maker A", + "model": "Model 3137", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.821727542930844, + 27.649546198359296 + ] + }, + "properties": { + "id": "meter-3138", + "maker": "Maker J", + "model": "Model 3138", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03588104578474, + 26.236167001031724 + ] + }, + "properties": { + "id": "meter-3139", + "maker": "Maker D", + "model": "Model 3139", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.20080757872157, + 21.606741624737676 + ] + }, + "properties": { + "id": "meter-3140", + "maker": "Maker F", + "model": "Model 3140", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73380997685059, + 18.432344954518335 + ] + }, + "properties": { + "id": "meter-3141", + "maker": "Maker B", + "model": "Model 3141", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04427740344798, + 24.07294673324285 + ] + }, + "properties": { + "id": "meter-3142", + "maker": "Maker B", + "model": "Model 3142", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.93660196086795, + 17.466390444081213 + ] + }, + "properties": { + "id": "meter-3143", + "maker": "Maker E", + "model": "Model 3143", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.09167179612338, + 30.955234729516505 + ] + }, + "properties": { + "id": "meter-3144", + "maker": "Maker G", + "model": "Model 3144", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.52526991214173, + 24.40193945257757 + ] + }, + "properties": { + "id": "meter-3145", + "maker": "Maker F", + "model": "Model 3145", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.93692416588915, + 30.94110534509156 + ] + }, + "properties": { + "id": "meter-3146", + "maker": "Maker I", + "model": "Model 3146", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21340387523325, + 26.20172733393322 + ] + }, + "properties": { + "id": "meter-3147", + "maker": "Maker F", + "model": "Model 3147", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.556116396119414, + 28.688714753946748 + ] + }, + "properties": { + "id": "meter-3148", + "maker": "Maker F", + "model": "Model 3148", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57629474236984, + 25.31707681323361 + ] + }, + "properties": { + "id": "meter-3149", + "maker": "Maker F", + "model": "Model 3149", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.598804050585, + 27.46957234776029 + ] + }, + "properties": { + "id": "meter-3150", + "maker": "Maker A", + "model": "Model 3150", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.617313641783824, + 27.33974247610611 + ] + }, + "properties": { + "id": "meter-3151", + "maker": "Maker B", + "model": "Model 3151", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.26322536878242, + 17.698002622935014 + ] + }, + "properties": { + "id": "meter-3152", + "maker": "Maker J", + "model": "Model 3152", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98754161709272, + 26.47354899646195 + ] + }, + "properties": { + "id": "meter-3153", + "maker": "Maker G", + "model": "Model 3153", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09258170120803, + 24.24559830413144 + ] + }, + "properties": { + "id": "meter-3154", + "maker": "Maker I", + "model": "Model 3154", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17414634466371, + 26.259353729570453 + ] + }, + "properties": { + "id": "meter-3155", + "maker": "Maker D", + "model": "Model 3155", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.044856148856205, + 17.770338830031225 + ] + }, + "properties": { + "id": "meter-3156", + "maker": "Maker H", + "model": "Model 3156", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4809039636526, + 19.900075847858933 + ] + }, + "properties": { + "id": "meter-3157", + "maker": "Maker C", + "model": "Model 3157", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72842083411201, + 18.408288844747958 + ] + }, + "properties": { + "id": "meter-3158", + "maker": "Maker F", + "model": "Model 3158", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.636484589925516, + 24.639284630442344 + ] + }, + "properties": { + "id": "meter-3159", + "maker": "Maker C", + "model": "Model 3159", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.50211328431145, + 27.445548081785546 + ] + }, + "properties": { + "id": "meter-3160", + "maker": "Maker J", + "model": "Model 3160", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.77421193833059, + 24.787864787612087 + ] + }, + "properties": { + "id": "meter-3161", + "maker": "Maker E", + "model": "Model 3161", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87848785908768, + 26.752409304967376 + ] + }, + "properties": { + "id": "meter-3162", + "maker": "Maker E", + "model": "Model 3162", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.53225361957857, + 24.421470207381436 + ] + }, + "properties": { + "id": "meter-3163", + "maker": "Maker B", + "model": "Model 3163", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.3834352142842, + 29.919987661495135 + ] + }, + "properties": { + "id": "meter-3164", + "maker": "Maker I", + "model": "Model 3164", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.39834587922621, + 18.22831676301281 + ] + }, + "properties": { + "id": "meter-3165", + "maker": "Maker E", + "model": "Model 3165", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.19396725538516, + 17.493792427891858 + ] + }, + "properties": { + "id": "meter-3166", + "maker": "Maker I", + "model": "Model 3166", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.913421696930705, + 18.154309825781056 + ] + }, + "properties": { + "id": "meter-3167", + "maker": "Maker I", + "model": "Model 3167", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.97303062008089, + 30.804565337643307 + ] + }, + "properties": { + "id": "meter-3168", + "maker": "Maker D", + "model": "Model 3168", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.85438451466238, + 26.759172041139685 + ] + }, + "properties": { + "id": "meter-3169", + "maker": "Maker C", + "model": "Model 3169", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.85423197726975, + 26.339810043049344 + ] + }, + "properties": { + "id": "meter-3170", + "maker": "Maker J", + "model": "Model 3170", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.78328263657781, + 28.46583120078828 + ] + }, + "properties": { + "id": "meter-3171", + "maker": "Maker E", + "model": "Model 3171", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00248463026277, + 26.34597873225178 + ] + }, + "properties": { + "id": "meter-3172", + "maker": "Maker D", + "model": "Model 3172", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.57047356573675, + 28.377424181050564 + ] + }, + "properties": { + "id": "meter-3173", + "maker": "Maker H", + "model": "Model 3173", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.17195807208769, + 20.002238374070217 + ] + }, + "properties": { + "id": "meter-3174", + "maker": "Maker D", + "model": "Model 3174", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.881214923753426, + 21.561984048255567 + ] + }, + "properties": { + "id": "meter-3175", + "maker": "Maker G", + "model": "Model 3175", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6476388834278, + 20.07469809522423 + ] + }, + "properties": { + "id": "meter-3176", + "maker": "Maker F", + "model": "Model 3176", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.608178404996266, + 27.481425188230425 + ] + }, + "properties": { + "id": "meter-3177", + "maker": "Maker D", + "model": "Model 3177", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.427217133179504, + 25.35289311531914 + ] + }, + "properties": { + "id": "meter-3178", + "maker": "Maker G", + "model": "Model 3178", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.501515128599785, + 24.78733356275041 + ] + }, + "properties": { + "id": "meter-3179", + "maker": "Maker B", + "model": "Model 3179", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.221509100029806, + 21.490089699291705 + ] + }, + "properties": { + "id": "meter-3180", + "maker": "Maker H", + "model": "Model 3180", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.41176131405247, + 24.85240473398987 + ] + }, + "properties": { + "id": "meter-3181", + "maker": "Maker E", + "model": "Model 3181", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.82441998184459, + 26.26931034882325 + ] + }, + "properties": { + "id": "meter-3182", + "maker": "Maker F", + "model": "Model 3182", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.592845264674274, + 28.39053174438204 + ] + }, + "properties": { + "id": "meter-3183", + "maker": "Maker B", + "model": "Model 3183", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.767188882390684, + 27.32726506585741 + ] + }, + "properties": { + "id": "meter-3184", + "maker": "Maker D", + "model": "Model 3184", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.196480527274815, + 21.56288735613962 + ] + }, + "properties": { + "id": "meter-3185", + "maker": "Maker H", + "model": "Model 3185", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.591711753902025, + 18.0531332175146 + ] + }, + "properties": { + "id": "meter-3186", + "maker": "Maker H", + "model": "Model 3186", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.470995675740504, + 18.074636519343866 + ] + }, + "properties": { + "id": "meter-3187", + "maker": "Maker G", + "model": "Model 3187", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11264808661551, + 26.2019198243481 + ] + }, + "properties": { + "id": "meter-3188", + "maker": "Maker J", + "model": "Model 3188", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.86517882289869, + 17.522082960955306 + ] + }, + "properties": { + "id": "meter-3189", + "maker": "Maker C", + "model": "Model 3189", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2039700250591, + 21.27439816905573 + ] + }, + "properties": { + "id": "meter-3190", + "maker": "Maker B", + "model": "Model 3190", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00513829300705, + 26.52091892061367 + ] + }, + "properties": { + "id": "meter-3191", + "maker": "Maker C", + "model": "Model 3191", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.29084247530701, + 23.969833530725456 + ] + }, + "properties": { + "id": "meter-3192", + "maker": "Maker E", + "model": "Model 3192", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.44612224605138, + 24.4011000750845 + ] + }, + "properties": { + "id": "meter-3193", + "maker": "Maker A", + "model": "Model 3193", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15775082241039, + 26.20662427110533 + ] + }, + "properties": { + "id": "meter-3194", + "maker": "Maker H", + "model": "Model 3194", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.373489313895625, + 28.576195955577486 + ] + }, + "properties": { + "id": "meter-3195", + "maker": "Maker H", + "model": "Model 3195", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.574237150271564, + 18.215308007078367 + ] + }, + "properties": { + "id": "meter-3196", + "maker": "Maker A", + "model": "Model 3196", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.76796836585916, + 24.467229076883125 + ] + }, + "properties": { + "id": "meter-3197", + "maker": "Maker J", + "model": "Model 3197", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73312938060265, + 18.270920166712653 + ] + }, + "properties": { + "id": "meter-3198", + "maker": "Maker F", + "model": "Model 3198", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.881044870030856, + 18.372996783389137 + ] + }, + "properties": { + "id": "meter-3199", + "maker": "Maker A", + "model": "Model 3199", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.85815729696608, + 24.77680220760975 + ] + }, + "properties": { + "id": "meter-3200", + "maker": "Maker I", + "model": "Model 3200", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.090374625373066, + 31.0731885004297 + ] + }, + "properties": { + "id": "meter-3201", + "maker": "Maker H", + "model": "Model 3201", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.952876357391204, + 30.747138566052904 + ] + }, + "properties": { + "id": "meter-3202", + "maker": "Maker G", + "model": "Model 3202", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.174217107615355, + 29.782582775577072 + ] + }, + "properties": { + "id": "meter-3203", + "maker": "Maker G", + "model": "Model 3203", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.302854583752, + 20.24342467142888 + ] + }, + "properties": { + "id": "meter-3204", + "maker": "Maker C", + "model": "Model 3204", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.3444362094558, + 29.863270459176537 + ] + }, + "properties": { + "id": "meter-3205", + "maker": "Maker B", + "model": "Model 3205", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.16114153046352, + 24.23975764211974 + ] + }, + "properties": { + "id": "meter-3206", + "maker": "Maker J", + "model": "Model 3206", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.309345279804404, + 21.310476349358286 + ] + }, + "properties": { + "id": "meter-3207", + "maker": "Maker J", + "model": "Model 3207", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.83517495645798, + 26.418072909713334 + ] + }, + "properties": { + "id": "meter-3208", + "maker": "Maker G", + "model": "Model 3208", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.095111847129964, + 21.277666837195483 + ] + }, + "properties": { + "id": "meter-3209", + "maker": "Maker J", + "model": "Model 3209", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.39506853697771, + 25.316539506160744 + ] + }, + "properties": { + "id": "meter-3210", + "maker": "Maker A", + "model": "Model 3210", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.274361026799156, + 21.516683555392937 + ] + }, + "properties": { + "id": "meter-3211", + "maker": "Maker J", + "model": "Model 3211", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.79641622959518, + 21.442372958358572 + ] + }, + "properties": { + "id": "meter-3212", + "maker": "Maker A", + "model": "Model 3212", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.14577212336078, + 24.047137369148885 + ] + }, + "properties": { + "id": "meter-3213", + "maker": "Maker H", + "model": "Model 3213", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.18261193801932, + 17.526985812344215 + ] + }, + "properties": { + "id": "meter-3214", + "maker": "Maker I", + "model": "Model 3214", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.763604410509146, + 18.392119878699543 + ] + }, + "properties": { + "id": "meter-3215", + "maker": "Maker A", + "model": "Model 3215", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.73537231572694, + 25.14354309431016 + ] + }, + "properties": { + "id": "meter-3216", + "maker": "Maker D", + "model": "Model 3216", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96820079299282, + 17.61358499609411 + ] + }, + "properties": { + "id": "meter-3217", + "maker": "Maker A", + "model": "Model 3217", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.959473278440264, + 26.324113669906087 + ] + }, + "properties": { + "id": "meter-3218", + "maker": "Maker C", + "model": "Model 3218", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.06362500350075, + 31.005045638771815 + ] + }, + "properties": { + "id": "meter-3219", + "maker": "Maker J", + "model": "Model 3219", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.6308377737856, + 24.250802943247113 + ] + }, + "properties": { + "id": "meter-3220", + "maker": "Maker E", + "model": "Model 3220", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.247794425470076, + 17.42464582982652 + ] + }, + "properties": { + "id": "meter-3221", + "maker": "Maker D", + "model": "Model 3221", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.199420183246765, + 24.338512647899936 + ] + }, + "properties": { + "id": "meter-3222", + "maker": "Maker I", + "model": "Model 3222", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.70990273430457, + 24.69433289820269 + ] + }, + "properties": { + "id": "meter-3223", + "maker": "Maker B", + "model": "Model 3223", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03111349012246, + 30.732808782854462 + ] + }, + "properties": { + "id": "meter-3224", + "maker": "Maker E", + "model": "Model 3224", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.13323726066213, + 30.88606746206341 + ] + }, + "properties": { + "id": "meter-3225", + "maker": "Maker H", + "model": "Model 3225", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.05836594476904, + 26.444047490602106 + ] + }, + "properties": { + "id": "meter-3226", + "maker": "Maker J", + "model": "Model 3226", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23743046399644, + 21.485079175793302 + ] + }, + "properties": { + "id": "meter-3227", + "maker": "Maker G", + "model": "Model 3227", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45559468154337, + 19.99170925294943 + ] + }, + "properties": { + "id": "meter-3228", + "maker": "Maker C", + "model": "Model 3228", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.043521322921805, + 26.42031894785042 + ] + }, + "properties": { + "id": "meter-3229", + "maker": "Maker H", + "model": "Model 3229", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.35980507426736, + 25.222633360782876 + ] + }, + "properties": { + "id": "meter-3230", + "maker": "Maker H", + "model": "Model 3230", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.762532293700026, + 18.229427382349485 + ] + }, + "properties": { + "id": "meter-3231", + "maker": "Maker H", + "model": "Model 3231", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.52734373788497, + 21.442459300392535 + ] + }, + "properties": { + "id": "meter-3232", + "maker": "Maker C", + "model": "Model 3232", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.190604952619736, + 30.013734122587376 + ] + }, + "properties": { + "id": "meter-3233", + "maker": "Maker D", + "model": "Model 3233", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.95871990393971, + 26.456371388860234 + ] + }, + "properties": { + "id": "meter-3234", + "maker": "Maker J", + "model": "Model 3234", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.348133083571334, + 18.017700308993824 + ] + }, + "properties": { + "id": "meter-3235", + "maker": "Maker D", + "model": "Model 3235", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.081229682164384, + 24.079326719979527 + ] + }, + "properties": { + "id": "meter-3236", + "maker": "Maker B", + "model": "Model 3236", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.912838336462166, + 17.408308615061163 + ] + }, + "properties": { + "id": "meter-3237", + "maker": "Maker F", + "model": "Model 3237", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.167090672353226, + 17.50204067730491 + ] + }, + "properties": { + "id": "meter-3238", + "maker": "Maker J", + "model": "Model 3238", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07895636267665, + 26.312306125061166 + ] + }, + "properties": { + "id": "meter-3239", + "maker": "Maker J", + "model": "Model 3239", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.56134630931068, + 24.284064103406003 + ] + }, + "properties": { + "id": "meter-3240", + "maker": "Maker B", + "model": "Model 3240", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.678395521383564, + 27.483686860449755 + ] + }, + "properties": { + "id": "meter-3241", + "maker": "Maker C", + "model": "Model 3241", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.13584900922857, + 24.171999411425915 + ] + }, + "properties": { + "id": "meter-3242", + "maker": "Maker H", + "model": "Model 3242", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14172581673905, + 26.207840168575768 + ] + }, + "properties": { + "id": "meter-3243", + "maker": "Maker B", + "model": "Model 3243", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.446299422815706, + 25.329044094911424 + ] + }, + "properties": { + "id": "meter-3244", + "maker": "Maker J", + "model": "Model 3244", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17802552082439, + 17.558094884754887 + ] + }, + "properties": { + "id": "meter-3245", + "maker": "Maker A", + "model": "Model 3245", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.78215262877382, + 24.60590347711241 + ] + }, + "properties": { + "id": "meter-3246", + "maker": "Maker E", + "model": "Model 3246", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.179613059263204, + 30.000303354951086 + ] + }, + "properties": { + "id": "meter-3247", + "maker": "Maker H", + "model": "Model 3247", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.709685365285644, + 27.309273125219303 + ] + }, + "properties": { + "id": "meter-3248", + "maker": "Maker F", + "model": "Model 3248", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.75832444546624, + 18.164255016375105 + ] + }, + "properties": { + "id": "meter-3249", + "maker": "Maker C", + "model": "Model 3249", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65051588898328, + 27.29260008875334 + ] + }, + "properties": { + "id": "meter-3250", + "maker": "Maker J", + "model": "Model 3250", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.38888872675705, + 18.29327893684575 + ] + }, + "properties": { + "id": "meter-3251", + "maker": "Maker G", + "model": "Model 3251", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.61621826773258, + 20.128339627999022 + ] + }, + "properties": { + "id": "meter-3252", + "maker": "Maker I", + "model": "Model 3252", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.9134647369627, + 24.55367294126116 + ] + }, + "properties": { + "id": "meter-3253", + "maker": "Maker F", + "model": "Model 3253", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99465628465156, + 26.21277671188217 + ] + }, + "properties": { + "id": "meter-3254", + "maker": "Maker F", + "model": "Model 3254", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.49942002965574, + 28.617671659608998 + ] + }, + "properties": { + "id": "meter-3255", + "maker": "Maker E", + "model": "Model 3255", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.81975871364051, + 26.46723773426545 + ] + }, + "properties": { + "id": "meter-3256", + "maker": "Maker D", + "model": "Model 3256", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.282220762359756, + 30.113977227334225 + ] + }, + "properties": { + "id": "meter-3257", + "maker": "Maker E", + "model": "Model 3257", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01673536061081, + 26.489308275536295 + ] + }, + "properties": { + "id": "meter-3258", + "maker": "Maker J", + "model": "Model 3258", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.726603934698225, + 18.18230804413675 + ] + }, + "properties": { + "id": "meter-3259", + "maker": "Maker H", + "model": "Model 3259", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.79918695164827, + 21.329928573098627 + ] + }, + "properties": { + "id": "meter-3260", + "maker": "Maker H", + "model": "Model 3260", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.875983912094476, + 26.07860750769586 + ] + }, + "properties": { + "id": "meter-3261", + "maker": "Maker A", + "model": "Model 3261", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.908806449890214, + 26.406738938545878 + ] + }, + "properties": { + "id": "meter-3262", + "maker": "Maker E", + "model": "Model 3262", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06512239865509, + 26.278554454353888 + ] + }, + "properties": { + "id": "meter-3263", + "maker": "Maker I", + "model": "Model 3263", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.60957429666298, + 28.39817682390622 + ] + }, + "properties": { + "id": "meter-3264", + "maker": "Maker H", + "model": "Model 3264", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.68225314600073, + 27.51810632737179 + ] + }, + "properties": { + "id": "meter-3265", + "maker": "Maker G", + "model": "Model 3265", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.40347242162224, + 25.560859710682223 + ] + }, + "properties": { + "id": "meter-3266", + "maker": "Maker I", + "model": "Model 3266", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49304106506737, + 18.053247452883937 + ] + }, + "properties": { + "id": "meter-3267", + "maker": "Maker C", + "model": "Model 3267", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.87674401838859, + 24.906156159471603 + ] + }, + "properties": { + "id": "meter-3268", + "maker": "Maker I", + "model": "Model 3268", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.73748338260625, + 21.33638849870827 + ] + }, + "properties": { + "id": "meter-3269", + "maker": "Maker D", + "model": "Model 3269", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.255249324104525, + 30.01514948727796 + ] + }, + "properties": { + "id": "meter-3270", + "maker": "Maker J", + "model": "Model 3270", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.270446291765836, + 24.065259950539982 + ] + }, + "properties": { + "id": "meter-3271", + "maker": "Maker J", + "model": "Model 3271", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06266248441144, + 26.414144481707314 + ] + }, + "properties": { + "id": "meter-3272", + "maker": "Maker E", + "model": "Model 3272", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.73259521288213, + 27.554926780289836 + ] + }, + "properties": { + "id": "meter-3273", + "maker": "Maker D", + "model": "Model 3273", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.97793227803104, + 30.998483724945892 + ] + }, + "properties": { + "id": "meter-3274", + "maker": "Maker I", + "model": "Model 3274", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94672502613051, + 26.368050784128027 + ] + }, + "properties": { + "id": "meter-3275", + "maker": "Maker F", + "model": "Model 3275", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.119258345733336, + 17.50766970475692 + ] + }, + "properties": { + "id": "meter-3276", + "maker": "Maker G", + "model": "Model 3276", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.42635585868052, + 18.179748485500284 + ] + }, + "properties": { + "id": "meter-3277", + "maker": "Maker E", + "model": "Model 3277", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.6801418324689, + 25.429742270634932 + ] + }, + "properties": { + "id": "meter-3278", + "maker": "Maker H", + "model": "Model 3278", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00932321117446, + 26.505059288944715 + ] + }, + "properties": { + "id": "meter-3279", + "maker": "Maker E", + "model": "Model 3279", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10047652993606, + 26.406995554998126 + ] + }, + "properties": { + "id": "meter-3280", + "maker": "Maker G", + "model": "Model 3280", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61066830955228, + 24.50354829387795 + ] + }, + "properties": { + "id": "meter-3281", + "maker": "Maker B", + "model": "Model 3281", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.58062480615815, + 28.517652060023398 + ] + }, + "properties": { + "id": "meter-3282", + "maker": "Maker B", + "model": "Model 3282", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.08505293511914, + 30.99521520986108 + ] + }, + "properties": { + "id": "meter-3283", + "maker": "Maker B", + "model": "Model 3283", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69166900634378, + 18.307977853307225 + ] + }, + "properties": { + "id": "meter-3284", + "maker": "Maker F", + "model": "Model 3284", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.576527368894276, + 19.92832657634449 + ] + }, + "properties": { + "id": "meter-3285", + "maker": "Maker D", + "model": "Model 3285", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.34158161183431, + 21.43599873804928 + ] + }, + "properties": { + "id": "meter-3286", + "maker": "Maker B", + "model": "Model 3286", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.504767323957914, + 18.00574295528457 + ] + }, + "properties": { + "id": "meter-3287", + "maker": "Maker E", + "model": "Model 3287", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.993185616678744, + 17.50026824991004 + ] + }, + "properties": { + "id": "meter-3288", + "maker": "Maker B", + "model": "Model 3288", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.64274672398966, + 27.52597786161699 + ] + }, + "properties": { + "id": "meter-3289", + "maker": "Maker A", + "model": "Model 3289", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.430267184004975, + 24.411412998131592 + ] + }, + "properties": { + "id": "meter-3290", + "maker": "Maker F", + "model": "Model 3290", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.95349088768017, + 31.13793953675136 + ] + }, + "properties": { + "id": "meter-3291", + "maker": "Maker F", + "model": "Model 3291", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.56670774537674, + 18.093906601952558 + ] + }, + "properties": { + "id": "meter-3292", + "maker": "Maker C", + "model": "Model 3292", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.52321648220956, + 27.305900362411553 + ] + }, + "properties": { + "id": "meter-3293", + "maker": "Maker C", + "model": "Model 3293", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.30222379082963, + 21.511042915012197 + ] + }, + "properties": { + "id": "meter-3294", + "maker": "Maker B", + "model": "Model 3294", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.124485402374916, + 26.276617970148994 + ] + }, + "properties": { + "id": "meter-3295", + "maker": "Maker F", + "model": "Model 3295", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.653795595496575, + 24.49785623028146 + ] + }, + "properties": { + "id": "meter-3296", + "maker": "Maker F", + "model": "Model 3296", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.668026955053726, + 24.732627681444377 + ] + }, + "properties": { + "id": "meter-3297", + "maker": "Maker A", + "model": "Model 3297", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.66213599614411, + 24.708275645768303 + ] + }, + "properties": { + "id": "meter-3298", + "maker": "Maker I", + "model": "Model 3298", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96172745386424, + 26.319896245104218 + ] + }, + "properties": { + "id": "meter-3299", + "maker": "Maker C", + "model": "Model 3299", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.7091877109342, + 28.17666690407804 + ] + }, + "properties": { + "id": "meter-3300", + "maker": "Maker H", + "model": "Model 3300", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.082548081912044, + 30.68499612918715 + ] + }, + "properties": { + "id": "meter-3301", + "maker": "Maker I", + "model": "Model 3301", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.28174024254889, + 24.043205120148407 + ] + }, + "properties": { + "id": "meter-3302", + "maker": "Maker H", + "model": "Model 3302", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11253555364201, + 26.39044773241317 + ] + }, + "properties": { + "id": "meter-3303", + "maker": "Maker B", + "model": "Model 3303", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.33542574339654, + 20.172714067838992 + ] + }, + "properties": { + "id": "meter-3304", + "maker": "Maker F", + "model": "Model 3304", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.27497776981499, + 18.377429145110636 + ] + }, + "properties": { + "id": "meter-3305", + "maker": "Maker D", + "model": "Model 3305", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08616077467211, + 17.7525381084808 + ] + }, + "properties": { + "id": "meter-3306", + "maker": "Maker C", + "model": "Model 3306", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.090538300280684, + 26.49350498325402 + ] + }, + "properties": { + "id": "meter-3307", + "maker": "Maker A", + "model": "Model 3307", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87354733803179, + 26.393843268950384 + ] + }, + "properties": { + "id": "meter-3308", + "maker": "Maker C", + "model": "Model 3308", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.19243033392192, + 17.72517914182912 + ] + }, + "properties": { + "id": "meter-3309", + "maker": "Maker A", + "model": "Model 3309", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.694117988000336, + 27.606091644667504 + ] + }, + "properties": { + "id": "meter-3310", + "maker": "Maker D", + "model": "Model 3310", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69559878367266, + 27.402908461713576 + ] + }, + "properties": { + "id": "meter-3311", + "maker": "Maker J", + "model": "Model 3311", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.56191641893682, + 18.159763896302167 + ] + }, + "properties": { + "id": "meter-3312", + "maker": "Maker J", + "model": "Model 3312", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95713744322668, + 26.386565291977007 + ] + }, + "properties": { + "id": "meter-3313", + "maker": "Maker I", + "model": "Model 3313", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.718991185228504, + 27.543413263379716 + ] + }, + "properties": { + "id": "meter-3314", + "maker": "Maker J", + "model": "Model 3314", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.211058042795166, + 21.472937538682267 + ] + }, + "properties": { + "id": "meter-3315", + "maker": "Maker A", + "model": "Model 3315", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.2145832474434, + 24.097755354139892 + ] + }, + "properties": { + "id": "meter-3316", + "maker": "Maker H", + "model": "Model 3316", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.41852385954913, + 24.600747306760216 + ] + }, + "properties": { + "id": "meter-3317", + "maker": "Maker F", + "model": "Model 3317", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91159526621239, + 26.66130791821896 + ] + }, + "properties": { + "id": "meter-3318", + "maker": "Maker I", + "model": "Model 3318", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.603496381398045, + 24.28993710233597 + ] + }, + "properties": { + "id": "meter-3319", + "maker": "Maker B", + "model": "Model 3319", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.429164323902526, + 19.8189871661643 + ] + }, + "properties": { + "id": "meter-3320", + "maker": "Maker F", + "model": "Model 3320", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.49383154551603, + 28.47491218758852 + ] + }, + "properties": { + "id": "meter-3321", + "maker": "Maker J", + "model": "Model 3321", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.287872357757976, + 21.301432737757487 + ] + }, + "properties": { + "id": "meter-3322", + "maker": "Maker D", + "model": "Model 3322", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.74431393207263, + 27.36297747580293 + ] + }, + "properties": { + "id": "meter-3323", + "maker": "Maker C", + "model": "Model 3323", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93087339793197, + 26.64110758461541 + ] + }, + "properties": { + "id": "meter-3324", + "maker": "Maker J", + "model": "Model 3324", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60606134412965, + 21.26027774957615 + ] + }, + "properties": { + "id": "meter-3325", + "maker": "Maker F", + "model": "Model 3325", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.99027169862076, + 31.03141280728153 + ] + }, + "properties": { + "id": "meter-3326", + "maker": "Maker A", + "model": "Model 3326", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.57791359137371, + 24.368437163502282 + ] + }, + "properties": { + "id": "meter-3327", + "maker": "Maker D", + "model": "Model 3327", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68795687866266, + 24.75161285951594 + ] + }, + "properties": { + "id": "meter-3328", + "maker": "Maker E", + "model": "Model 3328", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.60254758405421, + 25.131769645024992 + ] + }, + "properties": { + "id": "meter-3329", + "maker": "Maker I", + "model": "Model 3329", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.31425998433534, + 17.538706918465564 + ] + }, + "properties": { + "id": "meter-3330", + "maker": "Maker B", + "model": "Model 3330", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18193869547463, + 26.25908520737724 + ] + }, + "properties": { + "id": "meter-3331", + "maker": "Maker J", + "model": "Model 3331", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.461233641242565, + 20.00396980444397 + ] + }, + "properties": { + "id": "meter-3332", + "maker": "Maker G", + "model": "Model 3332", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03814844163689, + 26.125379559892224 + ] + }, + "properties": { + "id": "meter-3333", + "maker": "Maker B", + "model": "Model 3333", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.003938517354825, + 29.7820720055131 + ] + }, + "properties": { + "id": "meter-3334", + "maker": "Maker D", + "model": "Model 3334", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.34162625696455, + 18.26141430461695 + ] + }, + "properties": { + "id": "meter-3335", + "maker": "Maker H", + "model": "Model 3335", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05360560588475, + 24.08319323330111 + ] + }, + "properties": { + "id": "meter-3336", + "maker": "Maker H", + "model": "Model 3336", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.781517380607866, + 21.59176535762057 + ] + }, + "properties": { + "id": "meter-3337", + "maker": "Maker F", + "model": "Model 3337", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.35626183900352, + 24.052536288462385 + ] + }, + "properties": { + "id": "meter-3338", + "maker": "Maker J", + "model": "Model 3338", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.11333095152878, + 30.860177663871227 + ] + }, + "properties": { + "id": "meter-3339", + "maker": "Maker C", + "model": "Model 3339", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.29674937603812, + 30.218033577313342 + ] + }, + "properties": { + "id": "meter-3340", + "maker": "Maker F", + "model": "Model 3340", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.466514797154424, + 19.816806830442378 + ] + }, + "properties": { + "id": "meter-3341", + "maker": "Maker H", + "model": "Model 3341", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14758063953479, + 26.080084056258766 + ] + }, + "properties": { + "id": "meter-3342", + "maker": "Maker F", + "model": "Model 3342", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.0052514001703, + 31.082198350388264 + ] + }, + "properties": { + "id": "meter-3343", + "maker": "Maker B", + "model": "Model 3343", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.88090734258088, + 26.558521236501136 + ] + }, + "properties": { + "id": "meter-3344", + "maker": "Maker B", + "model": "Model 3344", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.72707376744124, + 27.581257088704056 + ] + }, + "properties": { + "id": "meter-3345", + "maker": "Maker G", + "model": "Model 3345", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.60493850510164, + 25.501959459591834 + ] + }, + "properties": { + "id": "meter-3346", + "maker": "Maker H", + "model": "Model 3346", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.578937450476474, + 28.42785780087848 + ] + }, + "properties": { + "id": "meter-3347", + "maker": "Maker A", + "model": "Model 3347", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.22743992677686, + 21.50335884453672 + ] + }, + "properties": { + "id": "meter-3348", + "maker": "Maker F", + "model": "Model 3348", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.69660463396872, + 28.293103176974764 + ] + }, + "properties": { + "id": "meter-3349", + "maker": "Maker J", + "model": "Model 3349", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.1278425409094, + 30.12907864814001 + ] + }, + "properties": { + "id": "meter-3350", + "maker": "Maker H", + "model": "Model 3350", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.79556265158499, + 18.197926699505103 + ] + }, + "properties": { + "id": "meter-3351", + "maker": "Maker G", + "model": "Model 3351", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.43014900835617, + 24.614256043359124 + ] + }, + "properties": { + "id": "meter-3352", + "maker": "Maker B", + "model": "Model 3352", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.86206677641995, + 28.272240334915328 + ] + }, + "properties": { + "id": "meter-3353", + "maker": "Maker B", + "model": "Model 3353", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.28327913309574, + 21.328244526043044 + ] + }, + "properties": { + "id": "meter-3354", + "maker": "Maker I", + "model": "Model 3354", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.592864511978604, + 19.78905623693151 + ] + }, + "properties": { + "id": "meter-3355", + "maker": "Maker E", + "model": "Model 3355", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54905135634103, + 25.315638887919807 + ] + }, + "properties": { + "id": "meter-3356", + "maker": "Maker F", + "model": "Model 3356", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.06478950133182, + 26.4140009851128 + ] + }, + "properties": { + "id": "meter-3357", + "maker": "Maker F", + "model": "Model 3357", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.915831366026154, + 26.611130531758423 + ] + }, + "properties": { + "id": "meter-3358", + "maker": "Maker F", + "model": "Model 3358", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.55908340624142, + 28.217053627168966 + ] + }, + "properties": { + "id": "meter-3359", + "maker": "Maker D", + "model": "Model 3359", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.698859759907904, + 25.488116368928754 + ] + }, + "properties": { + "id": "meter-3360", + "maker": "Maker H", + "model": "Model 3360", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.139358940770265, + 26.345630107314086 + ] + }, + "properties": { + "id": "meter-3361", + "maker": "Maker E", + "model": "Model 3361", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.60259228813013, + 28.48602896963625 + ] + }, + "properties": { + "id": "meter-3362", + "maker": "Maker A", + "model": "Model 3362", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.71668315203125, + 27.54948106204733 + ] + }, + "properties": { + "id": "meter-3363", + "maker": "Maker E", + "model": "Model 3363", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04268071334877, + 17.445949534180986 + ] + }, + "properties": { + "id": "meter-3364", + "maker": "Maker A", + "model": "Model 3364", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.203482916321875, + 26.33576331433613 + ] + }, + "properties": { + "id": "meter-3365", + "maker": "Maker F", + "model": "Model 3365", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.849611489650606, + 26.538502589352248 + ] + }, + "properties": { + "id": "meter-3366", + "maker": "Maker B", + "model": "Model 3366", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.293635282339864, + 24.127255720582415 + ] + }, + "properties": { + "id": "meter-3367", + "maker": "Maker J", + "model": "Model 3367", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.06846187845184, + 26.495626030683134 + ] + }, + "properties": { + "id": "meter-3368", + "maker": "Maker G", + "model": "Model 3368", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.55381189701611, + 18.342194021701417 + ] + }, + "properties": { + "id": "meter-3369", + "maker": "Maker H", + "model": "Model 3369", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.57105368218862, + 27.325142257101852 + ] + }, + "properties": { + "id": "meter-3370", + "maker": "Maker F", + "model": "Model 3370", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.202719308854796, + 26.179931218191463 + ] + }, + "properties": { + "id": "meter-3371", + "maker": "Maker C", + "model": "Model 3371", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.536248614742256, + 28.527069091445043 + ] + }, + "properties": { + "id": "meter-3372", + "maker": "Maker E", + "model": "Model 3372", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.9076641104707, + 31.057886619273432 + ] + }, + "properties": { + "id": "meter-3373", + "maker": "Maker J", + "model": "Model 3373", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97466405233744, + 26.279813189827895 + ] + }, + "properties": { + "id": "meter-3374", + "maker": "Maker F", + "model": "Model 3374", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.123630794968776, + 17.48707333213998 + ] + }, + "properties": { + "id": "meter-3375", + "maker": "Maker J", + "model": "Model 3375", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.59138083974612, + 18.50534349445966 + ] + }, + "properties": { + "id": "meter-3376", + "maker": "Maker I", + "model": "Model 3376", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.334057227961814, + 17.616777363808556 + ] + }, + "properties": { + "id": "meter-3377", + "maker": "Maker H", + "model": "Model 3377", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.771232983410734, + 28.197291875237923 + ] + }, + "properties": { + "id": "meter-3378", + "maker": "Maker B", + "model": "Model 3378", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.19524195538806, + 17.50977149355507 + ] + }, + "properties": { + "id": "meter-3379", + "maker": "Maker I", + "model": "Model 3379", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.47960420535727, + 24.771920976261928 + ] + }, + "properties": { + "id": "meter-3380", + "maker": "Maker F", + "model": "Model 3380", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.510588829691606, + 19.945025396832857 + ] + }, + "properties": { + "id": "meter-3381", + "maker": "Maker B", + "model": "Model 3381", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.36699533265852, + 21.613370848324106 + ] + }, + "properties": { + "id": "meter-3382", + "maker": "Maker B", + "model": "Model 3382", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08192542812418, + 26.23333661956374 + ] + }, + "properties": { + "id": "meter-3383", + "maker": "Maker J", + "model": "Model 3383", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.8697959102361, + 27.52844032924456 + ] + }, + "properties": { + "id": "meter-3384", + "maker": "Maker E", + "model": "Model 3384", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.954360465960235, + 30.043795282116648 + ] + }, + "properties": { + "id": "meter-3385", + "maker": "Maker D", + "model": "Model 3385", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11743410989106, + 26.38785415610215 + ] + }, + "properties": { + "id": "meter-3386", + "maker": "Maker D", + "model": "Model 3386", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.739858855068604, + 24.582772980524016 + ] + }, + "properties": { + "id": "meter-3387", + "maker": "Maker D", + "model": "Model 3387", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.11733109168947, + 30.941804328105597 + ] + }, + "properties": { + "id": "meter-3388", + "maker": "Maker A", + "model": "Model 3388", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.3079600495299, + 21.75801413725564 + ] + }, + "properties": { + "id": "meter-3389", + "maker": "Maker I", + "model": "Model 3389", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21632051857311, + 26.292532955219862 + ] + }, + "properties": { + "id": "meter-3390", + "maker": "Maker B", + "model": "Model 3390", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.02366812556317, + 21.35016547332516 + ] + }, + "properties": { + "id": "meter-3391", + "maker": "Maker I", + "model": "Model 3391", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.05570430227063, + 30.963471670242274 + ] + }, + "properties": { + "id": "meter-3392", + "maker": "Maker D", + "model": "Model 3392", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.10334478291048, + 24.191088829552896 + ] + }, + "properties": { + "id": "meter-3393", + "maker": "Maker C", + "model": "Model 3393", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.119122435926585, + 26.28258759242312 + ] + }, + "properties": { + "id": "meter-3394", + "maker": "Maker F", + "model": "Model 3394", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13750408421719, + 26.159403665587334 + ] + }, + "properties": { + "id": "meter-3395", + "maker": "Maker I", + "model": "Model 3395", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02987847927122, + 26.338984495155405 + ] + }, + "properties": { + "id": "meter-3396", + "maker": "Maker F", + "model": "Model 3396", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08024863542048, + 26.4562198674172 + ] + }, + "properties": { + "id": "meter-3397", + "maker": "Maker E", + "model": "Model 3397", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.71283771978407, + 20.112495367415356 + ] + }, + "properties": { + "id": "meter-3398", + "maker": "Maker G", + "model": "Model 3398", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.19504267138841, + 29.754080129879206 + ] + }, + "properties": { + "id": "meter-3399", + "maker": "Maker H", + "model": "Model 3399", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.812835123813336, + 21.35481369501692 + ] + }, + "properties": { + "id": "meter-3400", + "maker": "Maker G", + "model": "Model 3400", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.668540109206425, + 24.63037724681234 + ] + }, + "properties": { + "id": "meter-3401", + "maker": "Maker E", + "model": "Model 3401", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00384333704655, + 26.418422309793247 + ] + }, + "properties": { + "id": "meter-3402", + "maker": "Maker A", + "model": "Model 3402", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.894263347033856, + 26.730927054440677 + ] + }, + "properties": { + "id": "meter-3403", + "maker": "Maker H", + "model": "Model 3403", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.5824558940027, + 28.250919330387052 + ] + }, + "properties": { + "id": "meter-3404", + "maker": "Maker E", + "model": "Model 3404", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.78230689440685, + 26.324549927785423 + ] + }, + "properties": { + "id": "meter-3405", + "maker": "Maker C", + "model": "Model 3405", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.48193744464958, + 21.463423395473963 + ] + }, + "properties": { + "id": "meter-3406", + "maker": "Maker F", + "model": "Model 3406", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.630691210358734, + 25.486789470687317 + ] + }, + "properties": { + "id": "meter-3407", + "maker": "Maker G", + "model": "Model 3407", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.60503633235217, + 28.546013799162303 + ] + }, + "properties": { + "id": "meter-3408", + "maker": "Maker F", + "model": "Model 3408", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.65940026782924, + 25.525351467194866 + ] + }, + "properties": { + "id": "meter-3409", + "maker": "Maker C", + "model": "Model 3409", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.205208217395054, + 29.935886832593667 + ] + }, + "properties": { + "id": "meter-3410", + "maker": "Maker H", + "model": "Model 3410", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.81329537167372, + 24.978149576532523 + ] + }, + "properties": { + "id": "meter-3411", + "maker": "Maker G", + "model": "Model 3411", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96850065019885, + 26.495249262330116 + ] + }, + "properties": { + "id": "meter-3412", + "maker": "Maker J", + "model": "Model 3412", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93282342653577, + 26.66110536091372 + ] + }, + "properties": { + "id": "meter-3413", + "maker": "Maker H", + "model": "Model 3413", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.70660869846617, + 25.509395572424218 + ] + }, + "properties": { + "id": "meter-3414", + "maker": "Maker I", + "model": "Model 3414", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.157901830887674, + 21.5359078585866 + ] + }, + "properties": { + "id": "meter-3415", + "maker": "Maker J", + "model": "Model 3415", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.43114743373256, + 25.588933828396993 + ] + }, + "properties": { + "id": "meter-3416", + "maker": "Maker C", + "model": "Model 3416", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1049217149377, + 26.423147528692112 + ] + }, + "properties": { + "id": "meter-3417", + "maker": "Maker A", + "model": "Model 3417", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.62542680211907, + 28.488135284499133 + ] + }, + "properties": { + "id": "meter-3418", + "maker": "Maker C", + "model": "Model 3418", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.4110178903986, + 17.505493287293323 + ] + }, + "properties": { + "id": "meter-3419", + "maker": "Maker B", + "model": "Model 3419", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0346322794663, + 26.241985109873188 + ] + }, + "properties": { + "id": "meter-3420", + "maker": "Maker C", + "model": "Model 3420", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.78676807868969, + 24.53953565197752 + ] + }, + "properties": { + "id": "meter-3421", + "maker": "Maker B", + "model": "Model 3421", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.47795786913509, + 18.319427631900844 + ] + }, + "properties": { + "id": "meter-3422", + "maker": "Maker I", + "model": "Model 3422", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67669279113054, + 24.504802174046578 + ] + }, + "properties": { + "id": "meter-3423", + "maker": "Maker A", + "model": "Model 3423", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.58072378363243, + 24.985231858703386 + ] + }, + "properties": { + "id": "meter-3424", + "maker": "Maker E", + "model": "Model 3424", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.754068988600544, + 24.577102535401487 + ] + }, + "properties": { + "id": "meter-3425", + "maker": "Maker G", + "model": "Model 3425", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.58090886386624, + 19.98445453528549 + ] + }, + "properties": { + "id": "meter-3426", + "maker": "Maker C", + "model": "Model 3426", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67529200265572, + 24.708040403778316 + ] + }, + "properties": { + "id": "meter-3427", + "maker": "Maker E", + "model": "Model 3427", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.93003951428836, + 26.39893599923592 + ] + }, + "properties": { + "id": "meter-3428", + "maker": "Maker C", + "model": "Model 3428", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.90909305586172, + 21.326389785187242 + ] + }, + "properties": { + "id": "meter-3429", + "maker": "Maker A", + "model": "Model 3429", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.15901962592849, + 31.19426884733651 + ] + }, + "properties": { + "id": "meter-3430", + "maker": "Maker D", + "model": "Model 3430", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.957063551384884, + 30.12420276800829 + ] + }, + "properties": { + "id": "meter-3431", + "maker": "Maker I", + "model": "Model 3431", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89718681175885, + 24.504617462817166 + ] + }, + "properties": { + "id": "meter-3432", + "maker": "Maker B", + "model": "Model 3432", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.63487688081647, + 27.501632817409583 + ] + }, + "properties": { + "id": "meter-3433", + "maker": "Maker H", + "model": "Model 3433", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59395251854707, + 25.112231768269787 + ] + }, + "properties": { + "id": "meter-3434", + "maker": "Maker E", + "model": "Model 3434", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.910323044857435, + 26.426496147170425 + ] + }, + "properties": { + "id": "meter-3435", + "maker": "Maker G", + "model": "Model 3435", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.12993893691136, + 31.01471344055825 + ] + }, + "properties": { + "id": "meter-3436", + "maker": "Maker I", + "model": "Model 3436", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.01505211775148, + 18.346552810785372 + ] + }, + "properties": { + "id": "meter-3437", + "maker": "Maker B", + "model": "Model 3437", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.92931299937506, + 27.612904892126785 + ] + }, + "properties": { + "id": "meter-3438", + "maker": "Maker B", + "model": "Model 3438", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.54969444494693, + 28.55124391379942 + ] + }, + "properties": { + "id": "meter-3439", + "maker": "Maker D", + "model": "Model 3439", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.37875812043654, + 18.083164237137776 + ] + }, + "properties": { + "id": "meter-3440", + "maker": "Maker I", + "model": "Model 3440", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.583595061168225, + 28.41108787918466 + ] + }, + "properties": { + "id": "meter-3441", + "maker": "Maker D", + "model": "Model 3441", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.53386035314601, + 24.705851258116255 + ] + }, + "properties": { + "id": "meter-3442", + "maker": "Maker G", + "model": "Model 3442", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.196423872960956, + 26.194502796415097 + ] + }, + "properties": { + "id": "meter-3443", + "maker": "Maker J", + "model": "Model 3443", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.702689016231865, + 27.50436627044612 + ] + }, + "properties": { + "id": "meter-3444", + "maker": "Maker E", + "model": "Model 3444", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02282806475485, + 26.242806050461695 + ] + }, + "properties": { + "id": "meter-3445", + "maker": "Maker J", + "model": "Model 3445", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20780307201851, + 26.25851797615445 + ] + }, + "properties": { + "id": "meter-3446", + "maker": "Maker J", + "model": "Model 3446", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21310501035961, + 21.391769514994596 + ] + }, + "properties": { + "id": "meter-3447", + "maker": "Maker H", + "model": "Model 3447", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.942719350337164, + 26.212933177605485 + ] + }, + "properties": { + "id": "meter-3448", + "maker": "Maker A", + "model": "Model 3448", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00935558609629, + 26.505325744434597 + ] + }, + "properties": { + "id": "meter-3449", + "maker": "Maker B", + "model": "Model 3449", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.156029906564676, + 26.30417720846242 + ] + }, + "properties": { + "id": "meter-3450", + "maker": "Maker J", + "model": "Model 3450", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.678921376680094, + 24.737429412003372 + ] + }, + "properties": { + "id": "meter-3451", + "maker": "Maker I", + "model": "Model 3451", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11112084939433, + 17.534379966285318 + ] + }, + "properties": { + "id": "meter-3452", + "maker": "Maker A", + "model": "Model 3452", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04607612993335, + 24.08094606702057 + ] + }, + "properties": { + "id": "meter-3453", + "maker": "Maker B", + "model": "Model 3453", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20500327430987, + 26.285233827303163 + ] + }, + "properties": { + "id": "meter-3454", + "maker": "Maker G", + "model": "Model 3454", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.28485610736278, + 21.36548417954276 + ] + }, + "properties": { + "id": "meter-3455", + "maker": "Maker B", + "model": "Model 3455", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13642512722184, + 17.55949065631639 + ] + }, + "properties": { + "id": "meter-3456", + "maker": "Maker A", + "model": "Model 3456", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.85375266518349, + 26.603822977240508 + ] + }, + "properties": { + "id": "meter-3457", + "maker": "Maker C", + "model": "Model 3457", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53125813764791, + 18.24317483358287 + ] + }, + "properties": { + "id": "meter-3458", + "maker": "Maker C", + "model": "Model 3458", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.50820580341636, + 25.342490077229996 + ] + }, + "properties": { + "id": "meter-3459", + "maker": "Maker E", + "model": "Model 3459", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.67887018601634, + 28.499525474672236 + ] + }, + "properties": { + "id": "meter-3460", + "maker": "Maker J", + "model": "Model 3460", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.93490866287505, + 24.208984296032536 + ] + }, + "properties": { + "id": "meter-3461", + "maker": "Maker D", + "model": "Model 3461", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07178916708307, + 24.30354661838863 + ] + }, + "properties": { + "id": "meter-3462", + "maker": "Maker D", + "model": "Model 3462", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.99574468149323, + 30.084573614127514 + ] + }, + "properties": { + "id": "meter-3463", + "maker": "Maker J", + "model": "Model 3463", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.953818665995655, + 30.97327561163914 + ] + }, + "properties": { + "id": "meter-3464", + "maker": "Maker H", + "model": "Model 3464", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.14855091935605, + 21.552947939680795 + ] + }, + "properties": { + "id": "meter-3465", + "maker": "Maker B", + "model": "Model 3465", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.177847381985686, + 26.248081410170016 + ] + }, + "properties": { + "id": "meter-3466", + "maker": "Maker B", + "model": "Model 3466", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.55638391095106, + 24.341154043109654 + ] + }, + "properties": { + "id": "meter-3467", + "maker": "Maker F", + "model": "Model 3467", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.819742817851285, + 26.48955979624684 + ] + }, + "properties": { + "id": "meter-3468", + "maker": "Maker A", + "model": "Model 3468", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.633867158501495, + 28.619403884792792 + ] + }, + "properties": { + "id": "meter-3469", + "maker": "Maker H", + "model": "Model 3469", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59447096979824, + 25.39526084930544 + ] + }, + "properties": { + "id": "meter-3470", + "maker": "Maker A", + "model": "Model 3470", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.88253888880713, + 27.52971457691581 + ] + }, + "properties": { + "id": "meter-3471", + "maker": "Maker F", + "model": "Model 3471", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.737397387980565, + 18.232679482538824 + ] + }, + "properties": { + "id": "meter-3472", + "maker": "Maker C", + "model": "Model 3472", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18271378975383, + 26.241780716124413 + ] + }, + "properties": { + "id": "meter-3473", + "maker": "Maker F", + "model": "Model 3473", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.54127544615555, + 27.61143311004693 + ] + }, + "properties": { + "id": "meter-3474", + "maker": "Maker G", + "model": "Model 3474", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19303371560854, + 26.38021160378956 + ] + }, + "properties": { + "id": "meter-3475", + "maker": "Maker A", + "model": "Model 3475", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49632813707629, + 17.948365145696613 + ] + }, + "properties": { + "id": "meter-3476", + "maker": "Maker E", + "model": "Model 3476", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14031157044272, + 26.22009068878464 + ] + }, + "properties": { + "id": "meter-3477", + "maker": "Maker C", + "model": "Model 3477", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.75667228152776, + 18.327723184943164 + ] + }, + "properties": { + "id": "meter-3478", + "maker": "Maker D", + "model": "Model 3478", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.7964998851883, + 21.49165393810612 + ] + }, + "properties": { + "id": "meter-3479", + "maker": "Maker G", + "model": "Model 3479", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.721057405105576, + 18.39905276542666 + ] + }, + "properties": { + "id": "meter-3480", + "maker": "Maker G", + "model": "Model 3480", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.50515827214242, + 20.17503581053112 + ] + }, + "properties": { + "id": "meter-3481", + "maker": "Maker E", + "model": "Model 3481", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.56935337048577, + 25.251061748202588 + ] + }, + "properties": { + "id": "meter-3482", + "maker": "Maker A", + "model": "Model 3482", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.02522868613351, + 24.292883605922732 + ] + }, + "properties": { + "id": "meter-3483", + "maker": "Maker H", + "model": "Model 3483", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.053043717641536, + 26.349818965048566 + ] + }, + "properties": { + "id": "meter-3484", + "maker": "Maker C", + "model": "Model 3484", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47208972159114, + 27.485789514056524 + ] + }, + "properties": { + "id": "meter-3485", + "maker": "Maker F", + "model": "Model 3485", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.4937101477671, + 24.67559059277543 + ] + }, + "properties": { + "id": "meter-3486", + "maker": "Maker B", + "model": "Model 3486", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.952490713468045, + 26.341482307757747 + ] + }, + "properties": { + "id": "meter-3487", + "maker": "Maker A", + "model": "Model 3487", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42226754136638, + 27.37799230245058 + ] + }, + "properties": { + "id": "meter-3488", + "maker": "Maker F", + "model": "Model 3488", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.81259056116842, + 24.240604462670355 + ] + }, + "properties": { + "id": "meter-3489", + "maker": "Maker A", + "model": "Model 3489", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.46951676549235, + 18.258323652274125 + ] + }, + "properties": { + "id": "meter-3490", + "maker": "Maker A", + "model": "Model 3490", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03082244541567, + 30.857040377178564 + ] + }, + "properties": { + "id": "meter-3491", + "maker": "Maker C", + "model": "Model 3491", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.6850813254096, + 18.079127531457644 + ] + }, + "properties": { + "id": "meter-3492", + "maker": "Maker E", + "model": "Model 3492", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94713556758593, + 17.55072547968972 + ] + }, + "properties": { + "id": "meter-3493", + "maker": "Maker B", + "model": "Model 3493", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99465996978406, + 26.42429809818591 + ] + }, + "properties": { + "id": "meter-3494", + "maker": "Maker B", + "model": "Model 3494", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.096449640207865, + 17.49860776031716 + ] + }, + "properties": { + "id": "meter-3495", + "maker": "Maker H", + "model": "Model 3495", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.19338723628948, + 24.021140264482582 + ] + }, + "properties": { + "id": "meter-3496", + "maker": "Maker G", + "model": "Model 3496", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88853615402879, + 21.37922971096838 + ] + }, + "properties": { + "id": "meter-3497", + "maker": "Maker G", + "model": "Model 3497", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.166903346918815, + 29.956303602394005 + ] + }, + "properties": { + "id": "meter-3498", + "maker": "Maker E", + "model": "Model 3498", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.238796088847785, + 19.823583243836175 + ] + }, + "properties": { + "id": "meter-3499", + "maker": "Maker I", + "model": "Model 3499", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20878023490395, + 26.280879433152275 + ] + }, + "properties": { + "id": "meter-3500", + "maker": "Maker A", + "model": "Model 3500", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.640340374640516, + 18.112139683311813 + ] + }, + "properties": { + "id": "meter-3501", + "maker": "Maker F", + "model": "Model 3501", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.27428012292687, + 29.791977358149314 + ] + }, + "properties": { + "id": "meter-3502", + "maker": "Maker A", + "model": "Model 3502", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58639003387223, + 25.33945180903382 + ] + }, + "properties": { + "id": "meter-3503", + "maker": "Maker D", + "model": "Model 3503", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.7314614694454, + 18.32028450628399 + ] + }, + "properties": { + "id": "meter-3504", + "maker": "Maker C", + "model": "Model 3504", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.321800822931394, + 17.578345469216217 + ] + }, + "properties": { + "id": "meter-3505", + "maker": "Maker I", + "model": "Model 3505", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.08523832047566, + 31.134602946715447 + ] + }, + "properties": { + "id": "meter-3506", + "maker": "Maker B", + "model": "Model 3506", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.34970585906455, + 18.14500826609746 + ] + }, + "properties": { + "id": "meter-3507", + "maker": "Maker E", + "model": "Model 3507", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.060725154963635, + 26.266009905262848 + ] + }, + "properties": { + "id": "meter-3508", + "maker": "Maker D", + "model": "Model 3508", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.64820713072417, + 27.544607496261417 + ] + }, + "properties": { + "id": "meter-3509", + "maker": "Maker G", + "model": "Model 3509", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.842219074683506, + 17.49477106413023 + ] + }, + "properties": { + "id": "meter-3510", + "maker": "Maker E", + "model": "Model 3510", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60196979210644, + 24.55080466586565 + ] + }, + "properties": { + "id": "meter-3511", + "maker": "Maker D", + "model": "Model 3511", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.870475645968156, + 21.52360889110916 + ] + }, + "properties": { + "id": "meter-3512", + "maker": "Maker I", + "model": "Model 3512", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98503261320511, + 26.52388235016476 + ] + }, + "properties": { + "id": "meter-3513", + "maker": "Maker B", + "model": "Model 3513", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.72428534506708, + 27.42783180151576 + ] + }, + "properties": { + "id": "meter-3514", + "maker": "Maker J", + "model": "Model 3514", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.039340306415376, + 21.44119538864653 + ] + }, + "properties": { + "id": "meter-3515", + "maker": "Maker H", + "model": "Model 3515", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.031981470474676, + 26.475391918081307 + ] + }, + "properties": { + "id": "meter-3516", + "maker": "Maker J", + "model": "Model 3516", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.71080739953511, + 25.32587512108368 + ] + }, + "properties": { + "id": "meter-3517", + "maker": "Maker A", + "model": "Model 3517", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.930203030164414, + 18.150857304203885 + ] + }, + "properties": { + "id": "meter-3518", + "maker": "Maker B", + "model": "Model 3518", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.625042308889284, + 18.23228113297214 + ] + }, + "properties": { + "id": "meter-3519", + "maker": "Maker J", + "model": "Model 3519", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.062502431616316, + 26.343669353698218 + ] + }, + "properties": { + "id": "meter-3520", + "maker": "Maker I", + "model": "Model 3520", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.26315723832343, + 31.139347000401486 + ] + }, + "properties": { + "id": "meter-3521", + "maker": "Maker B", + "model": "Model 3521", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.48924348774539, + 24.710321851607404 + ] + }, + "properties": { + "id": "meter-3522", + "maker": "Maker C", + "model": "Model 3522", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.18281232897478, + 30.725703896966422 + ] + }, + "properties": { + "id": "meter-3523", + "maker": "Maker C", + "model": "Model 3523", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.64141467522728, + 24.65152646573327 + ] + }, + "properties": { + "id": "meter-3524", + "maker": "Maker J", + "model": "Model 3524", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.50238826402127, + 20.01815362585167 + ] + }, + "properties": { + "id": "meter-3525", + "maker": "Maker J", + "model": "Model 3525", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.82156330545634, + 28.52322523650659 + ] + }, + "properties": { + "id": "meter-3526", + "maker": "Maker A", + "model": "Model 3526", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.976626407303144, + 26.33140565556584 + ] + }, + "properties": { + "id": "meter-3527", + "maker": "Maker B", + "model": "Model 3527", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03836130070472, + 30.690425176186213 + ] + }, + "properties": { + "id": "meter-3528", + "maker": "Maker H", + "model": "Model 3528", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14604493002863, + 17.496369621878628 + ] + }, + "properties": { + "id": "meter-3529", + "maker": "Maker G", + "model": "Model 3529", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.18640432484547, + 30.02556600245215 + ] + }, + "properties": { + "id": "meter-3530", + "maker": "Maker F", + "model": "Model 3530", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.87388965618793, + 26.510941145733398 + ] + }, + "properties": { + "id": "meter-3531", + "maker": "Maker C", + "model": "Model 3531", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51180738176287, + 28.46892667758974 + ] + }, + "properties": { + "id": "meter-3532", + "maker": "Maker I", + "model": "Model 3532", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.629611891473836, + 24.46215954792775 + ] + }, + "properties": { + "id": "meter-3533", + "maker": "Maker I", + "model": "Model 3533", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.65444477878071, + 28.48764976483882 + ] + }, + "properties": { + "id": "meter-3534", + "maker": "Maker E", + "model": "Model 3534", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.582781676565, + 18.228723751647028 + ] + }, + "properties": { + "id": "meter-3535", + "maker": "Maker J", + "model": "Model 3535", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.31193223156017, + 21.73328068341807 + ] + }, + "properties": { + "id": "meter-3536", + "maker": "Maker C", + "model": "Model 3536", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.540968460503706, + 18.25917377021621 + ] + }, + "properties": { + "id": "meter-3537", + "maker": "Maker A", + "model": "Model 3537", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.950744118567236, + 30.883600523005626 + ] + }, + "properties": { + "id": "meter-3538", + "maker": "Maker C", + "model": "Model 3538", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.73269845327683, + 25.42812981452532 + ] + }, + "properties": { + "id": "meter-3539", + "maker": "Maker C", + "model": "Model 3539", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18055703409737, + 26.289489186296542 + ] + }, + "properties": { + "id": "meter-3540", + "maker": "Maker I", + "model": "Model 3540", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.97110360496942, + 31.182553181825455 + ] + }, + "properties": { + "id": "meter-3541", + "maker": "Maker F", + "model": "Model 3541", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.037686629721485, + 30.975680337251166 + ] + }, + "properties": { + "id": "meter-3542", + "maker": "Maker I", + "model": "Model 3542", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.61572554038576, + 25.3447030039429 + ] + }, + "properties": { + "id": "meter-3543", + "maker": "Maker H", + "model": "Model 3543", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.189314180073644, + 26.362286876129694 + ] + }, + "properties": { + "id": "meter-3544", + "maker": "Maker G", + "model": "Model 3544", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04028903841533, + 24.09036017870044 + ] + }, + "properties": { + "id": "meter-3545", + "maker": "Maker G", + "model": "Model 3545", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.7538911573711, + 26.266791174847974 + ] + }, + "properties": { + "id": "meter-3546", + "maker": "Maker B", + "model": "Model 3546", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.03356289945234, + 21.17272902051947 + ] + }, + "properties": { + "id": "meter-3547", + "maker": "Maker E", + "model": "Model 3547", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04864178780157, + 24.174027037449218 + ] + }, + "properties": { + "id": "meter-3548", + "maker": "Maker C", + "model": "Model 3548", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67047229571739, + 24.455593037326647 + ] + }, + "properties": { + "id": "meter-3549", + "maker": "Maker H", + "model": "Model 3549", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.818894606595904, + 30.77608159524112 + ] + }, + "properties": { + "id": "meter-3550", + "maker": "Maker D", + "model": "Model 3550", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.64475745747497, + 18.440735844706932 + ] + }, + "properties": { + "id": "meter-3551", + "maker": "Maker D", + "model": "Model 3551", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.1199820337165, + 24.10773621350051 + ] + }, + "properties": { + "id": "meter-3552", + "maker": "Maker A", + "model": "Model 3552", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.825375006374074, + 18.156334345504998 + ] + }, + "properties": { + "id": "meter-3553", + "maker": "Maker E", + "model": "Model 3553", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.73334818643564, + 27.48155362980752 + ] + }, + "properties": { + "id": "meter-3554", + "maker": "Maker D", + "model": "Model 3554", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.47864533941638, + 24.27934965962582 + ] + }, + "properties": { + "id": "meter-3555", + "maker": "Maker C", + "model": "Model 3555", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.57725363956828, + 28.10769236764473 + ] + }, + "properties": { + "id": "meter-3556", + "maker": "Maker D", + "model": "Model 3556", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.448135430228085, + 18.460912440679646 + ] + }, + "properties": { + "id": "meter-3557", + "maker": "Maker D", + "model": "Model 3557", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.976272993332984, + 26.223726854474386 + ] + }, + "properties": { + "id": "meter-3558", + "maker": "Maker D", + "model": "Model 3558", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98880736099916, + 26.48344035162009 + ] + }, + "properties": { + "id": "meter-3559", + "maker": "Maker J", + "model": "Model 3559", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.56387390777024, + 18.4954991279784 + ] + }, + "properties": { + "id": "meter-3560", + "maker": "Maker D", + "model": "Model 3560", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.9436061484074, + 24.69364966008348 + ] + }, + "properties": { + "id": "meter-3561", + "maker": "Maker D", + "model": "Model 3561", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72485542388764, + 18.37949287301542 + ] + }, + "properties": { + "id": "meter-3562", + "maker": "Maker D", + "model": "Model 3562", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.013404824833955, + 26.393216159682048 + ] + }, + "properties": { + "id": "meter-3563", + "maker": "Maker D", + "model": "Model 3563", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42473503654568, + 27.64376718796606 + ] + }, + "properties": { + "id": "meter-3564", + "maker": "Maker A", + "model": "Model 3564", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.81258012138609, + 18.554476707501365 + ] + }, + "properties": { + "id": "meter-3565", + "maker": "Maker H", + "model": "Model 3565", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.105734667887624, + 17.49201553466556 + ] + }, + "properties": { + "id": "meter-3566", + "maker": "Maker E", + "model": "Model 3566", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.69813264568871, + 21.273723035199623 + ] + }, + "properties": { + "id": "meter-3567", + "maker": "Maker A", + "model": "Model 3567", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02039935307268, + 26.38409412541254 + ] + }, + "properties": { + "id": "meter-3568", + "maker": "Maker J", + "model": "Model 3568", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97826705313029, + 26.320647047601106 + ] + }, + "properties": { + "id": "meter-3569", + "maker": "Maker D", + "model": "Model 3569", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.2469884198701, + 30.213679472901603 + ] + }, + "properties": { + "id": "meter-3570", + "maker": "Maker B", + "model": "Model 3570", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.70036135308537, + 24.66300201193924 + ] + }, + "properties": { + "id": "meter-3571", + "maker": "Maker C", + "model": "Model 3571", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.172674825312626, + 29.980603788599026 + ] + }, + "properties": { + "id": "meter-3572", + "maker": "Maker D", + "model": "Model 3572", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91888374031921, + 26.318086966452608 + ] + }, + "properties": { + "id": "meter-3573", + "maker": "Maker J", + "model": "Model 3573", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99488072819434, + 26.41733191329224 + ] + }, + "properties": { + "id": "meter-3574", + "maker": "Maker I", + "model": "Model 3574", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.83055545869995, + 25.50394772698893 + ] + }, + "properties": { + "id": "meter-3575", + "maker": "Maker A", + "model": "Model 3575", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.08876492661454, + 29.997964159239988 + ] + }, + "properties": { + "id": "meter-3576", + "maker": "Maker C", + "model": "Model 3576", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.35999452472933, + 18.255568414799335 + ] + }, + "properties": { + "id": "meter-3577", + "maker": "Maker J", + "model": "Model 3577", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21849737945013, + 29.979997298946586 + ] + }, + "properties": { + "id": "meter-3578", + "maker": "Maker G", + "model": "Model 3578", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.306449475888144, + 21.756682116559666 + ] + }, + "properties": { + "id": "meter-3579", + "maker": "Maker E", + "model": "Model 3579", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08774772147338, + 26.42029541028828 + ] + }, + "properties": { + "id": "meter-3580", + "maker": "Maker J", + "model": "Model 3580", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.190861293442644, + 26.314120238318882 + ] + }, + "properties": { + "id": "meter-3581", + "maker": "Maker I", + "model": "Model 3581", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.953549417806435, + 26.726571563359116 + ] + }, + "properties": { + "id": "meter-3582", + "maker": "Maker D", + "model": "Model 3582", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.726412431771344, + 24.64264513088384 + ] + }, + "properties": { + "id": "meter-3583", + "maker": "Maker E", + "model": "Model 3583", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.685488672389084, + 24.71339260597811 + ] + }, + "properties": { + "id": "meter-3584", + "maker": "Maker C", + "model": "Model 3584", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.044071889334035, + 26.41788252006801 + ] + }, + "properties": { + "id": "meter-3585", + "maker": "Maker J", + "model": "Model 3585", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19190142929344, + 26.26151230535186 + ] + }, + "properties": { + "id": "meter-3586", + "maker": "Maker G", + "model": "Model 3586", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.777089314988906, + 21.332946297462758 + ] + }, + "properties": { + "id": "meter-3587", + "maker": "Maker D", + "model": "Model 3587", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17129145476011, + 26.231600628602028 + ] + }, + "properties": { + "id": "meter-3588", + "maker": "Maker E", + "model": "Model 3588", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.769813612349495, + 28.548610748808017 + ] + }, + "properties": { + "id": "meter-3589", + "maker": "Maker D", + "model": "Model 3589", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.567242011982664, + 20.210726961404124 + ] + }, + "properties": { + "id": "meter-3590", + "maker": "Maker F", + "model": "Model 3590", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.61158556539539, + 25.324264261857557 + ] + }, + "properties": { + "id": "meter-3591", + "maker": "Maker H", + "model": "Model 3591", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.63241581543138, + 25.26423741637272 + ] + }, + "properties": { + "id": "meter-3592", + "maker": "Maker H", + "model": "Model 3592", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51873472540932, + 28.374479526708505 + ] + }, + "properties": { + "id": "meter-3593", + "maker": "Maker I", + "model": "Model 3593", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.41244618150343, + 28.55166922306917 + ] + }, + "properties": { + "id": "meter-3594", + "maker": "Maker C", + "model": "Model 3594", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.4072061516938, + 25.539589130507753 + ] + }, + "properties": { + "id": "meter-3595", + "maker": "Maker D", + "model": "Model 3595", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.03599594404836, + 24.1008075413628 + ] + }, + "properties": { + "id": "meter-3596", + "maker": "Maker D", + "model": "Model 3596", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.70898549371702, + 24.542401235652154 + ] + }, + "properties": { + "id": "meter-3597", + "maker": "Maker A", + "model": "Model 3597", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.366051046582534, + 18.353890071592037 + ] + }, + "properties": { + "id": "meter-3598", + "maker": "Maker C", + "model": "Model 3598", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.24217840590113, + 30.867362616029567 + ] + }, + "properties": { + "id": "meter-3599", + "maker": "Maker B", + "model": "Model 3599", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.62531522093536, + 25.119288185474815 + ] + }, + "properties": { + "id": "meter-3600", + "maker": "Maker E", + "model": "Model 3600", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.918119732239425, + 30.00228722861584 + ] + }, + "properties": { + "id": "meter-3601", + "maker": "Maker C", + "model": "Model 3601", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.067864153484535, + 26.236157123888866 + ] + }, + "properties": { + "id": "meter-3602", + "maker": "Maker A", + "model": "Model 3602", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.26399367309068, + 24.18848917884382 + ] + }, + "properties": { + "id": "meter-3603", + "maker": "Maker H", + "model": "Model 3603", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.37811131675188, + 21.602440833401108 + ] + }, + "properties": { + "id": "meter-3604", + "maker": "Maker C", + "model": "Model 3604", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.915998525524074, + 18.36811932865675 + ] + }, + "properties": { + "id": "meter-3605", + "maker": "Maker G", + "model": "Model 3605", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.64926325581209, + 18.275068931667164 + ] + }, + "properties": { + "id": "meter-3606", + "maker": "Maker I", + "model": "Model 3606", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.052240966356344, + 26.321857809406822 + ] + }, + "properties": { + "id": "meter-3607", + "maker": "Maker H", + "model": "Model 3607", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.96041973301706, + 31.094203572026835 + ] + }, + "properties": { + "id": "meter-3608", + "maker": "Maker F", + "model": "Model 3608", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.978125948204806, + 26.4216716107504 + ] + }, + "properties": { + "id": "meter-3609", + "maker": "Maker I", + "model": "Model 3609", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.980157036264714, + 26.57986499668896 + ] + }, + "properties": { + "id": "meter-3610", + "maker": "Maker D", + "model": "Model 3610", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11279083599237, + 17.374291715659034 + ] + }, + "properties": { + "id": "meter-3611", + "maker": "Maker C", + "model": "Model 3611", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.616066073267454, + 28.222885787093993 + ] + }, + "properties": { + "id": "meter-3612", + "maker": "Maker E", + "model": "Model 3612", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.49351693342611, + 27.589921500398408 + ] + }, + "properties": { + "id": "meter-3613", + "maker": "Maker B", + "model": "Model 3613", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.061278335979786, + 24.090274972215813 + ] + }, + "properties": { + "id": "meter-3614", + "maker": "Maker G", + "model": "Model 3614", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.74405402076075, + 27.466177410981704 + ] + }, + "properties": { + "id": "meter-3615", + "maker": "Maker B", + "model": "Model 3615", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.254941162235355, + 24.170562455232176 + ] + }, + "properties": { + "id": "meter-3616", + "maker": "Maker I", + "model": "Model 3616", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.475080458587904, + 21.636680931430938 + ] + }, + "properties": { + "id": "meter-3617", + "maker": "Maker H", + "model": "Model 3617", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.41541379140598, + 27.44578388830887 + ] + }, + "properties": { + "id": "meter-3618", + "maker": "Maker A", + "model": "Model 3618", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.07750109555927, + 29.8826668983938 + ] + }, + "properties": { + "id": "meter-3619", + "maker": "Maker A", + "model": "Model 3619", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0519919597202, + 26.21644529877072 + ] + }, + "properties": { + "id": "meter-3620", + "maker": "Maker C", + "model": "Model 3620", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.051466264547635, + 26.45668326193737 + ] + }, + "properties": { + "id": "meter-3621", + "maker": "Maker D", + "model": "Model 3621", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.797758611957796, + 26.155446648656596 + ] + }, + "properties": { + "id": "meter-3622", + "maker": "Maker J", + "model": "Model 3622", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.522362349328226, + 18.223006091719405 + ] + }, + "properties": { + "id": "meter-3623", + "maker": "Maker C", + "model": "Model 3623", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.34455712074384, + 18.132279731981132 + ] + }, + "properties": { + "id": "meter-3624", + "maker": "Maker F", + "model": "Model 3624", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.16416279627904, + 29.8730803405708 + ] + }, + "properties": { + "id": "meter-3625", + "maker": "Maker G", + "model": "Model 3625", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.050570664565036, + 26.414236475382392 + ] + }, + "properties": { + "id": "meter-3626", + "maker": "Maker B", + "model": "Model 3626", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.99037364258278, + 31.039299489382095 + ] + }, + "properties": { + "id": "meter-3627", + "maker": "Maker J", + "model": "Model 3627", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.142872600990984, + 17.677137386719426 + ] + }, + "properties": { + "id": "meter-3628", + "maker": "Maker G", + "model": "Model 3628", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.6055439534196, + 28.48061694284318 + ] + }, + "properties": { + "id": "meter-3629", + "maker": "Maker F", + "model": "Model 3629", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.57494957706187, + 18.117199310263487 + ] + }, + "properties": { + "id": "meter-3630", + "maker": "Maker I", + "model": "Model 3630", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.670350048829555, + 25.25940883203693 + ] + }, + "properties": { + "id": "meter-3631", + "maker": "Maker D", + "model": "Model 3631", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.004360937627375, + 26.325241207099747 + ] + }, + "properties": { + "id": "meter-3632", + "maker": "Maker C", + "model": "Model 3632", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.317882865502945, + 24.096515135555016 + ] + }, + "properties": { + "id": "meter-3633", + "maker": "Maker H", + "model": "Model 3633", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.43338704182874, + 29.818516684417308 + ] + }, + "properties": { + "id": "meter-3634", + "maker": "Maker H", + "model": "Model 3634", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.08380284331068, + 29.896191383617527 + ] + }, + "properties": { + "id": "meter-3635", + "maker": "Maker H", + "model": "Model 3635", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.2411565683897, + 19.964094084887957 + ] + }, + "properties": { + "id": "meter-3636", + "maker": "Maker F", + "model": "Model 3636", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.99842007076886, + 24.25800365436121 + ] + }, + "properties": { + "id": "meter-3637", + "maker": "Maker D", + "model": "Model 3637", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.28372493743546, + 30.17750583837533 + ] + }, + "properties": { + "id": "meter-3638", + "maker": "Maker G", + "model": "Model 3638", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.574839794033586, + 25.261910985051237 + ] + }, + "properties": { + "id": "meter-3639", + "maker": "Maker B", + "model": "Model 3639", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97406065249391, + 26.45422183278496 + ] + }, + "properties": { + "id": "meter-3640", + "maker": "Maker A", + "model": "Model 3640", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09832089661699, + 24.07766371145675 + ] + }, + "properties": { + "id": "meter-3641", + "maker": "Maker B", + "model": "Model 3641", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.2853592193518, + 19.926598413876718 + ] + }, + "properties": { + "id": "meter-3642", + "maker": "Maker F", + "model": "Model 3642", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.004454349108535, + 24.221397034872545 + ] + }, + "properties": { + "id": "meter-3643", + "maker": "Maker D", + "model": "Model 3643", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.726229688624166, + 24.31660005274225 + ] + }, + "properties": { + "id": "meter-3644", + "maker": "Maker G", + "model": "Model 3644", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.28990714861608, + 30.12354647011652 + ] + }, + "properties": { + "id": "meter-3645", + "maker": "Maker A", + "model": "Model 3645", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20964724680094, + 26.331899581447495 + ] + }, + "properties": { + "id": "meter-3646", + "maker": "Maker F", + "model": "Model 3646", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.33378258493215, + 20.114400431175078 + ] + }, + "properties": { + "id": "meter-3647", + "maker": "Maker B", + "model": "Model 3647", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55792033113514, + 27.358060378633244 + ] + }, + "properties": { + "id": "meter-3648", + "maker": "Maker I", + "model": "Model 3648", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68273670192296, + 24.70570181291643 + ] + }, + "properties": { + "id": "meter-3649", + "maker": "Maker G", + "model": "Model 3649", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.70478088992608, + 18.332676345533432 + ] + }, + "properties": { + "id": "meter-3650", + "maker": "Maker F", + "model": "Model 3650", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.327734943568245, + 17.700308200652277 + ] + }, + "properties": { + "id": "meter-3651", + "maker": "Maker H", + "model": "Model 3651", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.75415140885379, + 25.236417639324177 + ] + }, + "properties": { + "id": "meter-3652", + "maker": "Maker H", + "model": "Model 3652", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20212445727178, + 26.30430376574349 + ] + }, + "properties": { + "id": "meter-3653", + "maker": "Maker A", + "model": "Model 3653", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13026748730137, + 26.37022277901996 + ] + }, + "properties": { + "id": "meter-3654", + "maker": "Maker A", + "model": "Model 3654", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.83463105710167, + 24.28287580525806 + ] + }, + "properties": { + "id": "meter-3655", + "maker": "Maker I", + "model": "Model 3655", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.03242912317272, + 21.381629760047197 + ] + }, + "properties": { + "id": "meter-3656", + "maker": "Maker F", + "model": "Model 3656", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.979221447929724, + 26.326104525743027 + ] + }, + "properties": { + "id": "meter-3657", + "maker": "Maker A", + "model": "Model 3657", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.61427082702625, + 25.28728753458997 + ] + }, + "properties": { + "id": "meter-3658", + "maker": "Maker C", + "model": "Model 3658", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09832962645019, + 26.182084450747066 + ] + }, + "properties": { + "id": "meter-3659", + "maker": "Maker B", + "model": "Model 3659", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.15668576287544, + 24.274674426197997 + ] + }, + "properties": { + "id": "meter-3660", + "maker": "Maker D", + "model": "Model 3660", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.71443769200555, + 21.351238045307632 + ] + }, + "properties": { + "id": "meter-3661", + "maker": "Maker I", + "model": "Model 3661", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.776394850045186, + 24.821106830698923 + ] + }, + "properties": { + "id": "meter-3662", + "maker": "Maker F", + "model": "Model 3662", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.207908335817145, + 17.580765842299748 + ] + }, + "properties": { + "id": "meter-3663", + "maker": "Maker G", + "model": "Model 3663", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.869277551680504, + 28.465224722200066 + ] + }, + "properties": { + "id": "meter-3664", + "maker": "Maker C", + "model": "Model 3664", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.3663206211361, + 18.168653766631287 + ] + }, + "properties": { + "id": "meter-3665", + "maker": "Maker G", + "model": "Model 3665", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.34093528451704, + 18.19512538981945 + ] + }, + "properties": { + "id": "meter-3666", + "maker": "Maker D", + "model": "Model 3666", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.457228619646486, + 25.46148642114377 + ] + }, + "properties": { + "id": "meter-3667", + "maker": "Maker J", + "model": "Model 3667", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.567058371499066, + 24.415312804607343 + ] + }, + "properties": { + "id": "meter-3668", + "maker": "Maker C", + "model": "Model 3668", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.40811397712606, + 20.04898258363065 + ] + }, + "properties": { + "id": "meter-3669", + "maker": "Maker I", + "model": "Model 3669", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.574388495738916, + 25.32693392454552 + ] + }, + "properties": { + "id": "meter-3670", + "maker": "Maker C", + "model": "Model 3670", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.10671013749328, + 29.83060605529067 + ] + }, + "properties": { + "id": "meter-3671", + "maker": "Maker D", + "model": "Model 3671", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18032296679715, + 26.26450972609595 + ] + }, + "properties": { + "id": "meter-3672", + "maker": "Maker B", + "model": "Model 3672", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.20083772115629, + 17.74788224982023 + ] + }, + "properties": { + "id": "meter-3673", + "maker": "Maker F", + "model": "Model 3673", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77180335265975, + 21.46032059872237 + ] + }, + "properties": { + "id": "meter-3674", + "maker": "Maker E", + "model": "Model 3674", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.763024013760436, + 26.294112785528252 + ] + }, + "properties": { + "id": "meter-3675", + "maker": "Maker E", + "model": "Model 3675", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.31165241636816, + 17.68292909169146 + ] + }, + "properties": { + "id": "meter-3676", + "maker": "Maker J", + "model": "Model 3676", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.574741968123725, + 27.24475237582433 + ] + }, + "properties": { + "id": "meter-3677", + "maker": "Maker F", + "model": "Model 3677", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.041940239930014, + 26.420134793330213 + ] + }, + "properties": { + "id": "meter-3678", + "maker": "Maker G", + "model": "Model 3678", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.89399578856207, + 24.32583015724811 + ] + }, + "properties": { + "id": "meter-3679", + "maker": "Maker H", + "model": "Model 3679", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11791692096921, + 26.1112545560579 + ] + }, + "properties": { + "id": "meter-3680", + "maker": "Maker C", + "model": "Model 3680", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.047683209030495, + 26.257893560004867 + ] + }, + "properties": { + "id": "meter-3681", + "maker": "Maker E", + "model": "Model 3681", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.12452417122147, + 24.1598236039328 + ] + }, + "properties": { + "id": "meter-3682", + "maker": "Maker C", + "model": "Model 3682", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.031755746889495, + 26.222694019027664 + ] + }, + "properties": { + "id": "meter-3683", + "maker": "Maker C", + "model": "Model 3683", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.74681246777085, + 30.96899946893865 + ] + }, + "properties": { + "id": "meter-3684", + "maker": "Maker D", + "model": "Model 3684", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.543250298463775, + 18.25487127353786 + ] + }, + "properties": { + "id": "meter-3685", + "maker": "Maker A", + "model": "Model 3685", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.77185491542385, + 18.22900469383153 + ] + }, + "properties": { + "id": "meter-3686", + "maker": "Maker J", + "model": "Model 3686", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59245465508806, + 25.382843863548423 + ] + }, + "properties": { + "id": "meter-3687", + "maker": "Maker F", + "model": "Model 3687", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11393442838828, + 26.296968926697254 + ] + }, + "properties": { + "id": "meter-3688", + "maker": "Maker I", + "model": "Model 3688", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.163091358520084, + 26.250267558049945 + ] + }, + "properties": { + "id": "meter-3689", + "maker": "Maker B", + "model": "Model 3689", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91537243929459, + 26.615309515956373 + ] + }, + "properties": { + "id": "meter-3690", + "maker": "Maker B", + "model": "Model 3690", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.579564050166816, + 20.060646632796097 + ] + }, + "properties": { + "id": "meter-3691", + "maker": "Maker H", + "model": "Model 3691", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.869643464548105, + 27.343869231522092 + ] + }, + "properties": { + "id": "meter-3692", + "maker": "Maker E", + "model": "Model 3692", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.3293003440884, + 29.950960474169406 + ] + }, + "properties": { + "id": "meter-3693", + "maker": "Maker H", + "model": "Model 3693", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.04139078461358, + 26.435742295452826 + ] + }, + "properties": { + "id": "meter-3694", + "maker": "Maker F", + "model": "Model 3694", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.55824825265517, + 25.27539484722713 + ] + }, + "properties": { + "id": "meter-3695", + "maker": "Maker C", + "model": "Model 3695", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00728704926303, + 26.46386652744385 + ] + }, + "properties": { + "id": "meter-3696", + "maker": "Maker H", + "model": "Model 3696", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9301053820899, + 26.270233920542065 + ] + }, + "properties": { + "id": "meter-3697", + "maker": "Maker C", + "model": "Model 3697", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73867483234198, + 18.6017665521213 + ] + }, + "properties": { + "id": "meter-3698", + "maker": "Maker A", + "model": "Model 3698", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.99248468986119, + 30.959709250359534 + ] + }, + "properties": { + "id": "meter-3699", + "maker": "Maker C", + "model": "Model 3699", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.009460365576516, + 26.48172600810657 + ] + }, + "properties": { + "id": "meter-3700", + "maker": "Maker B", + "model": "Model 3700", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17222466073477, + 26.224996565273912 + ] + }, + "properties": { + "id": "meter-3701", + "maker": "Maker B", + "model": "Model 3701", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65809056612156, + 24.694646109121418 + ] + }, + "properties": { + "id": "meter-3702", + "maker": "Maker I", + "model": "Model 3702", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.440008698813166, + 25.602734830983312 + ] + }, + "properties": { + "id": "meter-3703", + "maker": "Maker F", + "model": "Model 3703", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.82267348416636, + 26.629774245810268 + ] + }, + "properties": { + "id": "meter-3704", + "maker": "Maker H", + "model": "Model 3704", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.48656959801377, + 28.506331363116345 + ] + }, + "properties": { + "id": "meter-3705", + "maker": "Maker F", + "model": "Model 3705", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.817869906426736, + 26.283243400519883 + ] + }, + "properties": { + "id": "meter-3706", + "maker": "Maker C", + "model": "Model 3706", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.172796509418966, + 21.39023654604907 + ] + }, + "properties": { + "id": "meter-3707", + "maker": "Maker F", + "model": "Model 3707", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.93522776489725, + 27.364121866865382 + ] + }, + "properties": { + "id": "meter-3708", + "maker": "Maker A", + "model": "Model 3708", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.04943263189933, + 26.324685937572937 + ] + }, + "properties": { + "id": "meter-3709", + "maker": "Maker C", + "model": "Model 3709", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.373380864216365, + 25.451918817099962 + ] + }, + "properties": { + "id": "meter-3710", + "maker": "Maker D", + "model": "Model 3710", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.85329471510969, + 24.244576513860604 + ] + }, + "properties": { + "id": "meter-3711", + "maker": "Maker F", + "model": "Model 3711", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.655047638738544, + 20.19417348739276 + ] + }, + "properties": { + "id": "meter-3712", + "maker": "Maker F", + "model": "Model 3712", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87315578690113, + 26.479429789526588 + ] + }, + "properties": { + "id": "meter-3713", + "maker": "Maker J", + "model": "Model 3713", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73265504916966, + 18.31079520641746 + ] + }, + "properties": { + "id": "meter-3714", + "maker": "Maker A", + "model": "Model 3714", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.706864142492506, + 24.557501379317884 + ] + }, + "properties": { + "id": "meter-3715", + "maker": "Maker C", + "model": "Model 3715", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.75350084986885, + 26.168071581750034 + ] + }, + "properties": { + "id": "meter-3716", + "maker": "Maker I", + "model": "Model 3716", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.43840937933224, + 25.355606806770574 + ] + }, + "properties": { + "id": "meter-3717", + "maker": "Maker F", + "model": "Model 3717", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.93400946619409, + 18.12488582406082 + ] + }, + "properties": { + "id": "meter-3718", + "maker": "Maker J", + "model": "Model 3718", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.55692522190729, + 24.79891152403604 + ] + }, + "properties": { + "id": "meter-3719", + "maker": "Maker D", + "model": "Model 3719", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0724912534138, + 26.413756655772897 + ] + }, + "properties": { + "id": "meter-3720", + "maker": "Maker B", + "model": "Model 3720", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.123388505080044, + 17.483981670611595 + ] + }, + "properties": { + "id": "meter-3721", + "maker": "Maker C", + "model": "Model 3721", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.952990174484086, + 26.608059741054678 + ] + }, + "properties": { + "id": "meter-3722", + "maker": "Maker E", + "model": "Model 3722", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.64710996267914, + 24.766878280830387 + ] + }, + "properties": { + "id": "meter-3723", + "maker": "Maker A", + "model": "Model 3723", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.30655422506045, + 23.947231271128093 + ] + }, + "properties": { + "id": "meter-3724", + "maker": "Maker I", + "model": "Model 3724", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.376524838114214, + 19.950859753416758 + ] + }, + "properties": { + "id": "meter-3725", + "maker": "Maker H", + "model": "Model 3725", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86559904832962, + 21.33785835482779 + ] + }, + "properties": { + "id": "meter-3726", + "maker": "Maker A", + "model": "Model 3726", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12330873305064, + 26.269923305197093 + ] + }, + "properties": { + "id": "meter-3727", + "maker": "Maker G", + "model": "Model 3727", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.621582381518415, + 28.530897264737 + ] + }, + "properties": { + "id": "meter-3728", + "maker": "Maker B", + "model": "Model 3728", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.7289496684061, + 27.515638643405673 + ] + }, + "properties": { + "id": "meter-3729", + "maker": "Maker A", + "model": "Model 3729", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.46343312968565, + 18.240251682436227 + ] + }, + "properties": { + "id": "meter-3730", + "maker": "Maker B", + "model": "Model 3730", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21578551139315, + 21.46803340549294 + ] + }, + "properties": { + "id": "meter-3731", + "maker": "Maker H", + "model": "Model 3731", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89797085642306, + 24.54720487151684 + ] + }, + "properties": { + "id": "meter-3732", + "maker": "Maker B", + "model": "Model 3732", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07135343717407, + 24.10259832450647 + ] + }, + "properties": { + "id": "meter-3733", + "maker": "Maker H", + "model": "Model 3733", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.77879045312936, + 26.39299407037966 + ] + }, + "properties": { + "id": "meter-3734", + "maker": "Maker D", + "model": "Model 3734", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94174479677897, + 26.543207247607402 + ] + }, + "properties": { + "id": "meter-3735", + "maker": "Maker E", + "model": "Model 3735", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.69595055915113, + 21.334958386675424 + ] + }, + "properties": { + "id": "meter-3736", + "maker": "Maker C", + "model": "Model 3736", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.30351986132746, + 30.946870569717547 + ] + }, + "properties": { + "id": "meter-3737", + "maker": "Maker I", + "model": "Model 3737", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.4187057385403, + 25.394339791211138 + ] + }, + "properties": { + "id": "meter-3738", + "maker": "Maker I", + "model": "Model 3738", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.39531555592404, + 19.85558907136055 + ] + }, + "properties": { + "id": "meter-3739", + "maker": "Maker D", + "model": "Model 3739", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92768317384758, + 17.345154093891807 + ] + }, + "properties": { + "id": "meter-3740", + "maker": "Maker C", + "model": "Model 3740", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.31314813213291, + 29.999866736173065 + ] + }, + "properties": { + "id": "meter-3741", + "maker": "Maker J", + "model": "Model 3741", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.687063621374236, + 25.48413092670619 + ] + }, + "properties": { + "id": "meter-3742", + "maker": "Maker C", + "model": "Model 3742", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72117190142555, + 18.445601291676073 + ] + }, + "properties": { + "id": "meter-3743", + "maker": "Maker H", + "model": "Model 3743", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06948257286028, + 24.089127747032506 + ] + }, + "properties": { + "id": "meter-3744", + "maker": "Maker H", + "model": "Model 3744", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67494113865525, + 24.606477681699733 + ] + }, + "properties": { + "id": "meter-3745", + "maker": "Maker F", + "model": "Model 3745", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.40380716665211, + 19.935057673670794 + ] + }, + "properties": { + "id": "meter-3746", + "maker": "Maker I", + "model": "Model 3746", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.657007592406984, + 24.51863424292068 + ] + }, + "properties": { + "id": "meter-3747", + "maker": "Maker I", + "model": "Model 3747", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.16139324068431, + 29.951068453313113 + ] + }, + "properties": { + "id": "meter-3748", + "maker": "Maker B", + "model": "Model 3748", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.68629794503908, + 24.73626400744264 + ] + }, + "properties": { + "id": "meter-3749", + "maker": "Maker J", + "model": "Model 3749", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.83277558303708, + 26.114591196455976 + ] + }, + "properties": { + "id": "meter-3750", + "maker": "Maker A", + "model": "Model 3750", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00351261950239, + 26.512525652597187 + ] + }, + "properties": { + "id": "meter-3751", + "maker": "Maker I", + "model": "Model 3751", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02155454417634, + 17.60465566405188 + ] + }, + "properties": { + "id": "meter-3752", + "maker": "Maker B", + "model": "Model 3752", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.40520133625138, + 25.233853582798965 + ] + }, + "properties": { + "id": "meter-3753", + "maker": "Maker A", + "model": "Model 3753", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.438903855462826, + 21.620217110313515 + ] + }, + "properties": { + "id": "meter-3754", + "maker": "Maker C", + "model": "Model 3754", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11792827657318, + 26.135347989339316 + ] + }, + "properties": { + "id": "meter-3755", + "maker": "Maker E", + "model": "Model 3755", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.93237570040573, + 30.977812879896742 + ] + }, + "properties": { + "id": "meter-3756", + "maker": "Maker G", + "model": "Model 3756", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.286933788092306, + 17.705818076387818 + ] + }, + "properties": { + "id": "meter-3757", + "maker": "Maker I", + "model": "Model 3757", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.82618640985138, + 26.355899263901893 + ] + }, + "properties": { + "id": "meter-3758", + "maker": "Maker C", + "model": "Model 3758", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.47870897420647, + 30.078361387995017 + ] + }, + "properties": { + "id": "meter-3759", + "maker": "Maker H", + "model": "Model 3759", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.483052081741896, + 24.810591049788766 + ] + }, + "properties": { + "id": "meter-3760", + "maker": "Maker F", + "model": "Model 3760", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.517766552870626, + 19.925198517380927 + ] + }, + "properties": { + "id": "meter-3761", + "maker": "Maker H", + "model": "Model 3761", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.51169050808319, + 18.217748524200456 + ] + }, + "properties": { + "id": "meter-3762", + "maker": "Maker D", + "model": "Model 3762", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.0179795416535, + 31.003223268537333 + ] + }, + "properties": { + "id": "meter-3763", + "maker": "Maker E", + "model": "Model 3763", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.051199235646585, + 26.32652040802536 + ] + }, + "properties": { + "id": "meter-3764", + "maker": "Maker B", + "model": "Model 3764", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.123358334162056, + 26.309609894358164 + ] + }, + "properties": { + "id": "meter-3765", + "maker": "Maker A", + "model": "Model 3765", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19803512747656, + 26.280931369714896 + ] + }, + "properties": { + "id": "meter-3766", + "maker": "Maker H", + "model": "Model 3766", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.66571279626677, + 24.42015885870468 + ] + }, + "properties": { + "id": "meter-3767", + "maker": "Maker G", + "model": "Model 3767", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.526666374257125, + 18.178699197749907 + ] + }, + "properties": { + "id": "meter-3768", + "maker": "Maker A", + "model": "Model 3768", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13632870758981, + 17.54981799921926 + ] + }, + "properties": { + "id": "meter-3769", + "maker": "Maker F", + "model": "Model 3769", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.70107102149931, + 24.77743339251861 + ] + }, + "properties": { + "id": "meter-3770", + "maker": "Maker A", + "model": "Model 3770", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.68853635826629, + 25.353210025139468 + ] + }, + "properties": { + "id": "meter-3771", + "maker": "Maker C", + "model": "Model 3771", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.95965500371824, + 26.2874312732977 + ] + }, + "properties": { + "id": "meter-3772", + "maker": "Maker H", + "model": "Model 3772", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.348880557779275, + 20.172467137330262 + ] + }, + "properties": { + "id": "meter-3773", + "maker": "Maker J", + "model": "Model 3773", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.27296683188822, + 21.492792100935628 + ] + }, + "properties": { + "id": "meter-3774", + "maker": "Maker E", + "model": "Model 3774", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.22068096770884, + 21.678297468264827 + ] + }, + "properties": { + "id": "meter-3775", + "maker": "Maker I", + "model": "Model 3775", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.59902579526647, + 24.52438011607608 + ] + }, + "properties": { + "id": "meter-3776", + "maker": "Maker F", + "model": "Model 3776", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54558069459509, + 25.337724465861285 + ] + }, + "properties": { + "id": "meter-3777", + "maker": "Maker F", + "model": "Model 3777", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67949452391083, + 24.66504352572292 + ] + }, + "properties": { + "id": "meter-3778", + "maker": "Maker G", + "model": "Model 3778", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13209766001225, + 26.171708271696826 + ] + }, + "properties": { + "id": "meter-3779", + "maker": "Maker J", + "model": "Model 3779", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.659809230141754, + 21.580981011815727 + ] + }, + "properties": { + "id": "meter-3780", + "maker": "Maker D", + "model": "Model 3780", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.785769829874425, + 26.67978660239543 + ] + }, + "properties": { + "id": "meter-3781", + "maker": "Maker I", + "model": "Model 3781", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11513305696641, + 26.227668920035786 + ] + }, + "properties": { + "id": "meter-3782", + "maker": "Maker B", + "model": "Model 3782", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.30687065177596, + 25.423863109525236 + ] + }, + "properties": { + "id": "meter-3783", + "maker": "Maker C", + "model": "Model 3783", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.66357897921284, + 28.289137790182842 + ] + }, + "properties": { + "id": "meter-3784", + "maker": "Maker H", + "model": "Model 3784", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.584374086491096, + 25.347231647153034 + ] + }, + "properties": { + "id": "meter-3785", + "maker": "Maker B", + "model": "Model 3785", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.53305630218277, + 24.74367378927548 + ] + }, + "properties": { + "id": "meter-3786", + "maker": "Maker B", + "model": "Model 3786", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6726321859436, + 27.494112828442923 + ] + }, + "properties": { + "id": "meter-3787", + "maker": "Maker J", + "model": "Model 3787", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.54300994067245, + 20.101702778556565 + ] + }, + "properties": { + "id": "meter-3788", + "maker": "Maker C", + "model": "Model 3788", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.747612731594934, + 24.86450462293315 + ] + }, + "properties": { + "id": "meter-3789", + "maker": "Maker A", + "model": "Model 3789", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.115905708496214, + 17.431047541992864 + ] + }, + "properties": { + "id": "meter-3790", + "maker": "Maker E", + "model": "Model 3790", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.44681022371641, + 24.578348798597002 + ] + }, + "properties": { + "id": "meter-3791", + "maker": "Maker C", + "model": "Model 3791", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.567463810823554, + 25.257933756395122 + ] + }, + "properties": { + "id": "meter-3792", + "maker": "Maker G", + "model": "Model 3792", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49326389489678, + 18.269855167099905 + ] + }, + "properties": { + "id": "meter-3793", + "maker": "Maker J", + "model": "Model 3793", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.74546518905533, + 26.420463077461623 + ] + }, + "properties": { + "id": "meter-3794", + "maker": "Maker C", + "model": "Model 3794", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.84841303716999, + 26.54329211729764 + ] + }, + "properties": { + "id": "meter-3795", + "maker": "Maker D", + "model": "Model 3795", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.154370623764464, + 21.270214004079378 + ] + }, + "properties": { + "id": "meter-3796", + "maker": "Maker H", + "model": "Model 3796", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.10752389703572, + 24.048413507294832 + ] + }, + "properties": { + "id": "meter-3797", + "maker": "Maker F", + "model": "Model 3797", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.792917942890185, + 21.247986565174642 + ] + }, + "properties": { + "id": "meter-3798", + "maker": "Maker E", + "model": "Model 3798", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.272834817948144, + 30.85877752511341 + ] + }, + "properties": { + "id": "meter-3799", + "maker": "Maker B", + "model": "Model 3799", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.93206935325067, + 21.322500452774545 + ] + }, + "properties": { + "id": "meter-3800", + "maker": "Maker E", + "model": "Model 3800", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.130660290657495, + 26.28832885649619 + ] + }, + "properties": { + "id": "meter-3801", + "maker": "Maker J", + "model": "Model 3801", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.38599689350413, + 28.446376625035132 + ] + }, + "properties": { + "id": "meter-3802", + "maker": "Maker D", + "model": "Model 3802", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58687662751812, + 25.35947007871784 + ] + }, + "properties": { + "id": "meter-3803", + "maker": "Maker C", + "model": "Model 3803", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13772291842207, + 26.42083150814384 + ] + }, + "properties": { + "id": "meter-3804", + "maker": "Maker F", + "model": "Model 3804", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.182619695165016, + 26.23255580503828 + ] + }, + "properties": { + "id": "meter-3805", + "maker": "Maker J", + "model": "Model 3805", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20831045217313, + 26.267296654504037 + ] + }, + "properties": { + "id": "meter-3806", + "maker": "Maker E", + "model": "Model 3806", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.89452348381934, + 26.475149600212966 + ] + }, + "properties": { + "id": "meter-3807", + "maker": "Maker G", + "model": "Model 3807", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.7344125987123, + 27.595980421056144 + ] + }, + "properties": { + "id": "meter-3808", + "maker": "Maker J", + "model": "Model 3808", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23668725152776, + 29.896768551614574 + ] + }, + "properties": { + "id": "meter-3809", + "maker": "Maker H", + "model": "Model 3809", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48944669755666, + 20.02496224892382 + ] + }, + "properties": { + "id": "meter-3810", + "maker": "Maker C", + "model": "Model 3810", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54732465377971, + 25.518013780515354 + ] + }, + "properties": { + "id": "meter-3811", + "maker": "Maker C", + "model": "Model 3811", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.575795649008825, + 19.911665190656073 + ] + }, + "properties": { + "id": "meter-3812", + "maker": "Maker J", + "model": "Model 3812", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.121475773140574, + 26.42596961247573 + ] + }, + "properties": { + "id": "meter-3813", + "maker": "Maker C", + "model": "Model 3813", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.930318909167156, + 26.403727112862008 + ] + }, + "properties": { + "id": "meter-3814", + "maker": "Maker C", + "model": "Model 3814", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.044797150569096, + 30.964693800486565 + ] + }, + "properties": { + "id": "meter-3815", + "maker": "Maker G", + "model": "Model 3815", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.38658877234503, + 18.368925431873386 + ] + }, + "properties": { + "id": "meter-3816", + "maker": "Maker G", + "model": "Model 3816", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06657945487501, + 26.43855065532962 + ] + }, + "properties": { + "id": "meter-3817", + "maker": "Maker B", + "model": "Model 3817", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92796353712898, + 17.39646781404114 + ] + }, + "properties": { + "id": "meter-3818", + "maker": "Maker G", + "model": "Model 3818", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09521815399682, + 26.23811238444705 + ] + }, + "properties": { + "id": "meter-3819", + "maker": "Maker J", + "model": "Model 3819", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06783315542243, + 24.26598439745833 + ] + }, + "properties": { + "id": "meter-3820", + "maker": "Maker A", + "model": "Model 3820", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.619686468467016, + 18.317686782822523 + ] + }, + "properties": { + "id": "meter-3821", + "maker": "Maker E", + "model": "Model 3821", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.34338176055976, + 29.85413975658437 + ] + }, + "properties": { + "id": "meter-3822", + "maker": "Maker E", + "model": "Model 3822", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.27036605820852, + 24.022627744781346 + ] + }, + "properties": { + "id": "meter-3823", + "maker": "Maker J", + "model": "Model 3823", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.35228803020615, + 28.569544386097835 + ] + }, + "properties": { + "id": "meter-3824", + "maker": "Maker B", + "model": "Model 3824", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.004983810011694, + 24.155238032674085 + ] + }, + "properties": { + "id": "meter-3825", + "maker": "Maker G", + "model": "Model 3825", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.404820001792196, + 28.500948834101663 + ] + }, + "properties": { + "id": "meter-3826", + "maker": "Maker C", + "model": "Model 3826", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.43163210868874, + 18.4247772567948 + ] + }, + "properties": { + "id": "meter-3827", + "maker": "Maker H", + "model": "Model 3827", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.939811006665195, + 24.82236729035493 + ] + }, + "properties": { + "id": "meter-3828", + "maker": "Maker J", + "model": "Model 3828", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.88675800924409, + 17.46139117293842 + ] + }, + "properties": { + "id": "meter-3829", + "maker": "Maker G", + "model": "Model 3829", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.61208677216246, + 18.476068544958775 + ] + }, + "properties": { + "id": "meter-3830", + "maker": "Maker D", + "model": "Model 3830", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.545390042147595, + 28.36946260687736 + ] + }, + "properties": { + "id": "meter-3831", + "maker": "Maker F", + "model": "Model 3831", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.699686807426204, + 25.57052805368373 + ] + }, + "properties": { + "id": "meter-3832", + "maker": "Maker C", + "model": "Model 3832", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.74622213207733, + 18.282725837680374 + ] + }, + "properties": { + "id": "meter-3833", + "maker": "Maker C", + "model": "Model 3833", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.73071869240582, + 19.980445033939564 + ] + }, + "properties": { + "id": "meter-3834", + "maker": "Maker I", + "model": "Model 3834", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06225099047668, + 26.435202580306 + ] + }, + "properties": { + "id": "meter-3835", + "maker": "Maker I", + "model": "Model 3835", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.806143455535555, + 26.413386873429754 + ] + }, + "properties": { + "id": "meter-3836", + "maker": "Maker C", + "model": "Model 3836", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.55112805941246, + 28.385631570828103 + ] + }, + "properties": { + "id": "meter-3837", + "maker": "Maker B", + "model": "Model 3837", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.12731711779144, + 24.121256773952314 + ] + }, + "properties": { + "id": "meter-3838", + "maker": "Maker A", + "model": "Model 3838", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.46201910817687, + 25.331652083972912 + ] + }, + "properties": { + "id": "meter-3839", + "maker": "Maker A", + "model": "Model 3839", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.14782545409158, + 29.78830506042162 + ] + }, + "properties": { + "id": "meter-3840", + "maker": "Maker F", + "model": "Model 3840", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.16353222030291, + 24.26492635248475 + ] + }, + "properties": { + "id": "meter-3841", + "maker": "Maker H", + "model": "Model 3841", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.69563239995648, + 28.37197637071356 + ] + }, + "properties": { + "id": "meter-3842", + "maker": "Maker C", + "model": "Model 3842", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.06010870639676, + 26.484102678266574 + ] + }, + "properties": { + "id": "meter-3843", + "maker": "Maker G", + "model": "Model 3843", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19469990347774, + 26.270308897934477 + ] + }, + "properties": { + "id": "meter-3844", + "maker": "Maker H", + "model": "Model 3844", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45119152796006, + 20.056390324862118 + ] + }, + "properties": { + "id": "meter-3845", + "maker": "Maker C", + "model": "Model 3845", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01092973231621, + 26.511482734835575 + ] + }, + "properties": { + "id": "meter-3846", + "maker": "Maker E", + "model": "Model 3846", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.466496162777005, + 18.271524614197162 + ] + }, + "properties": { + "id": "meter-3847", + "maker": "Maker J", + "model": "Model 3847", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.4341365046767, + 18.253665517741027 + ] + }, + "properties": { + "id": "meter-3848", + "maker": "Maker A", + "model": "Model 3848", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.70127692932798, + 24.449055037813796 + ] + }, + "properties": { + "id": "meter-3849", + "maker": "Maker H", + "model": "Model 3849", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.65314557922504, + 25.554219431795065 + ] + }, + "properties": { + "id": "meter-3850", + "maker": "Maker F", + "model": "Model 3850", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17895124549432, + 17.758172383105762 + ] + }, + "properties": { + "id": "meter-3851", + "maker": "Maker F", + "model": "Model 3851", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.15562657258258, + 30.232761447848453 + ] + }, + "properties": { + "id": "meter-3852", + "maker": "Maker G", + "model": "Model 3852", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.76935115165125, + 18.333430450182313 + ] + }, + "properties": { + "id": "meter-3853", + "maker": "Maker J", + "model": "Model 3853", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.71422972912697, + 24.923507881008646 + ] + }, + "properties": { + "id": "meter-3854", + "maker": "Maker I", + "model": "Model 3854", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.125902786534986, + 17.49904681252498 + ] + }, + "properties": { + "id": "meter-3855", + "maker": "Maker C", + "model": "Model 3855", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.49984920551335, + 24.70266376135811 + ] + }, + "properties": { + "id": "meter-3856", + "maker": "Maker A", + "model": "Model 3856", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.724221400440065, + 27.501964958943137 + ] + }, + "properties": { + "id": "meter-3857", + "maker": "Maker J", + "model": "Model 3857", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98198035221632, + 26.415212644935973 + ] + }, + "properties": { + "id": "meter-3858", + "maker": "Maker D", + "model": "Model 3858", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.15534563385027, + 29.955752183739413 + ] + }, + "properties": { + "id": "meter-3859", + "maker": "Maker A", + "model": "Model 3859", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.701212703639655, + 27.242734246159653 + ] + }, + "properties": { + "id": "meter-3860", + "maker": "Maker J", + "model": "Model 3860", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.86471030416509, + 26.658311203444743 + ] + }, + "properties": { + "id": "meter-3861", + "maker": "Maker J", + "model": "Model 3861", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.04423928635504, + 26.411359799498666 + ] + }, + "properties": { + "id": "meter-3862", + "maker": "Maker F", + "model": "Model 3862", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45140283900327, + 20.02079547239438 + ] + }, + "properties": { + "id": "meter-3863", + "maker": "Maker J", + "model": "Model 3863", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.75612019171996, + 21.349666451102976 + ] + }, + "properties": { + "id": "meter-3864", + "maker": "Maker B", + "model": "Model 3864", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68543495410905, + 24.71846461353659 + ] + }, + "properties": { + "id": "meter-3865", + "maker": "Maker I", + "model": "Model 3865", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.15948351739723, + 30.85409796846605 + ] + }, + "properties": { + "id": "meter-3866", + "maker": "Maker B", + "model": "Model 3866", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.37388866710725, + 18.18273380715524 + ] + }, + "properties": { + "id": "meter-3867", + "maker": "Maker F", + "model": "Model 3867", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.839532880156455, + 21.495252579184367 + ] + }, + "properties": { + "id": "meter-3868", + "maker": "Maker B", + "model": "Model 3868", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.160390822924064, + 26.28403463477082 + ] + }, + "properties": { + "id": "meter-3869", + "maker": "Maker H", + "model": "Model 3869", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.860939009244504, + 21.18866531067313 + ] + }, + "properties": { + "id": "meter-3870", + "maker": "Maker A", + "model": "Model 3870", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.3517436233044, + 19.84892091123693 + ] + }, + "properties": { + "id": "meter-3871", + "maker": "Maker D", + "model": "Model 3871", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.7627250940456, + 25.25689648271239 + ] + }, + "properties": { + "id": "meter-3872", + "maker": "Maker G", + "model": "Model 3872", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11628027893278, + 17.509047681011502 + ] + }, + "properties": { + "id": "meter-3873", + "maker": "Maker B", + "model": "Model 3873", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.767997898022244, + 27.48507265568433 + ] + }, + "properties": { + "id": "meter-3874", + "maker": "Maker D", + "model": "Model 3874", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13273232071929, + 26.2020348144278 + ] + }, + "properties": { + "id": "meter-3875", + "maker": "Maker H", + "model": "Model 3875", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.6062165529495, + 25.52969391043922 + ] + }, + "properties": { + "id": "meter-3876", + "maker": "Maker G", + "model": "Model 3876", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.7097501633471, + 28.54728102553301 + ] + }, + "properties": { + "id": "meter-3877", + "maker": "Maker E", + "model": "Model 3877", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.190739471631524, + 30.940953137247934 + ] + }, + "properties": { + "id": "meter-3878", + "maker": "Maker E", + "model": "Model 3878", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.82802050286747, + 24.437397544617614 + ] + }, + "properties": { + "id": "meter-3879", + "maker": "Maker H", + "model": "Model 3879", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.039623846673756, + 17.63332343548699 + ] + }, + "properties": { + "id": "meter-3880", + "maker": "Maker E", + "model": "Model 3880", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.7278792647028, + 18.370465352186187 + ] + }, + "properties": { + "id": "meter-3881", + "maker": "Maker J", + "model": "Model 3881", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98277964732392, + 26.330777682576382 + ] + }, + "properties": { + "id": "meter-3882", + "maker": "Maker G", + "model": "Model 3882", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.44525280666619, + 25.37243669788819 + ] + }, + "properties": { + "id": "meter-3883", + "maker": "Maker D", + "model": "Model 3883", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.5218614446145, + 18.415704873424225 + ] + }, + "properties": { + "id": "meter-3884", + "maker": "Maker D", + "model": "Model 3884", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.630887377382045, + 25.25768257780534 + ] + }, + "properties": { + "id": "meter-3885", + "maker": "Maker G", + "model": "Model 3885", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.35327948846399, + 30.072090889996563 + ] + }, + "properties": { + "id": "meter-3886", + "maker": "Maker D", + "model": "Model 3886", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.065722950351855, + 31.000435782916473 + ] + }, + "properties": { + "id": "meter-3887", + "maker": "Maker E", + "model": "Model 3887", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20042430666256, + 26.270574170640135 + ] + }, + "properties": { + "id": "meter-3888", + "maker": "Maker J", + "model": "Model 3888", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.852670191187094, + 21.26188016304588 + ] + }, + "properties": { + "id": "meter-3889", + "maker": "Maker H", + "model": "Model 3889", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10945634394812, + 26.240744970761885 + ] + }, + "properties": { + "id": "meter-3890", + "maker": "Maker J", + "model": "Model 3890", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.55913164023724, + 25.30480466841195 + ] + }, + "properties": { + "id": "meter-3891", + "maker": "Maker C", + "model": "Model 3891", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15500095644088, + 26.248008389939915 + ] + }, + "properties": { + "id": "meter-3892", + "maker": "Maker J", + "model": "Model 3892", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.76534168055524, + 26.48728385140955 + ] + }, + "properties": { + "id": "meter-3893", + "maker": "Maker B", + "model": "Model 3893", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.85029929779868, + 27.545118226069416 + ] + }, + "properties": { + "id": "meter-3894", + "maker": "Maker B", + "model": "Model 3894", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.414058578942374, + 21.4631509550854 + ] + }, + "properties": { + "id": "meter-3895", + "maker": "Maker D", + "model": "Model 3895", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95044384221964, + 26.650270184694953 + ] + }, + "properties": { + "id": "meter-3896", + "maker": "Maker C", + "model": "Model 3896", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.77388750528307, + 26.328319080790386 + ] + }, + "properties": { + "id": "meter-3897", + "maker": "Maker J", + "model": "Model 3897", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21696695696647, + 21.505495573885902 + ] + }, + "properties": { + "id": "meter-3898", + "maker": "Maker C", + "model": "Model 3898", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.04983969500325, + 26.431704088837172 + ] + }, + "properties": { + "id": "meter-3899", + "maker": "Maker A", + "model": "Model 3899", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19313462086674, + 26.33149422041748 + ] + }, + "properties": { + "id": "meter-3900", + "maker": "Maker C", + "model": "Model 3900", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.28040130491256, + 18.11538046664713 + ] + }, + "properties": { + "id": "meter-3901", + "maker": "Maker E", + "model": "Model 3901", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.781351264065, + 24.807344326009506 + ] + }, + "properties": { + "id": "meter-3902", + "maker": "Maker H", + "model": "Model 3902", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.7166583596783, + 27.629259986591062 + ] + }, + "properties": { + "id": "meter-3903", + "maker": "Maker D", + "model": "Model 3903", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.84664385641489, + 26.281648641036632 + ] + }, + "properties": { + "id": "meter-3904", + "maker": "Maker I", + "model": "Model 3904", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.2244815570332, + 30.908249834240255 + ] + }, + "properties": { + "id": "meter-3905", + "maker": "Maker J", + "model": "Model 3905", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.72443245042847, + 27.322698884136308 + ] + }, + "properties": { + "id": "meter-3906", + "maker": "Maker D", + "model": "Model 3906", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.672481054242596, + 24.797033538440573 + ] + }, + "properties": { + "id": "meter-3907", + "maker": "Maker B", + "model": "Model 3907", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.27305507617723, + 18.057594056769226 + ] + }, + "properties": { + "id": "meter-3908", + "maker": "Maker I", + "model": "Model 3908", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08070431661504, + 26.290013994904804 + ] + }, + "properties": { + "id": "meter-3909", + "maker": "Maker H", + "model": "Model 3909", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.18679088236472, + 17.512993449993083 + ] + }, + "properties": { + "id": "meter-3910", + "maker": "Maker E", + "model": "Model 3910", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.18687180914257, + 30.725212515723914 + ] + }, + "properties": { + "id": "meter-3911", + "maker": "Maker E", + "model": "Model 3911", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.207372405112025, + 26.3512289660601 + ] + }, + "properties": { + "id": "meter-3912", + "maker": "Maker F", + "model": "Model 3912", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.19314887119495, + 21.664965497573725 + ] + }, + "properties": { + "id": "meter-3913", + "maker": "Maker D", + "model": "Model 3913", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.79959697671429, + 21.412700956240737 + ] + }, + "properties": { + "id": "meter-3914", + "maker": "Maker A", + "model": "Model 3914", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61408246581207, + 24.528577026371334 + ] + }, + "properties": { + "id": "meter-3915", + "maker": "Maker A", + "model": "Model 3915", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69104382823598, + 18.304344320307155 + ] + }, + "properties": { + "id": "meter-3916", + "maker": "Maker E", + "model": "Model 3916", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.543826164693506, + 18.189691969667763 + ] + }, + "properties": { + "id": "meter-3917", + "maker": "Maker B", + "model": "Model 3917", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98986426983119, + 26.3359743707574 + ] + }, + "properties": { + "id": "meter-3918", + "maker": "Maker F", + "model": "Model 3918", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.78012375601383, + 26.351877834573322 + ] + }, + "properties": { + "id": "meter-3919", + "maker": "Maker E", + "model": "Model 3919", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.422694957723216, + 18.29171174294503 + ] + }, + "properties": { + "id": "meter-3920", + "maker": "Maker E", + "model": "Model 3920", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.74715679842138, + 18.07188694585512 + ] + }, + "properties": { + "id": "meter-3921", + "maker": "Maker G", + "model": "Model 3921", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.25844944737663, + 20.040347454044074 + ] + }, + "properties": { + "id": "meter-3922", + "maker": "Maker J", + "model": "Model 3922", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77449948773915, + 21.11405316797418 + ] + }, + "properties": { + "id": "meter-3923", + "maker": "Maker J", + "model": "Model 3923", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.33682176209723, + 30.025065550844452 + ] + }, + "properties": { + "id": "meter-3924", + "maker": "Maker D", + "model": "Model 3924", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.850661738245606, + 25.307886793107762 + ] + }, + "properties": { + "id": "meter-3925", + "maker": "Maker A", + "model": "Model 3925", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.456737331776026, + 19.99710227612711 + ] + }, + "properties": { + "id": "meter-3926", + "maker": "Maker E", + "model": "Model 3926", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.50736770246991, + 25.35833783625147 + ] + }, + "properties": { + "id": "meter-3927", + "maker": "Maker G", + "model": "Model 3927", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.184684975848434, + 26.186351144460822 + ] + }, + "properties": { + "id": "meter-3928", + "maker": "Maker C", + "model": "Model 3928", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.5062466181579, + 24.330291385373496 + ] + }, + "properties": { + "id": "meter-3929", + "maker": "Maker C", + "model": "Model 3929", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.782961146387805, + 27.760974693253726 + ] + }, + "properties": { + "id": "meter-3930", + "maker": "Maker G", + "model": "Model 3930", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.669168589451935, + 24.638240872431457 + ] + }, + "properties": { + "id": "meter-3931", + "maker": "Maker E", + "model": "Model 3931", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13246092952198, + 17.492689699175713 + ] + }, + "properties": { + "id": "meter-3932", + "maker": "Maker H", + "model": "Model 3932", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.429828834547216, + 28.331746231237368 + ] + }, + "properties": { + "id": "meter-3933", + "maker": "Maker A", + "model": "Model 3933", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.46206924116215, + 25.33585442999685 + ] + }, + "properties": { + "id": "meter-3934", + "maker": "Maker A", + "model": "Model 3934", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.62695121730051, + 28.18044572594279 + ] + }, + "properties": { + "id": "meter-3935", + "maker": "Maker J", + "model": "Model 3935", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.89801462757196, + 26.44623768512796 + ] + }, + "properties": { + "id": "meter-3936", + "maker": "Maker E", + "model": "Model 3936", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.060981658986286, + 26.315124809121983 + ] + }, + "properties": { + "id": "meter-3937", + "maker": "Maker C", + "model": "Model 3937", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.81198023395764, + 24.82199065213428 + ] + }, + "properties": { + "id": "meter-3938", + "maker": "Maker E", + "model": "Model 3938", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.59652983831746, + 28.40075521734666 + ] + }, + "properties": { + "id": "meter-3939", + "maker": "Maker A", + "model": "Model 3939", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.704166471936155, + 18.33020406270622 + ] + }, + "properties": { + "id": "meter-3940", + "maker": "Maker I", + "model": "Model 3940", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.458003235275456, + 28.469800069062398 + ] + }, + "properties": { + "id": "meter-3941", + "maker": "Maker F", + "model": "Model 3941", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09104520899464, + 26.152775847235677 + ] + }, + "properties": { + "id": "meter-3942", + "maker": "Maker C", + "model": "Model 3942", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09073821745534, + 26.3486498936168 + ] + }, + "properties": { + "id": "meter-3943", + "maker": "Maker I", + "model": "Model 3943", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.715945755769354, + 18.349370554317296 + ] + }, + "properties": { + "id": "meter-3944", + "maker": "Maker J", + "model": "Model 3944", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.86488631454106, + 26.205169740652366 + ] + }, + "properties": { + "id": "meter-3945", + "maker": "Maker I", + "model": "Model 3945", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.222612791822975, + 21.488814700384726 + ] + }, + "properties": { + "id": "meter-3946", + "maker": "Maker C", + "model": "Model 3946", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.5940548770163, + 20.28012041365395 + ] + }, + "properties": { + "id": "meter-3947", + "maker": "Maker H", + "model": "Model 3947", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.76364116023968, + 21.509213887426554 + ] + }, + "properties": { + "id": "meter-3948", + "maker": "Maker E", + "model": "Model 3948", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69340661953492, + 27.46620171099472 + ] + }, + "properties": { + "id": "meter-3949", + "maker": "Maker J", + "model": "Model 3949", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96810441395467, + 26.57260475686751 + ] + }, + "properties": { + "id": "meter-3950", + "maker": "Maker E", + "model": "Model 3950", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.49950232511848, + 30.006557513891682 + ] + }, + "properties": { + "id": "meter-3951", + "maker": "Maker I", + "model": "Model 3951", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.090055496925494, + 26.442694011803958 + ] + }, + "properties": { + "id": "meter-3952", + "maker": "Maker C", + "model": "Model 3952", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.64555465617627, + 24.688461908728343 + ] + }, + "properties": { + "id": "meter-3953", + "maker": "Maker H", + "model": "Model 3953", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98027938055872, + 26.318764148369823 + ] + }, + "properties": { + "id": "meter-3954", + "maker": "Maker J", + "model": "Model 3954", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.47330082244584, + 25.325685647429992 + ] + }, + "properties": { + "id": "meter-3955", + "maker": "Maker H", + "model": "Model 3955", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04598088197162, + 17.528023386904277 + ] + }, + "properties": { + "id": "meter-3956", + "maker": "Maker J", + "model": "Model 3956", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.10991000258938, + 24.308874947858158 + ] + }, + "properties": { + "id": "meter-3957", + "maker": "Maker G", + "model": "Model 3957", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63487177717133, + 24.66731004701193 + ] + }, + "properties": { + "id": "meter-3958", + "maker": "Maker C", + "model": "Model 3958", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.99793329489579, + 24.133250919942434 + ] + }, + "properties": { + "id": "meter-3959", + "maker": "Maker A", + "model": "Model 3959", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.976366616492044, + 31.001123261560128 + ] + }, + "properties": { + "id": "meter-3960", + "maker": "Maker E", + "model": "Model 3960", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.202628425381185, + 29.90841911919496 + ] + }, + "properties": { + "id": "meter-3961", + "maker": "Maker F", + "model": "Model 3961", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.077327959874616, + 26.34810841269972 + ] + }, + "properties": { + "id": "meter-3962", + "maker": "Maker E", + "model": "Model 3962", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.58653016534253, + 24.619549822525244 + ] + }, + "properties": { + "id": "meter-3963", + "maker": "Maker H", + "model": "Model 3963", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63362477664056, + 24.637432340315968 + ] + }, + "properties": { + "id": "meter-3964", + "maker": "Maker F", + "model": "Model 3964", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.97754275865831, + 24.163510835388283 + ] + }, + "properties": { + "id": "meter-3965", + "maker": "Maker E", + "model": "Model 3965", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.114429940745005, + 21.699085702368066 + ] + }, + "properties": { + "id": "meter-3966", + "maker": "Maker G", + "model": "Model 3966", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.902197507879116, + 24.620582646988552 + ] + }, + "properties": { + "id": "meter-3967", + "maker": "Maker I", + "model": "Model 3967", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.506825099579295, + 28.286914163585923 + ] + }, + "properties": { + "id": "meter-3968", + "maker": "Maker C", + "model": "Model 3968", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93588499552939, + 26.601092040349517 + ] + }, + "properties": { + "id": "meter-3969", + "maker": "Maker H", + "model": "Model 3969", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.76860396581153, + 21.405089030678102 + ] + }, + "properties": { + "id": "meter-3970", + "maker": "Maker D", + "model": "Model 3970", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10843237225307, + 26.217761778549093 + ] + }, + "properties": { + "id": "meter-3971", + "maker": "Maker A", + "model": "Model 3971", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.79358744685743, + 24.516538835780473 + ] + }, + "properties": { + "id": "meter-3972", + "maker": "Maker I", + "model": "Model 3972", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.09127186003409, + 31.083531208273016 + ] + }, + "properties": { + "id": "meter-3973", + "maker": "Maker H", + "model": "Model 3973", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.756156624493514, + 25.162131002397917 + ] + }, + "properties": { + "id": "meter-3974", + "maker": "Maker J", + "model": "Model 3974", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.27433686512186, + 21.761276190867058 + ] + }, + "properties": { + "id": "meter-3975", + "maker": "Maker J", + "model": "Model 3975", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92639960941128, + 26.43914223533996 + ] + }, + "properties": { + "id": "meter-3976", + "maker": "Maker C", + "model": "Model 3976", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.766610771720124, + 26.255370849871195 + ] + }, + "properties": { + "id": "meter-3977", + "maker": "Maker F", + "model": "Model 3977", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.55367101417154, + 24.48530175802239 + ] + }, + "properties": { + "id": "meter-3978", + "maker": "Maker A", + "model": "Model 3978", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.90897671488167, + 21.425011833232247 + ] + }, + "properties": { + "id": "meter-3979", + "maker": "Maker D", + "model": "Model 3979", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19982915398568, + 26.315240436133262 + ] + }, + "properties": { + "id": "meter-3980", + "maker": "Maker E", + "model": "Model 3980", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08815829856318, + 26.42073650457512 + ] + }, + "properties": { + "id": "meter-3981", + "maker": "Maker F", + "model": "Model 3981", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.071585018024116, + 26.53097037310711 + ] + }, + "properties": { + "id": "meter-3982", + "maker": "Maker B", + "model": "Model 3982", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.75380090725052, + 27.60606273784696 + ] + }, + "properties": { + "id": "meter-3983", + "maker": "Maker J", + "model": "Model 3983", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.13234886521001, + 21.660434934881984 + ] + }, + "properties": { + "id": "meter-3984", + "maker": "Maker C", + "model": "Model 3984", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17192734664554, + 26.278283550606684 + ] + }, + "properties": { + "id": "meter-3985", + "maker": "Maker E", + "model": "Model 3985", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.29144963250262, + 21.546972004060574 + ] + }, + "properties": { + "id": "meter-3986", + "maker": "Maker C", + "model": "Model 3986", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.709349825444, + 18.280326760372688 + ] + }, + "properties": { + "id": "meter-3987", + "maker": "Maker A", + "model": "Model 3987", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.521713980597696, + 18.275054997542657 + ] + }, + "properties": { + "id": "meter-3988", + "maker": "Maker J", + "model": "Model 3988", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57775350013607, + 25.24401191151779 + ] + }, + "properties": { + "id": "meter-3989", + "maker": "Maker D", + "model": "Model 3989", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99920151871798, + 26.431275426667067 + ] + }, + "properties": { + "id": "meter-3990", + "maker": "Maker A", + "model": "Model 3990", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.571124882602156, + 21.309262823007533 + ] + }, + "properties": { + "id": "meter-3991", + "maker": "Maker D", + "model": "Model 3991", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.088307186812386, + 26.422561978638853 + ] + }, + "properties": { + "id": "meter-3992", + "maker": "Maker F", + "model": "Model 3992", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65886267528025, + 24.570819564239173 + ] + }, + "properties": { + "id": "meter-3993", + "maker": "Maker E", + "model": "Model 3993", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10860209978592, + 26.4300925783368 + ] + }, + "properties": { + "id": "meter-3994", + "maker": "Maker I", + "model": "Model 3994", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.15394780800762, + 24.130606258323876 + ] + }, + "properties": { + "id": "meter-3995", + "maker": "Maker G", + "model": "Model 3995", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.87282820126091, + 18.48534002398087 + ] + }, + "properties": { + "id": "meter-3996", + "maker": "Maker A", + "model": "Model 3996", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.32067156771127, + 30.046320721543232 + ] + }, + "properties": { + "id": "meter-3997", + "maker": "Maker C", + "model": "Model 3997", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.41839685039479, + 21.510121472198524 + ] + }, + "properties": { + "id": "meter-3998", + "maker": "Maker G", + "model": "Model 3998", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.32919018012705, + 21.57218337160259 + ] + }, + "properties": { + "id": "meter-3999", + "maker": "Maker C", + "model": "Model 3999", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98867278643607, + 26.36871719750442 + ] + }, + "properties": { + "id": "meter-4000", + "maker": "Maker C", + "model": "Model 4000", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81710681672479, + 21.325640295385295 + ] + }, + "properties": { + "id": "meter-4001", + "maker": "Maker F", + "model": "Model 4001", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.569472991042936, + 27.501166555260756 + ] + }, + "properties": { + "id": "meter-4002", + "maker": "Maker G", + "model": "Model 4002", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.656826529394884, + 27.559876870718565 + ] + }, + "properties": { + "id": "meter-4003", + "maker": "Maker J", + "model": "Model 4003", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87687118065177, + 26.26184366780026 + ] + }, + "properties": { + "id": "meter-4004", + "maker": "Maker I", + "model": "Model 4004", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.7189150103036, + 21.286861036626945 + ] + }, + "properties": { + "id": "meter-4005", + "maker": "Maker E", + "model": "Model 4005", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.90889104648974, + 18.17247801486928 + ] + }, + "properties": { + "id": "meter-4006", + "maker": "Maker J", + "model": "Model 4006", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.89236597702686, + 26.77352912687825 + ] + }, + "properties": { + "id": "meter-4007", + "maker": "Maker G", + "model": "Model 4007", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.42895506433168, + 28.35157656817692 + ] + }, + "properties": { + "id": "meter-4008", + "maker": "Maker F", + "model": "Model 4008", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.343749908750404, + 29.712970627699324 + ] + }, + "properties": { + "id": "meter-4009", + "maker": "Maker C", + "model": "Model 4009", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.055042291636354, + 26.357311001662165 + ] + }, + "properties": { + "id": "meter-4010", + "maker": "Maker G", + "model": "Model 4010", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.16087919184095, + 17.498081798551258 + ] + }, + "properties": { + "id": "meter-4011", + "maker": "Maker I", + "model": "Model 4011", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9627362764943, + 26.664940260384565 + ] + }, + "properties": { + "id": "meter-4012", + "maker": "Maker I", + "model": "Model 4012", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48483569073274, + 19.99553572842692 + ] + }, + "properties": { + "id": "meter-4013", + "maker": "Maker B", + "model": "Model 4013", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.087688994175, + 17.50622552886637 + ] + }, + "properties": { + "id": "meter-4014", + "maker": "Maker D", + "model": "Model 4014", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99551106379395, + 26.177840434840498 + ] + }, + "properties": { + "id": "meter-4015", + "maker": "Maker C", + "model": "Model 4015", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.22031691908252, + 21.4810262592831 + ] + }, + "properties": { + "id": "meter-4016", + "maker": "Maker I", + "model": "Model 4016", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.16817518151386, + 24.18682512926968 + ] + }, + "properties": { + "id": "meter-4017", + "maker": "Maker E", + "model": "Model 4017", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.90796038761406, + 27.48931496732464 + ] + }, + "properties": { + "id": "meter-4018", + "maker": "Maker C", + "model": "Model 4018", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.073517398547864, + 26.382431926839757 + ] + }, + "properties": { + "id": "meter-4019", + "maker": "Maker H", + "model": "Model 4019", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.27719451613548, + 17.51070516505511 + ] + }, + "properties": { + "id": "meter-4020", + "maker": "Maker A", + "model": "Model 4020", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.01389868273313, + 31.015646612111578 + ] + }, + "properties": { + "id": "meter-4021", + "maker": "Maker A", + "model": "Model 4021", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.695677576276566, + 18.33034507012801 + ] + }, + "properties": { + "id": "meter-4022", + "maker": "Maker A", + "model": "Model 4022", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99287303233398, + 26.293091438098234 + ] + }, + "properties": { + "id": "meter-4023", + "maker": "Maker G", + "model": "Model 4023", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01556522446698, + 26.42878491309196 + ] + }, + "properties": { + "id": "meter-4024", + "maker": "Maker D", + "model": "Model 4024", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.25335717083194, + 20.16321452851746 + ] + }, + "properties": { + "id": "meter-4025", + "maker": "Maker C", + "model": "Model 4025", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.133973742979535, + 26.50128659478792 + ] + }, + "properties": { + "id": "meter-4026", + "maker": "Maker B", + "model": "Model 4026", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.08559858769502, + 29.90591558198322 + ] + }, + "properties": { + "id": "meter-4027", + "maker": "Maker I", + "model": "Model 4027", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.987262991382934, + 26.342035748908913 + ] + }, + "properties": { + "id": "meter-4028", + "maker": "Maker F", + "model": "Model 4028", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.758095893947925, + 26.4859150459466 + ] + }, + "properties": { + "id": "meter-4029", + "maker": "Maker G", + "model": "Model 4029", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.626837233234156, + 19.960516417784643 + ] + }, + "properties": { + "id": "meter-4030", + "maker": "Maker G", + "model": "Model 4030", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97362200612372, + 26.59000172676539 + ] + }, + "properties": { + "id": "meter-4031", + "maker": "Maker E", + "model": "Model 4031", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.192528618325404, + 21.26869696006624 + ] + }, + "properties": { + "id": "meter-4032", + "maker": "Maker G", + "model": "Model 4032", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.82500145097882, + 27.446600867798402 + ] + }, + "properties": { + "id": "meter-4033", + "maker": "Maker D", + "model": "Model 4033", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.4688789626716, + 28.397654785512557 + ] + }, + "properties": { + "id": "meter-4034", + "maker": "Maker D", + "model": "Model 4034", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.40889104944844, + 18.227844618289545 + ] + }, + "properties": { + "id": "meter-4035", + "maker": "Maker G", + "model": "Model 4035", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.592938434491714, + 24.629129754635734 + ] + }, + "properties": { + "id": "meter-4036", + "maker": "Maker C", + "model": "Model 4036", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.089493021630105, + 26.428884306508113 + ] + }, + "properties": { + "id": "meter-4037", + "maker": "Maker A", + "model": "Model 4037", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19935944805064, + 26.19834921620413 + ] + }, + "properties": { + "id": "meter-4038", + "maker": "Maker C", + "model": "Model 4038", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.74688960453468, + 24.441520925889765 + ] + }, + "properties": { + "id": "meter-4039", + "maker": "Maker B", + "model": "Model 4039", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.40117628858032, + 19.986218527412284 + ] + }, + "properties": { + "id": "meter-4040", + "maker": "Maker J", + "model": "Model 4040", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.34236539546244, + 19.935304088307234 + ] + }, + "properties": { + "id": "meter-4041", + "maker": "Maker A", + "model": "Model 4041", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.22131453627494, + 21.499559747537425 + ] + }, + "properties": { + "id": "meter-4042", + "maker": "Maker J", + "model": "Model 4042", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94225920505497, + 26.56766097215478 + ] + }, + "properties": { + "id": "meter-4043", + "maker": "Maker I", + "model": "Model 4043", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.09574396531674, + 30.13730823707336 + ] + }, + "properties": { + "id": "meter-4044", + "maker": "Maker C", + "model": "Model 4044", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.35360359199584, + 25.393646167974975 + ] + }, + "properties": { + "id": "meter-4045", + "maker": "Maker G", + "model": "Model 4045", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03662117530473, + 30.980260371139693 + ] + }, + "properties": { + "id": "meter-4046", + "maker": "Maker B", + "model": "Model 4046", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.37040260526997, + 19.845813869345637 + ] + }, + "properties": { + "id": "meter-4047", + "maker": "Maker E", + "model": "Model 4047", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.524025269888845, + 24.715052403774536 + ] + }, + "properties": { + "id": "meter-4048", + "maker": "Maker F", + "model": "Model 4048", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50253853547375, + 17.955336622088858 + ] + }, + "properties": { + "id": "meter-4049", + "maker": "Maker H", + "model": "Model 4049", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13203518395185, + 17.428381215295556 + ] + }, + "properties": { + "id": "meter-4050", + "maker": "Maker F", + "model": "Model 4050", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.772277273090985, + 26.66341237007006 + ] + }, + "properties": { + "id": "meter-4051", + "maker": "Maker D", + "model": "Model 4051", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.65545308037554, + 18.103747699343746 + ] + }, + "properties": { + "id": "meter-4052", + "maker": "Maker C", + "model": "Model 4052", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.626774347334575, + 24.566996335155746 + ] + }, + "properties": { + "id": "meter-4053", + "maker": "Maker A", + "model": "Model 4053", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.147315785236174, + 31.103215254789433 + ] + }, + "properties": { + "id": "meter-4054", + "maker": "Maker F", + "model": "Model 4054", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.40234888340549, + 20.03386799026983 + ] + }, + "properties": { + "id": "meter-4055", + "maker": "Maker D", + "model": "Model 4055", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.38678972952216, + 18.38363710468015 + ] + }, + "properties": { + "id": "meter-4056", + "maker": "Maker G", + "model": "Model 4056", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20283044013423, + 29.827003624398685 + ] + }, + "properties": { + "id": "meter-4057", + "maker": "Maker J", + "model": "Model 4057", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.36117895930028, + 30.07299207449087 + ] + }, + "properties": { + "id": "meter-4058", + "maker": "Maker I", + "model": "Model 4058", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24897050270183, + 21.47849300481238 + ] + }, + "properties": { + "id": "meter-4059", + "maker": "Maker E", + "model": "Model 4059", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.52688555332024, + 28.172058380043772 + ] + }, + "properties": { + "id": "meter-4060", + "maker": "Maker H", + "model": "Model 4060", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87116122644228, + 25.25735803650035 + ] + }, + "properties": { + "id": "meter-4061", + "maker": "Maker E", + "model": "Model 4061", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26314714115368, + 21.495987295545852 + ] + }, + "properties": { + "id": "meter-4062", + "maker": "Maker E", + "model": "Model 4062", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0713958918739, + 24.26561843700002 + ] + }, + "properties": { + "id": "meter-4063", + "maker": "Maker J", + "model": "Model 4063", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.48921174989696, + 18.251814148000857 + ] + }, + "properties": { + "id": "meter-4064", + "maker": "Maker J", + "model": "Model 4064", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63625716759834, + 24.740396182055697 + ] + }, + "properties": { + "id": "meter-4065", + "maker": "Maker B", + "model": "Model 4065", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.07630144944074, + 26.22694395338134 + ] + }, + "properties": { + "id": "meter-4066", + "maker": "Maker E", + "model": "Model 4066", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.900188347283795, + 21.379722700908523 + ] + }, + "properties": { + "id": "meter-4067", + "maker": "Maker G", + "model": "Model 4067", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67352955350834, + 20.032491402517213 + ] + }, + "properties": { + "id": "meter-4068", + "maker": "Maker A", + "model": "Model 4068", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.049521318159485, + 26.45367047979683 + ] + }, + "properties": { + "id": "meter-4069", + "maker": "Maker F", + "model": "Model 4069", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.36770490842734, + 29.858433524525076 + ] + }, + "properties": { + "id": "meter-4070", + "maker": "Maker B", + "model": "Model 4070", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68977444439372, + 24.706521095583778 + ] + }, + "properties": { + "id": "meter-4071", + "maker": "Maker G", + "model": "Model 4071", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23267750303216, + 29.757392419565438 + ] + }, + "properties": { + "id": "meter-4072", + "maker": "Maker F", + "model": "Model 4072", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.59846422449768, + 20.017850850876215 + ] + }, + "properties": { + "id": "meter-4073", + "maker": "Maker F", + "model": "Model 4073", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.324921771480156, + 17.704085467102065 + ] + }, + "properties": { + "id": "meter-4074", + "maker": "Maker C", + "model": "Model 4074", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.037724944040804, + 30.975316726555455 + ] + }, + "properties": { + "id": "meter-4075", + "maker": "Maker G", + "model": "Model 4075", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.683362570534726, + 24.71880020328878 + ] + }, + "properties": { + "id": "meter-4076", + "maker": "Maker I", + "model": "Model 4076", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.36362755574011, + 28.552698941211528 + ] + }, + "properties": { + "id": "meter-4077", + "maker": "Maker A", + "model": "Model 4077", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.71056769612962, + 28.219794840948285 + ] + }, + "properties": { + "id": "meter-4078", + "maker": "Maker J", + "model": "Model 4078", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.079996824469724, + 21.689009138286337 + ] + }, + "properties": { + "id": "meter-4079", + "maker": "Maker E", + "model": "Model 4079", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06674384526298, + 26.44030721088247 + ] + }, + "properties": { + "id": "meter-4080", + "maker": "Maker C", + "model": "Model 4080", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14744564699703, + 26.192084211745907 + ] + }, + "properties": { + "id": "meter-4081", + "maker": "Maker B", + "model": "Model 4081", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.31985772982122, + 21.234249155502397 + ] + }, + "properties": { + "id": "meter-4082", + "maker": "Maker A", + "model": "Model 4082", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45384118005323, + 18.36738395716226 + ] + }, + "properties": { + "id": "meter-4083", + "maker": "Maker E", + "model": "Model 4083", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00958818628143, + 26.454041799255236 + ] + }, + "properties": { + "id": "meter-4084", + "maker": "Maker I", + "model": "Model 4084", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.23164175889827, + 24.028728850219352 + ] + }, + "properties": { + "id": "meter-4085", + "maker": "Maker A", + "model": "Model 4085", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.999531523902796, + 29.859514182501037 + ] + }, + "properties": { + "id": "meter-4086", + "maker": "Maker B", + "model": "Model 4086", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06266797554481, + 26.194779595018325 + ] + }, + "properties": { + "id": "meter-4087", + "maker": "Maker C", + "model": "Model 4087", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.999946363260236, + 26.49016639546664 + ] + }, + "properties": { + "id": "meter-4088", + "maker": "Maker F", + "model": "Model 4088", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.237605183150535, + 30.013263114752647 + ] + }, + "properties": { + "id": "meter-4089", + "maker": "Maker H", + "model": "Model 4089", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54088015614183, + 25.344699189215824 + ] + }, + "properties": { + "id": "meter-4090", + "maker": "Maker F", + "model": "Model 4090", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87220648775919, + 26.413410879495125 + ] + }, + "properties": { + "id": "meter-4091", + "maker": "Maker B", + "model": "Model 4091", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.015399266179045, + 26.500634631941196 + ] + }, + "properties": { + "id": "meter-4092", + "maker": "Maker C", + "model": "Model 4092", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.506119272325705, + 28.28494014941272 + ] + }, + "properties": { + "id": "meter-4093", + "maker": "Maker F", + "model": "Model 4093", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.59739360840702, + 27.60390843569974 + ] + }, + "properties": { + "id": "meter-4094", + "maker": "Maker H", + "model": "Model 4094", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.792259412741856, + 21.34412599263855 + ] + }, + "properties": { + "id": "meter-4095", + "maker": "Maker J", + "model": "Model 4095", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.103899710507854, + 26.266450314794337 + ] + }, + "properties": { + "id": "meter-4096", + "maker": "Maker I", + "model": "Model 4096", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99174055823375, + 26.62925264551055 + ] + }, + "properties": { + "id": "meter-4097", + "maker": "Maker A", + "model": "Model 4097", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.497152671264125, + 28.230606646899197 + ] + }, + "properties": { + "id": "meter-4098", + "maker": "Maker D", + "model": "Model 4098", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67627028826847, + 24.71362606886219 + ] + }, + "properties": { + "id": "meter-4099", + "maker": "Maker E", + "model": "Model 4099", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.97036846659137, + 18.26078867045009 + ] + }, + "properties": { + "id": "meter-4100", + "maker": "Maker G", + "model": "Model 4100", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.60091001811474, + 28.387272115916282 + ] + }, + "properties": { + "id": "meter-4101", + "maker": "Maker D", + "model": "Model 4101", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.016766055153305, + 26.419028147922468 + ] + }, + "properties": { + "id": "meter-4102", + "maker": "Maker J", + "model": "Model 4102", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93869281759352, + 26.44404583022605 + ] + }, + "properties": { + "id": "meter-4103", + "maker": "Maker C", + "model": "Model 4103", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.69016760654985, + 24.586087351205105 + ] + }, + "properties": { + "id": "meter-4104", + "maker": "Maker I", + "model": "Model 4104", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.4811481118095, + 18.227534684183674 + ] + }, + "properties": { + "id": "meter-4105", + "maker": "Maker H", + "model": "Model 4105", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.66266070777552, + 24.69614380548595 + ] + }, + "properties": { + "id": "meter-4106", + "maker": "Maker I", + "model": "Model 4106", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.65265254738509, + 25.30728112562387 + ] + }, + "properties": { + "id": "meter-4107", + "maker": "Maker G", + "model": "Model 4107", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09341140829149, + 24.074005038512293 + ] + }, + "properties": { + "id": "meter-4108", + "maker": "Maker B", + "model": "Model 4108", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.47481224216545, + 18.22188954446377 + ] + }, + "properties": { + "id": "meter-4109", + "maker": "Maker J", + "model": "Model 4109", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.29164604232026, + 21.475461561953388 + ] + }, + "properties": { + "id": "meter-4110", + "maker": "Maker A", + "model": "Model 4110", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03740924846313, + 30.977690959178044 + ] + }, + "properties": { + "id": "meter-4111", + "maker": "Maker F", + "model": "Model 4111", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10054416656254, + 26.37096095933307 + ] + }, + "properties": { + "id": "meter-4112", + "maker": "Maker E", + "model": "Model 4112", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68034235309692, + 24.70534335558938 + ] + }, + "properties": { + "id": "meter-4113", + "maker": "Maker B", + "model": "Model 4113", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.796476789935156, + 18.14396315767049 + ] + }, + "properties": { + "id": "meter-4114", + "maker": "Maker D", + "model": "Model 4114", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.07579241161246, + 31.186328277506426 + ] + }, + "properties": { + "id": "meter-4115", + "maker": "Maker C", + "model": "Model 4115", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69690300700931, + 18.31610132305637 + ] + }, + "properties": { + "id": "meter-4116", + "maker": "Maker E", + "model": "Model 4116", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.2683001241127, + 31.045712760880505 + ] + }, + "properties": { + "id": "meter-4117", + "maker": "Maker I", + "model": "Model 4117", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.129012819201925, + 30.003337996617624 + ] + }, + "properties": { + "id": "meter-4118", + "maker": "Maker A", + "model": "Model 4118", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.34335848490619, + 29.769766217900123 + ] + }, + "properties": { + "id": "meter-4119", + "maker": "Maker A", + "model": "Model 4119", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10278105143661, + 26.425834818740345 + ] + }, + "properties": { + "id": "meter-4120", + "maker": "Maker C", + "model": "Model 4120", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.970893979162824, + 26.495937212105215 + ] + }, + "properties": { + "id": "meter-4121", + "maker": "Maker H", + "model": "Model 4121", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99674488384685, + 26.523537604767558 + ] + }, + "properties": { + "id": "meter-4122", + "maker": "Maker B", + "model": "Model 4122", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.753762147278586, + 24.642104647990905 + ] + }, + "properties": { + "id": "meter-4123", + "maker": "Maker B", + "model": "Model 4123", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87567590847093, + 26.677591862444515 + ] + }, + "properties": { + "id": "meter-4124", + "maker": "Maker G", + "model": "Model 4124", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.91968432003344, + 21.35090777727442 + ] + }, + "properties": { + "id": "meter-4125", + "maker": "Maker F", + "model": "Model 4125", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65799519469745, + 24.57556806465817 + ] + }, + "properties": { + "id": "meter-4126", + "maker": "Maker I", + "model": "Model 4126", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.41429280708277, + 28.347198292192445 + ] + }, + "properties": { + "id": "meter-4127", + "maker": "Maker E", + "model": "Model 4127", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47937271008452, + 20.031296448441314 + ] + }, + "properties": { + "id": "meter-4128", + "maker": "Maker I", + "model": "Model 4128", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15316801076397, + 26.322470842834832 + ] + }, + "properties": { + "id": "meter-4129", + "maker": "Maker H", + "model": "Model 4129", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.30401212321381, + 30.863968186848382 + ] + }, + "properties": { + "id": "meter-4130", + "maker": "Maker G", + "model": "Model 4130", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.44779077338209, + 29.94640986428178 + ] + }, + "properties": { + "id": "meter-4131", + "maker": "Maker E", + "model": "Model 4131", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01592630733767, + 26.500397397239016 + ] + }, + "properties": { + "id": "meter-4132", + "maker": "Maker B", + "model": "Model 4132", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.48742190353126, + 24.671325501522887 + ] + }, + "properties": { + "id": "meter-4133", + "maker": "Maker H", + "model": "Model 4133", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.6306711905964, + 24.724671649572823 + ] + }, + "properties": { + "id": "meter-4134", + "maker": "Maker A", + "model": "Model 4134", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.283498811308775, + 24.078599368898082 + ] + }, + "properties": { + "id": "meter-4135", + "maker": "Maker J", + "model": "Model 4135", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21410894971313, + 26.257674309063727 + ] + }, + "properties": { + "id": "meter-4136", + "maker": "Maker A", + "model": "Model 4136", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.27874595097449, + 24.182643566865174 + ] + }, + "properties": { + "id": "meter-4137", + "maker": "Maker G", + "model": "Model 4137", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.02571598898012, + 24.106602987003214 + ] + }, + "properties": { + "id": "meter-4138", + "maker": "Maker E", + "model": "Model 4138", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.60814056347621, + 28.44759074228928 + ] + }, + "properties": { + "id": "meter-4139", + "maker": "Maker G", + "model": "Model 4139", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62844524533419, + 27.797104921665674 + ] + }, + "properties": { + "id": "meter-4140", + "maker": "Maker G", + "model": "Model 4140", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.311378657334004, + 19.852373861019633 + ] + }, + "properties": { + "id": "meter-4141", + "maker": "Maker C", + "model": "Model 4141", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.090120324306476, + 21.214498942071234 + ] + }, + "properties": { + "id": "meter-4142", + "maker": "Maker H", + "model": "Model 4142", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07127794777457, + 24.087288354964844 + ] + }, + "properties": { + "id": "meter-4143", + "maker": "Maker C", + "model": "Model 4143", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.073301416940915, + 17.435488647213635 + ] + }, + "properties": { + "id": "meter-4144", + "maker": "Maker G", + "model": "Model 4144", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.701309212288734, + 27.292016560071325 + ] + }, + "properties": { + "id": "meter-4145", + "maker": "Maker B", + "model": "Model 4145", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.041091882862375, + 26.393441630690244 + ] + }, + "properties": { + "id": "meter-4146", + "maker": "Maker D", + "model": "Model 4146", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09773509697723, + 26.324009858572506 + ] + }, + "properties": { + "id": "meter-4147", + "maker": "Maker H", + "model": "Model 4147", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.259072019295694, + 29.960784774242928 + ] + }, + "properties": { + "id": "meter-4148", + "maker": "Maker A", + "model": "Model 4148", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99232657165366, + 26.622108548553165 + ] + }, + "properties": { + "id": "meter-4149", + "maker": "Maker F", + "model": "Model 4149", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69683132121688, + 27.41953550412671 + ] + }, + "properties": { + "id": "meter-4150", + "maker": "Maker J", + "model": "Model 4150", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.934012826360394, + 27.422447559146455 + ] + }, + "properties": { + "id": "meter-4151", + "maker": "Maker E", + "model": "Model 4151", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.889204172314216, + 21.380918305229653 + ] + }, + "properties": { + "id": "meter-4152", + "maker": "Maker B", + "model": "Model 4152", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14113295371224, + 26.293750172195352 + ] + }, + "properties": { + "id": "meter-4153", + "maker": "Maker B", + "model": "Model 4153", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08921275142822, + 26.354023256742476 + ] + }, + "properties": { + "id": "meter-4154", + "maker": "Maker C", + "model": "Model 4154", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.554610947998086, + 25.132197829777503 + ] + }, + "properties": { + "id": "meter-4155", + "maker": "Maker I", + "model": "Model 4155", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.14954267113457, + 24.31709548351358 + ] + }, + "properties": { + "id": "meter-4156", + "maker": "Maker F", + "model": "Model 4156", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.64554254198223, + 24.74349230727017 + ] + }, + "properties": { + "id": "meter-4157", + "maker": "Maker E", + "model": "Model 4157", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.63316026983682, + 28.466916740313206 + ] + }, + "properties": { + "id": "meter-4158", + "maker": "Maker G", + "model": "Model 4158", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.479928549227175, + 18.40131459889655 + ] + }, + "properties": { + "id": "meter-4159", + "maker": "Maker F", + "model": "Model 4159", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.20915434378488, + 31.066920039233715 + ] + }, + "properties": { + "id": "meter-4160", + "maker": "Maker E", + "model": "Model 4160", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.79363786520459, + 28.495146939508423 + ] + }, + "properties": { + "id": "meter-4161", + "maker": "Maker J", + "model": "Model 4161", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.89430373702588, + 24.5514705182372 + ] + }, + "properties": { + "id": "meter-4162", + "maker": "Maker C", + "model": "Model 4162", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48469095294843, + 19.944966755074855 + ] + }, + "properties": { + "id": "meter-4163", + "maker": "Maker H", + "model": "Model 4163", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67969390942471, + 24.232927662196076 + ] + }, + "properties": { + "id": "meter-4164", + "maker": "Maker J", + "model": "Model 4164", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.78067866043425, + 24.415922869764884 + ] + }, + "properties": { + "id": "meter-4165", + "maker": "Maker E", + "model": "Model 4165", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.0054365297819, + 21.4506420810535 + ] + }, + "properties": { + "id": "meter-4166", + "maker": "Maker D", + "model": "Model 4166", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.05941626222425, + 30.744664931264715 + ] + }, + "properties": { + "id": "meter-4167", + "maker": "Maker I", + "model": "Model 4167", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.4211560932272, + 18.245459651617523 + ] + }, + "properties": { + "id": "meter-4168", + "maker": "Maker H", + "model": "Model 4168", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.860265091321, + 26.58534148606144 + ] + }, + "properties": { + "id": "meter-4169", + "maker": "Maker G", + "model": "Model 4169", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.12396549052821, + 24.198481326667242 + ] + }, + "properties": { + "id": "meter-4170", + "maker": "Maker E", + "model": "Model 4170", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.621737246770756, + 28.19920619461556 + ] + }, + "properties": { + "id": "meter-4171", + "maker": "Maker H", + "model": "Model 4171", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.24352652866745, + 30.046910330926625 + ] + }, + "properties": { + "id": "meter-4172", + "maker": "Maker E", + "model": "Model 4172", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21117807512796, + 26.28102416275994 + ] + }, + "properties": { + "id": "meter-4173", + "maker": "Maker I", + "model": "Model 4173", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.29669738949765, + 21.669056212936948 + ] + }, + "properties": { + "id": "meter-4174", + "maker": "Maker D", + "model": "Model 4174", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.12780079617832, + 29.91009088154879 + ] + }, + "properties": { + "id": "meter-4175", + "maker": "Maker A", + "model": "Model 4175", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.931869997586155, + 18.22830131520551 + ] + }, + "properties": { + "id": "meter-4176", + "maker": "Maker J", + "model": "Model 4176", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02589234875567, + 17.623451811688675 + ] + }, + "properties": { + "id": "meter-4177", + "maker": "Maker H", + "model": "Model 4177", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06157326698806, + 24.244558497158604 + ] + }, + "properties": { + "id": "meter-4178", + "maker": "Maker A", + "model": "Model 4178", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.71490527639084, + 24.7311638345138 + ] + }, + "properties": { + "id": "meter-4179", + "maker": "Maker H", + "model": "Model 4179", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.72172979703997, + 28.34651838209345 + ] + }, + "properties": { + "id": "meter-4180", + "maker": "Maker J", + "model": "Model 4180", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.8935708401985, + 26.457616458801322 + ] + }, + "properties": { + "id": "meter-4181", + "maker": "Maker C", + "model": "Model 4181", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.027746960774934, + 30.962991724476755 + ] + }, + "properties": { + "id": "meter-4182", + "maker": "Maker H", + "model": "Model 4182", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.989044258152, + 26.26406555086921 + ] + }, + "properties": { + "id": "meter-4183", + "maker": "Maker D", + "model": "Model 4183", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62891434026302, + 27.532592687950363 + ] + }, + "properties": { + "id": "meter-4184", + "maker": "Maker D", + "model": "Model 4184", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.29421539925427, + 30.086509134853866 + ] + }, + "properties": { + "id": "meter-4185", + "maker": "Maker C", + "model": "Model 4185", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49100817591914, + 18.114238129958157 + ] + }, + "properties": { + "id": "meter-4186", + "maker": "Maker E", + "model": "Model 4186", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.319457288555014, + 21.73364187208432 + ] + }, + "properties": { + "id": "meter-4187", + "maker": "Maker F", + "model": "Model 4187", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.56666263803512, + 25.109577454115957 + ] + }, + "properties": { + "id": "meter-4188", + "maker": "Maker F", + "model": "Model 4188", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58796129161187, + 25.36575514850684 + ] + }, + "properties": { + "id": "meter-4189", + "maker": "Maker I", + "model": "Model 4189", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.01757812765254, + 21.402566705632236 + ] + }, + "properties": { + "id": "meter-4190", + "maker": "Maker B", + "model": "Model 4190", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18630189012015, + 26.263905580935372 + ] + }, + "properties": { + "id": "meter-4191", + "maker": "Maker H", + "model": "Model 4191", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67434951094253, + 24.71267686136907 + ] + }, + "properties": { + "id": "meter-4192", + "maker": "Maker A", + "model": "Model 4192", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.229497957248654, + 21.484281811358706 + ] + }, + "properties": { + "id": "meter-4193", + "maker": "Maker E", + "model": "Model 4193", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09774948111178, + 17.36545442814499 + ] + }, + "properties": { + "id": "meter-4194", + "maker": "Maker E", + "model": "Model 4194", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.554389464811194, + 18.446698967962462 + ] + }, + "properties": { + "id": "meter-4195", + "maker": "Maker I", + "model": "Model 4195", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.68837114638534, + 21.28559190128276 + ] + }, + "properties": { + "id": "meter-4196", + "maker": "Maker D", + "model": "Model 4196", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.30641179539689, + 30.05472573951356 + ] + }, + "properties": { + "id": "meter-4197", + "maker": "Maker E", + "model": "Model 4197", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00306658468263, + 26.352638958997733 + ] + }, + "properties": { + "id": "meter-4198", + "maker": "Maker A", + "model": "Model 4198", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.983802572946104, + 26.32374778746024 + ] + }, + "properties": { + "id": "meter-4199", + "maker": "Maker E", + "model": "Model 4199", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.89188435198066, + 24.166283346014904 + ] + }, + "properties": { + "id": "meter-4200", + "maker": "Maker C", + "model": "Model 4200", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.110301543975545, + 17.428281655972604 + ] + }, + "properties": { + "id": "meter-4201", + "maker": "Maker D", + "model": "Model 4201", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.99855771578497, + 31.070224106639547 + ] + }, + "properties": { + "id": "meter-4202", + "maker": "Maker I", + "model": "Model 4202", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.21282940209257, + 30.971965397149344 + ] + }, + "properties": { + "id": "meter-4203", + "maker": "Maker E", + "model": "Model 4203", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.14738499953517, + 21.3022086924572 + ] + }, + "properties": { + "id": "meter-4204", + "maker": "Maker G", + "model": "Model 4204", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.89568883065869, + 26.52127835764694 + ] + }, + "properties": { + "id": "meter-4205", + "maker": "Maker F", + "model": "Model 4205", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63948196128207, + 21.497918736242323 + ] + }, + "properties": { + "id": "meter-4206", + "maker": "Maker C", + "model": "Model 4206", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03087877825583, + 26.53286584680269 + ] + }, + "properties": { + "id": "meter-4207", + "maker": "Maker G", + "model": "Model 4207", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.064021169973955, + 17.521968412688885 + ] + }, + "properties": { + "id": "meter-4208", + "maker": "Maker B", + "model": "Model 4208", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.001385298778246, + 31.05835664571503 + ] + }, + "properties": { + "id": "meter-4209", + "maker": "Maker A", + "model": "Model 4209", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23096279950992, + 21.305721055611833 + ] + }, + "properties": { + "id": "meter-4210", + "maker": "Maker A", + "model": "Model 4210", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.05491060574571, + 30.95869123141136 + ] + }, + "properties": { + "id": "meter-4211", + "maker": "Maker B", + "model": "Model 4211", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.582228328854484, + 28.35453508512438 + ] + }, + "properties": { + "id": "meter-4212", + "maker": "Maker F", + "model": "Model 4212", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21978609266968, + 29.90623196083993 + ] + }, + "properties": { + "id": "meter-4213", + "maker": "Maker B", + "model": "Model 4213", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.60224181626732, + 25.39320325190002 + ] + }, + "properties": { + "id": "meter-4214", + "maker": "Maker G", + "model": "Model 4214", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.11929957249204, + 24.142768451357043 + ] + }, + "properties": { + "id": "meter-4215", + "maker": "Maker E", + "model": "Model 4215", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.065924827863924, + 17.41693978550994 + ] + }, + "properties": { + "id": "meter-4216", + "maker": "Maker H", + "model": "Model 4216", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.41177304381389, + 27.519567658057394 + ] + }, + "properties": { + "id": "meter-4217", + "maker": "Maker I", + "model": "Model 4217", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.45547708600363, + 28.595295019147137 + ] + }, + "properties": { + "id": "meter-4218", + "maker": "Maker A", + "model": "Model 4218", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.532697664188674, + 28.46761980185624 + ] + }, + "properties": { + "id": "meter-4219", + "maker": "Maker J", + "model": "Model 4219", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13326418759468, + 26.246677645084407 + ] + }, + "properties": { + "id": "meter-4220", + "maker": "Maker J", + "model": "Model 4220", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20818347559965, + 26.287047052602173 + ] + }, + "properties": { + "id": "meter-4221", + "maker": "Maker G", + "model": "Model 4221", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14419913001763, + 17.5432484268008 + ] + }, + "properties": { + "id": "meter-4222", + "maker": "Maker A", + "model": "Model 4222", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.40681025005089, + 30.10618053982153 + ] + }, + "properties": { + "id": "meter-4223", + "maker": "Maker F", + "model": "Model 4223", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.58730136830607, + 27.43640906562384 + ] + }, + "properties": { + "id": "meter-4224", + "maker": "Maker G", + "model": "Model 4224", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87286783111641, + 26.59238204499717 + ] + }, + "properties": { + "id": "meter-4225", + "maker": "Maker A", + "model": "Model 4225", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.13177193666394, + 29.71687665735661 + ] + }, + "properties": { + "id": "meter-4226", + "maker": "Maker C", + "model": "Model 4226", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.51992860165971, + 19.76457091975575 + ] + }, + "properties": { + "id": "meter-4227", + "maker": "Maker E", + "model": "Model 4227", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.713617520521005, + 18.28446389109199 + ] + }, + "properties": { + "id": "meter-4228", + "maker": "Maker C", + "model": "Model 4228", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.092240811789615, + 24.23258309650781 + ] + }, + "properties": { + "id": "meter-4229", + "maker": "Maker J", + "model": "Model 4229", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.52667877181923, + 28.299062164245615 + ] + }, + "properties": { + "id": "meter-4230", + "maker": "Maker D", + "model": "Model 4230", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.70554166891164, + 24.51043244044658 + ] + }, + "properties": { + "id": "meter-4231", + "maker": "Maker I", + "model": "Model 4231", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.848856601811484, + 26.53501670580706 + ] + }, + "properties": { + "id": "meter-4232", + "maker": "Maker D", + "model": "Model 4232", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.65664066370361, + 25.355401905474984 + ] + }, + "properties": { + "id": "meter-4233", + "maker": "Maker E", + "model": "Model 4233", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50993923992157, + 28.370073399798528 + ] + }, + "properties": { + "id": "meter-4234", + "maker": "Maker G", + "model": "Model 4234", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.23735651004135, + 30.900596130369294 + ] + }, + "properties": { + "id": "meter-4235", + "maker": "Maker A", + "model": "Model 4235", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.866595561834544, + 21.398105675807923 + ] + }, + "properties": { + "id": "meter-4236", + "maker": "Maker J", + "model": "Model 4236", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.696573019599384, + 25.427161105384226 + ] + }, + "properties": { + "id": "meter-4237", + "maker": "Maker E", + "model": "Model 4237", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.84945860149138, + 26.24709867892731 + ] + }, + "properties": { + "id": "meter-4238", + "maker": "Maker B", + "model": "Model 4238", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93692159309507, + 26.407803364871153 + ] + }, + "properties": { + "id": "meter-4239", + "maker": "Maker D", + "model": "Model 4239", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.981684493357314, + 26.416088830130732 + ] + }, + "properties": { + "id": "meter-4240", + "maker": "Maker G", + "model": "Model 4240", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.310486135374454, + 17.714224997828516 + ] + }, + "properties": { + "id": "meter-4241", + "maker": "Maker G", + "model": "Model 4241", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.550764238779614, + 18.13202776456543 + ] + }, + "properties": { + "id": "meter-4242", + "maker": "Maker F", + "model": "Model 4242", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.49568957411849, + 24.609957167585243 + ] + }, + "properties": { + "id": "meter-4243", + "maker": "Maker H", + "model": "Model 4243", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.269014704192415, + 21.76384416032089 + ] + }, + "properties": { + "id": "meter-4244", + "maker": "Maker D", + "model": "Model 4244", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13529301161614, + 17.49205178940061 + ] + }, + "properties": { + "id": "meter-4245", + "maker": "Maker E", + "model": "Model 4245", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.81580454446804, + 27.535222729931917 + ] + }, + "properties": { + "id": "meter-4246", + "maker": "Maker D", + "model": "Model 4246", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68955792081863, + 24.71452751017276 + ] + }, + "properties": { + "id": "meter-4247", + "maker": "Maker B", + "model": "Model 4247", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.145989627481576, + 26.410794080757046 + ] + }, + "properties": { + "id": "meter-4248", + "maker": "Maker G", + "model": "Model 4248", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.75433301181163, + 28.164113589068258 + ] + }, + "properties": { + "id": "meter-4249", + "maker": "Maker B", + "model": "Model 4249", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.552283208474485, + 18.368705001923544 + ] + }, + "properties": { + "id": "meter-4250", + "maker": "Maker E", + "model": "Model 4250", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.24934038301356, + 30.17958917824899 + ] + }, + "properties": { + "id": "meter-4251", + "maker": "Maker I", + "model": "Model 4251", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.10969001395621, + 24.242544376631738 + ] + }, + "properties": { + "id": "meter-4252", + "maker": "Maker I", + "model": "Model 4252", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.49032449816526, + 20.087162030826796 + ] + }, + "properties": { + "id": "meter-4253", + "maker": "Maker B", + "model": "Model 4253", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52737406747077, + 17.94857750950303 + ] + }, + "properties": { + "id": "meter-4254", + "maker": "Maker D", + "model": "Model 4254", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.805876489966046, + 26.46059551634812 + ] + }, + "properties": { + "id": "meter-4255", + "maker": "Maker A", + "model": "Model 4255", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54970990142164, + 25.40663109261886 + ] + }, + "properties": { + "id": "meter-4256", + "maker": "Maker I", + "model": "Model 4256", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1882144599759, + 17.503239244433907 + ] + }, + "properties": { + "id": "meter-4257", + "maker": "Maker D", + "model": "Model 4257", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.18875964995165, + 30.031294108729416 + ] + }, + "properties": { + "id": "meter-4258", + "maker": "Maker E", + "model": "Model 4258", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13044153954211, + 17.490769686671246 + ] + }, + "properties": { + "id": "meter-4259", + "maker": "Maker F", + "model": "Model 4259", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.75154502162551, + 28.523222392503623 + ] + }, + "properties": { + "id": "meter-4260", + "maker": "Maker B", + "model": "Model 4260", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.72703835611904, + 21.609834003348038 + ] + }, + "properties": { + "id": "meter-4261", + "maker": "Maker I", + "model": "Model 4261", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.66576869403281, + 24.807519454027187 + ] + }, + "properties": { + "id": "meter-4262", + "maker": "Maker C", + "model": "Model 4262", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1727730086648, + 26.309026254247296 + ] + }, + "properties": { + "id": "meter-4263", + "maker": "Maker H", + "model": "Model 4263", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06825083380878, + 24.093182918854342 + ] + }, + "properties": { + "id": "meter-4264", + "maker": "Maker G", + "model": "Model 4264", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20172938398653, + 26.23999812141823 + ] + }, + "properties": { + "id": "meter-4265", + "maker": "Maker D", + "model": "Model 4265", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.41337269111025, + 20.01884509600966 + ] + }, + "properties": { + "id": "meter-4266", + "maker": "Maker G", + "model": "Model 4266", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.0366468487563, + 30.087227338038034 + ] + }, + "properties": { + "id": "meter-4267", + "maker": "Maker J", + "model": "Model 4267", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47492960377976, + 19.802444296766232 + ] + }, + "properties": { + "id": "meter-4268", + "maker": "Maker H", + "model": "Model 4268", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0568391333568, + 26.45156200313962 + ] + }, + "properties": { + "id": "meter-4269", + "maker": "Maker I", + "model": "Model 4269", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.854427499853514, + 21.34652374260062 + ] + }, + "properties": { + "id": "meter-4270", + "maker": "Maker E", + "model": "Model 4270", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.44772788789736, + 21.343554093315372 + ] + }, + "properties": { + "id": "meter-4271", + "maker": "Maker D", + "model": "Model 4271", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08479429729283, + 26.421738046623005 + ] + }, + "properties": { + "id": "meter-4272", + "maker": "Maker C", + "model": "Model 4272", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.62169802859554, + 28.440211268370344 + ] + }, + "properties": { + "id": "meter-4273", + "maker": "Maker F", + "model": "Model 4273", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.80443475236198, + 24.743476538030336 + ] + }, + "properties": { + "id": "meter-4274", + "maker": "Maker D", + "model": "Model 4274", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70622705860181, + 27.372452642624577 + ] + }, + "properties": { + "id": "meter-4275", + "maker": "Maker J", + "model": "Model 4275", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.708793515344084, + 21.377366899651584 + ] + }, + "properties": { + "id": "meter-4276", + "maker": "Maker I", + "model": "Model 4276", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61762811979815, + 21.243435173315397 + ] + }, + "properties": { + "id": "meter-4277", + "maker": "Maker B", + "model": "Model 4277", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.1110552029128, + 24.216654270643094 + ] + }, + "properties": { + "id": "meter-4278", + "maker": "Maker E", + "model": "Model 4278", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99773623214648, + 26.047249684296936 + ] + }, + "properties": { + "id": "meter-4279", + "maker": "Maker H", + "model": "Model 4279", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.17064011899355, + 24.30189714762042 + ] + }, + "properties": { + "id": "meter-4280", + "maker": "Maker B", + "model": "Model 4280", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.2060348394572, + 26.207450018767343 + ] + }, + "properties": { + "id": "meter-4281", + "maker": "Maker G", + "model": "Model 4281", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.20945541337797, + 17.42704125435469 + ] + }, + "properties": { + "id": "meter-4282", + "maker": "Maker C", + "model": "Model 4282", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.04907340443674, + 30.847810206564528 + ] + }, + "properties": { + "id": "meter-4283", + "maker": "Maker B", + "model": "Model 4283", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.634008815772944, + 24.484674252085217 + ] + }, + "properties": { + "id": "meter-4284", + "maker": "Maker H", + "model": "Model 4284", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.720382227461016, + 27.649623805301385 + ] + }, + "properties": { + "id": "meter-4285", + "maker": "Maker B", + "model": "Model 4285", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60757226097773, + 24.592106367894825 + ] + }, + "properties": { + "id": "meter-4286", + "maker": "Maker C", + "model": "Model 4286", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.02754353365821, + 29.843990743964596 + ] + }, + "properties": { + "id": "meter-4287", + "maker": "Maker H", + "model": "Model 4287", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77170578590936, + 21.24028748204943 + ] + }, + "properties": { + "id": "meter-4288", + "maker": "Maker J", + "model": "Model 4288", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.7591386242252, + 26.59903314856815 + ] + }, + "properties": { + "id": "meter-4289", + "maker": "Maker I", + "model": "Model 4289", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.067584148512765, + 30.820025824029607 + ] + }, + "properties": { + "id": "meter-4290", + "maker": "Maker D", + "model": "Model 4290", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04871571420416, + 24.091992204745402 + ] + }, + "properties": { + "id": "meter-4291", + "maker": "Maker B", + "model": "Model 4291", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.83118436239062, + 27.42409255845928 + ] + }, + "properties": { + "id": "meter-4292", + "maker": "Maker E", + "model": "Model 4292", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.002662403256586, + 26.49210737284537 + ] + }, + "properties": { + "id": "meter-4293", + "maker": "Maker D", + "model": "Model 4293", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95318633107729, + 26.414486683098218 + ] + }, + "properties": { + "id": "meter-4294", + "maker": "Maker E", + "model": "Model 4294", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.418606299320665, + 24.498139232480433 + ] + }, + "properties": { + "id": "meter-4295", + "maker": "Maker D", + "model": "Model 4295", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.69149260865672, + 24.722523466668118 + ] + }, + "properties": { + "id": "meter-4296", + "maker": "Maker A", + "model": "Model 4296", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20254225779456, + 26.28847536467844 + ] + }, + "properties": { + "id": "meter-4297", + "maker": "Maker I", + "model": "Model 4297", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.394698343322524, + 18.086547412783442 + ] + }, + "properties": { + "id": "meter-4298", + "maker": "Maker A", + "model": "Model 4298", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.92767458668286, + 18.27930132452055 + ] + }, + "properties": { + "id": "meter-4299", + "maker": "Maker D", + "model": "Model 4299", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20634694891385, + 26.27756589565403 + ] + }, + "properties": { + "id": "meter-4300", + "maker": "Maker D", + "model": "Model 4300", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53243811908234, + 18.12332299321492 + ] + }, + "properties": { + "id": "meter-4301", + "maker": "Maker C", + "model": "Model 4301", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.51472246345647, + 24.581555572567392 + ] + }, + "properties": { + "id": "meter-4302", + "maker": "Maker C", + "model": "Model 4302", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6823044285808, + 19.818081591233177 + ] + }, + "properties": { + "id": "meter-4303", + "maker": "Maker A", + "model": "Model 4303", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.633353775262904, + 25.131188055651997 + ] + }, + "properties": { + "id": "meter-4304", + "maker": "Maker F", + "model": "Model 4304", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.79364662262362, + 18.30630126987042 + ] + }, + "properties": { + "id": "meter-4305", + "maker": "Maker E", + "model": "Model 4305", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.34626387660492, + 21.500750879833465 + ] + }, + "properties": { + "id": "meter-4306", + "maker": "Maker H", + "model": "Model 4306", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.105880856918304, + 26.30029329516655 + ] + }, + "properties": { + "id": "meter-4307", + "maker": "Maker F", + "model": "Model 4307", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.63523131119384, + 25.3329258906208 + ] + }, + "properties": { + "id": "meter-4308", + "maker": "Maker H", + "model": "Model 4308", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.367265218720526, + 21.51588106591691 + ] + }, + "properties": { + "id": "meter-4309", + "maker": "Maker A", + "model": "Model 4309", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.09096806593705, + 31.035921095628108 + ] + }, + "properties": { + "id": "meter-4310", + "maker": "Maker A", + "model": "Model 4310", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.940877354264565, + 26.22255846598122 + ] + }, + "properties": { + "id": "meter-4311", + "maker": "Maker I", + "model": "Model 4311", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.66205703854731, + 27.49736129047747 + ] + }, + "properties": { + "id": "meter-4312", + "maker": "Maker J", + "model": "Model 4312", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.72242162785755, + 26.31294199348688 + ] + }, + "properties": { + "id": "meter-4313", + "maker": "Maker D", + "model": "Model 4313", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19254213832061, + 26.302300762150246 + ] + }, + "properties": { + "id": "meter-4314", + "maker": "Maker F", + "model": "Model 4314", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46231865561588, + 27.44810842303715 + ] + }, + "properties": { + "id": "meter-4315", + "maker": "Maker E", + "model": "Model 4315", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.29086148665616, + 21.51294656905176 + ] + }, + "properties": { + "id": "meter-4316", + "maker": "Maker I", + "model": "Model 4316", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.7672824443493, + 24.42914566718318 + ] + }, + "properties": { + "id": "meter-4317", + "maker": "Maker J", + "model": "Model 4317", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.71939271778246, + 24.760754299188633 + ] + }, + "properties": { + "id": "meter-4318", + "maker": "Maker I", + "model": "Model 4318", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99968105973738, + 26.359780671608398 + ] + }, + "properties": { + "id": "meter-4319", + "maker": "Maker E", + "model": "Model 4319", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14150207174793, + 26.291510066238015 + ] + }, + "properties": { + "id": "meter-4320", + "maker": "Maker E", + "model": "Model 4320", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.41916481143312, + 20.007845859946055 + ] + }, + "properties": { + "id": "meter-4321", + "maker": "Maker G", + "model": "Model 4321", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.088940160606576, + 21.698790793567433 + ] + }, + "properties": { + "id": "meter-4322", + "maker": "Maker B", + "model": "Model 4322", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.24580712587788, + 20.138218670516334 + ] + }, + "properties": { + "id": "meter-4323", + "maker": "Maker E", + "model": "Model 4323", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21030671468278, + 26.277547101474966 + ] + }, + "properties": { + "id": "meter-4324", + "maker": "Maker J", + "model": "Model 4324", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98380525286146, + 26.454940266496045 + ] + }, + "properties": { + "id": "meter-4325", + "maker": "Maker A", + "model": "Model 4325", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.060428794649326, + 26.219023427679684 + ] + }, + "properties": { + "id": "meter-4326", + "maker": "Maker F", + "model": "Model 4326", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72590816915905, + 18.231720960604303 + ] + }, + "properties": { + "id": "meter-4327", + "maker": "Maker B", + "model": "Model 4327", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.696414469013924, + 27.413866603964824 + ] + }, + "properties": { + "id": "meter-4328", + "maker": "Maker J", + "model": "Model 4328", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.68109648579425, + 28.581401345125194 + ] + }, + "properties": { + "id": "meter-4329", + "maker": "Maker C", + "model": "Model 4329", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.49925221276093, + 28.208722974347854 + ] + }, + "properties": { + "id": "meter-4330", + "maker": "Maker H", + "model": "Model 4330", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.66080600552884, + 28.37108688734793 + ] + }, + "properties": { + "id": "meter-4331", + "maker": "Maker B", + "model": "Model 4331", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.81032419163133, + 30.86410708857546 + ] + }, + "properties": { + "id": "meter-4332", + "maker": "Maker E", + "model": "Model 4332", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61524759181695, + 24.516571308999634 + ] + }, + "properties": { + "id": "meter-4333", + "maker": "Maker B", + "model": "Model 4333", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.73151505398051, + 28.1899681056689 + ] + }, + "properties": { + "id": "meter-4334", + "maker": "Maker H", + "model": "Model 4334", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08515054290403, + 26.235128565011678 + ] + }, + "properties": { + "id": "meter-4335", + "maker": "Maker J", + "model": "Model 4335", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.780966399513474, + 24.589500406111767 + ] + }, + "properties": { + "id": "meter-4336", + "maker": "Maker D", + "model": "Model 4336", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19006014772418, + 26.314379289863908 + ] + }, + "properties": { + "id": "meter-4337", + "maker": "Maker H", + "model": "Model 4337", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.592030327011955, + 28.3800149137635 + ] + }, + "properties": { + "id": "meter-4338", + "maker": "Maker F", + "model": "Model 4338", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.18781328869143, + 21.61865496507961 + ] + }, + "properties": { + "id": "meter-4339", + "maker": "Maker A", + "model": "Model 4339", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.592222707688514, + 18.302227120942558 + ] + }, + "properties": { + "id": "meter-4340", + "maker": "Maker E", + "model": "Model 4340", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.67250682024093, + 18.182061773207355 + ] + }, + "properties": { + "id": "meter-4341", + "maker": "Maker H", + "model": "Model 4341", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.480606665155726, + 25.21408125964119 + ] + }, + "properties": { + "id": "meter-4342", + "maker": "Maker I", + "model": "Model 4342", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.58525099224218, + 18.45394787474343 + ] + }, + "properties": { + "id": "meter-4343", + "maker": "Maker A", + "model": "Model 4343", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.38445863549284, + 21.73890713894356 + ] + }, + "properties": { + "id": "meter-4344", + "maker": "Maker I", + "model": "Model 4344", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.41036551426685, + 19.933763725066736 + ] + }, + "properties": { + "id": "meter-4345", + "maker": "Maker E", + "model": "Model 4345", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.9362522046332, + 30.729271261395397 + ] + }, + "properties": { + "id": "meter-4346", + "maker": "Maker B", + "model": "Model 4346", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0763517411677, + 24.076763851560713 + ] + }, + "properties": { + "id": "meter-4347", + "maker": "Maker B", + "model": "Model 4347", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00756064861193, + 26.43225539585206 + ] + }, + "properties": { + "id": "meter-4348", + "maker": "Maker D", + "model": "Model 4348", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25078090891364, + 21.485052010919432 + ] + }, + "properties": { + "id": "meter-4349", + "maker": "Maker B", + "model": "Model 4349", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.81732652816104, + 18.153148386290287 + ] + }, + "properties": { + "id": "meter-4350", + "maker": "Maker E", + "model": "Model 4350", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.988891037116964, + 24.30936141801383 + ] + }, + "properties": { + "id": "meter-4351", + "maker": "Maker I", + "model": "Model 4351", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97784708441081, + 17.718796792945827 + ] + }, + "properties": { + "id": "meter-4352", + "maker": "Maker G", + "model": "Model 4352", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.770274764800504, + 25.514012848753925 + ] + }, + "properties": { + "id": "meter-4353", + "maker": "Maker C", + "model": "Model 4353", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.429122793168176, + 18.282346037340297 + ] + }, + "properties": { + "id": "meter-4354", + "maker": "Maker F", + "model": "Model 4354", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.84468150069681, + 26.327044880824797 + ] + }, + "properties": { + "id": "meter-4355", + "maker": "Maker B", + "model": "Model 4355", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.22007910365948, + 29.834034563229363 + ] + }, + "properties": { + "id": "meter-4356", + "maker": "Maker G", + "model": "Model 4356", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.58857228511116, + 28.360159396239823 + ] + }, + "properties": { + "id": "meter-4357", + "maker": "Maker B", + "model": "Model 4357", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.339856101922535, + 18.43458761835118 + ] + }, + "properties": { + "id": "meter-4358", + "maker": "Maker J", + "model": "Model 4358", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.04764656425101, + 26.34765731484817 + ] + }, + "properties": { + "id": "meter-4359", + "maker": "Maker G", + "model": "Model 4359", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.38931413688429, + 19.810528412100197 + ] + }, + "properties": { + "id": "meter-4360", + "maker": "Maker F", + "model": "Model 4360", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.205256541069886, + 26.28046214735559 + ] + }, + "properties": { + "id": "meter-4361", + "maker": "Maker I", + "model": "Model 4361", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.89628597642749, + 26.425374451879012 + ] + }, + "properties": { + "id": "meter-4362", + "maker": "Maker G", + "model": "Model 4362", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.23359067878026, + 17.629391674922427 + ] + }, + "properties": { + "id": "meter-4363", + "maker": "Maker E", + "model": "Model 4363", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.139703061917494, + 21.32237941727821 + ] + }, + "properties": { + "id": "meter-4364", + "maker": "Maker G", + "model": "Model 4364", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.530083142385216, + 20.096863953235598 + ] + }, + "properties": { + "id": "meter-4365", + "maker": "Maker B", + "model": "Model 4365", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21324990451955, + 21.48429313083429 + ] + }, + "properties": { + "id": "meter-4366", + "maker": "Maker A", + "model": "Model 4366", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.50417737537375, + 25.257977247433175 + ] + }, + "properties": { + "id": "meter-4367", + "maker": "Maker D", + "model": "Model 4367", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.82054712941445, + 26.720063629571634 + ] + }, + "properties": { + "id": "meter-4368", + "maker": "Maker A", + "model": "Model 4368", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.31535131015875, + 29.941647630900903 + ] + }, + "properties": { + "id": "meter-4369", + "maker": "Maker B", + "model": "Model 4369", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.04357905237987, + 26.46884213564138 + ] + }, + "properties": { + "id": "meter-4370", + "maker": "Maker B", + "model": "Model 4370", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96590386009272, + 26.167283599248073 + ] + }, + "properties": { + "id": "meter-4371", + "maker": "Maker C", + "model": "Model 4371", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.998082362072836, + 26.526083445427947 + ] + }, + "properties": { + "id": "meter-4372", + "maker": "Maker E", + "model": "Model 4372", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12366175399971, + 26.142451731415598 + ] + }, + "properties": { + "id": "meter-4373", + "maker": "Maker B", + "model": "Model 4373", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.938356227729436, + 27.521240261605403 + ] + }, + "properties": { + "id": "meter-4374", + "maker": "Maker H", + "model": "Model 4374", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.715183367052774, + 24.58335022808131 + ] + }, + "properties": { + "id": "meter-4375", + "maker": "Maker I", + "model": "Model 4375", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.22314870494277, + 29.916551744422716 + ] + }, + "properties": { + "id": "meter-4376", + "maker": "Maker J", + "model": "Model 4376", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.121921306895175, + 26.24744229009309 + ] + }, + "properties": { + "id": "meter-4377", + "maker": "Maker C", + "model": "Model 4377", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17516284151337, + 26.41648165450623 + ] + }, + "properties": { + "id": "meter-4378", + "maker": "Maker B", + "model": "Model 4378", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.515719932716024, + 25.360018439466092 + ] + }, + "properties": { + "id": "meter-4379", + "maker": "Maker J", + "model": "Model 4379", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.803330465550175, + 18.251669786088218 + ] + }, + "properties": { + "id": "meter-4380", + "maker": "Maker E", + "model": "Model 4380", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.84522011131947, + 31.131110419092902 + ] + }, + "properties": { + "id": "meter-4381", + "maker": "Maker A", + "model": "Model 4381", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65576577958213, + 19.91410625753424 + ] + }, + "properties": { + "id": "meter-4382", + "maker": "Maker B", + "model": "Model 4382", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.384887551213666, + 24.700179802088698 + ] + }, + "properties": { + "id": "meter-4383", + "maker": "Maker D", + "model": "Model 4383", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.024141452317394, + 31.06817766778324 + ] + }, + "properties": { + "id": "meter-4384", + "maker": "Maker C", + "model": "Model 4384", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20354482598388, + 26.27275749595118 + ] + }, + "properties": { + "id": "meter-4385", + "maker": "Maker D", + "model": "Model 4385", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.706052321128354, + 24.78859040550181 + ] + }, + "properties": { + "id": "meter-4386", + "maker": "Maker I", + "model": "Model 4386", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.627600586986595, + 28.396669339251524 + ] + }, + "properties": { + "id": "meter-4387", + "maker": "Maker H", + "model": "Model 4387", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.981154192134724, + 26.25790637303511 + ] + }, + "properties": { + "id": "meter-4388", + "maker": "Maker D", + "model": "Model 4388", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55034089128649, + 27.529982285522465 + ] + }, + "properties": { + "id": "meter-4389", + "maker": "Maker F", + "model": "Model 4389", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.2807351147769, + 18.130182189600045 + ] + }, + "properties": { + "id": "meter-4390", + "maker": "Maker E", + "model": "Model 4390", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.44423628843134, + 24.34240792099538 + ] + }, + "properties": { + "id": "meter-4391", + "maker": "Maker E", + "model": "Model 4391", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73188514392036, + 18.30242121347141 + ] + }, + "properties": { + "id": "meter-4392", + "maker": "Maker E", + "model": "Model 4392", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06147220680505, + 24.091634374910296 + ] + }, + "properties": { + "id": "meter-4393", + "maker": "Maker H", + "model": "Model 4393", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.44108896425388, + 18.342302400003515 + ] + }, + "properties": { + "id": "meter-4394", + "maker": "Maker J", + "model": "Model 4394", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.690614893132484, + 27.509833956763007 + ] + }, + "properties": { + "id": "meter-4395", + "maker": "Maker J", + "model": "Model 4395", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.771022177623394, + 18.385841537246886 + ] + }, + "properties": { + "id": "meter-4396", + "maker": "Maker B", + "model": "Model 4396", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.7098537085708, + 21.54622146986317 + ] + }, + "properties": { + "id": "meter-4397", + "maker": "Maker I", + "model": "Model 4397", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.8704603214816, + 18.397232520917786 + ] + }, + "properties": { + "id": "meter-4398", + "maker": "Maker E", + "model": "Model 4398", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.93661212468177, + 24.229015377387007 + ] + }, + "properties": { + "id": "meter-4399", + "maker": "Maker I", + "model": "Model 4399", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.47570064522703, + 21.45081954179775 + ] + }, + "properties": { + "id": "meter-4400", + "maker": "Maker C", + "model": "Model 4400", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.64989384931015, + 24.64861290590522 + ] + }, + "properties": { + "id": "meter-4401", + "maker": "Maker A", + "model": "Model 4401", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.094370799042565, + 26.419148621381275 + ] + }, + "properties": { + "id": "meter-4402", + "maker": "Maker C", + "model": "Model 4402", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.08020239928805, + 21.45846095387677 + ] + }, + "properties": { + "id": "meter-4403", + "maker": "Maker E", + "model": "Model 4403", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.046845970854996, + 26.460600241362886 + ] + }, + "properties": { + "id": "meter-4404", + "maker": "Maker D", + "model": "Model 4404", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.806077206510835, + 18.564260653664885 + ] + }, + "properties": { + "id": "meter-4405", + "maker": "Maker D", + "model": "Model 4405", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69914566913324, + 18.43070299165037 + ] + }, + "properties": { + "id": "meter-4406", + "maker": "Maker J", + "model": "Model 4406", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.858084617670364, + 21.389280315096393 + ] + }, + "properties": { + "id": "meter-4407", + "maker": "Maker B", + "model": "Model 4407", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17383260358335, + 26.281205360389535 + ] + }, + "properties": { + "id": "meter-4408", + "maker": "Maker I", + "model": "Model 4408", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.4878026285093, + 24.790954750143978 + ] + }, + "properties": { + "id": "meter-4409", + "maker": "Maker F", + "model": "Model 4409", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.29962815263962, + 23.959359858356514 + ] + }, + "properties": { + "id": "meter-4410", + "maker": "Maker B", + "model": "Model 4410", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.39052265578156, + 17.481633483579863 + ] + }, + "properties": { + "id": "meter-4411", + "maker": "Maker J", + "model": "Model 4411", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.09632902210435, + 30.890916411284984 + ] + }, + "properties": { + "id": "meter-4412", + "maker": "Maker I", + "model": "Model 4412", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.276034481657625, + 30.091167484183558 + ] + }, + "properties": { + "id": "meter-4413", + "maker": "Maker C", + "model": "Model 4413", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04324812635411, + 17.365211723129047 + ] + }, + "properties": { + "id": "meter-4414", + "maker": "Maker C", + "model": "Model 4414", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.751720471960745, + 18.235675318819737 + ] + }, + "properties": { + "id": "meter-4415", + "maker": "Maker H", + "model": "Model 4415", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.82217819572754, + 18.333687913142317 + ] + }, + "properties": { + "id": "meter-4416", + "maker": "Maker E", + "model": "Model 4416", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.52160118461439, + 25.224733847500616 + ] + }, + "properties": { + "id": "meter-4417", + "maker": "Maker G", + "model": "Model 4417", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98390912876359, + 26.533901369782157 + ] + }, + "properties": { + "id": "meter-4418", + "maker": "Maker D", + "model": "Model 4418", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.033170100775635, + 26.358947428780844 + ] + }, + "properties": { + "id": "meter-4419", + "maker": "Maker J", + "model": "Model 4419", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.5126404841511, + 28.185123761709665 + ] + }, + "properties": { + "id": "meter-4420", + "maker": "Maker G", + "model": "Model 4420", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62935610619038, + 27.246212950249376 + ] + }, + "properties": { + "id": "meter-4421", + "maker": "Maker F", + "model": "Model 4421", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.90974595327418, + 18.13986829190653 + ] + }, + "properties": { + "id": "meter-4422", + "maker": "Maker F", + "model": "Model 4422", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.55155563399896, + 28.401376284980003 + ] + }, + "properties": { + "id": "meter-4423", + "maker": "Maker G", + "model": "Model 4423", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53295351993238, + 18.369331832593762 + ] + }, + "properties": { + "id": "meter-4424", + "maker": "Maker B", + "model": "Model 4424", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.89111558539522, + 31.078738300151564 + ] + }, + "properties": { + "id": "meter-4425", + "maker": "Maker C", + "model": "Model 4425", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.61414412432336, + 18.229111490865208 + ] + }, + "properties": { + "id": "meter-4426", + "maker": "Maker B", + "model": "Model 4426", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17820550787814, + 26.406942156658214 + ] + }, + "properties": { + "id": "meter-4427", + "maker": "Maker I", + "model": "Model 4427", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.49185717928908, + 25.32227882881661 + ] + }, + "properties": { + "id": "meter-4428", + "maker": "Maker C", + "model": "Model 4428", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.190364979708974, + 17.493425964037538 + ] + }, + "properties": { + "id": "meter-4429", + "maker": "Maker G", + "model": "Model 4429", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.18886442467895, + 17.48880166596468 + ] + }, + "properties": { + "id": "meter-4430", + "maker": "Maker E", + "model": "Model 4430", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.40757514211998, + 21.669914703649255 + ] + }, + "properties": { + "id": "meter-4431", + "maker": "Maker C", + "model": "Model 4431", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95765748349017, + 26.223514998418555 + ] + }, + "properties": { + "id": "meter-4432", + "maker": "Maker D", + "model": "Model 4432", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.96050712979373, + 24.207344524679407 + ] + }, + "properties": { + "id": "meter-4433", + "maker": "Maker J", + "model": "Model 4433", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.384523199285226, + 21.629560809336592 + ] + }, + "properties": { + "id": "meter-4434", + "maker": "Maker E", + "model": "Model 4434", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.45886840280809, + 24.76013297372924 + ] + }, + "properties": { + "id": "meter-4435", + "maker": "Maker F", + "model": "Model 4435", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.04435986091101, + 26.470187569284782 + ] + }, + "properties": { + "id": "meter-4436", + "maker": "Maker H", + "model": "Model 4436", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.2200588069675, + 29.986462190985932 + ] + }, + "properties": { + "id": "meter-4437", + "maker": "Maker B", + "model": "Model 4437", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.173480612394, + 21.540992406371096 + ] + }, + "properties": { + "id": "meter-4438", + "maker": "Maker G", + "model": "Model 4438", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.267335414683615, + 20.196612261970827 + ] + }, + "properties": { + "id": "meter-4439", + "maker": "Maker H", + "model": "Model 4439", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03074672011526, + 26.487079603605846 + ] + }, + "properties": { + "id": "meter-4440", + "maker": "Maker G", + "model": "Model 4440", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18533956812489, + 26.370438209520806 + ] + }, + "properties": { + "id": "meter-4441", + "maker": "Maker J", + "model": "Model 4441", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.862473967092406, + 24.516144476237077 + ] + }, + "properties": { + "id": "meter-4442", + "maker": "Maker F", + "model": "Model 4442", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.507221121623814, + 18.42460192500148 + ] + }, + "properties": { + "id": "meter-4443", + "maker": "Maker E", + "model": "Model 4443", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.301434203796035, + 18.18819619169294 + ] + }, + "properties": { + "id": "meter-4444", + "maker": "Maker F", + "model": "Model 4444", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42599203557269, + 19.98475614662365 + ] + }, + "properties": { + "id": "meter-4445", + "maker": "Maker J", + "model": "Model 4445", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.70808271424302, + 24.72978855651485 + ] + }, + "properties": { + "id": "meter-4446", + "maker": "Maker B", + "model": "Model 4446", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.12057959237525, + 24.26623189753936 + ] + }, + "properties": { + "id": "meter-4447", + "maker": "Maker H", + "model": "Model 4447", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9358758482829, + 26.209888586645523 + ] + }, + "properties": { + "id": "meter-4448", + "maker": "Maker I", + "model": "Model 4448", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87985274470331, + 26.3253381202474 + ] + }, + "properties": { + "id": "meter-4449", + "maker": "Maker E", + "model": "Model 4449", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.38200506773545, + 18.271973191647 + ] + }, + "properties": { + "id": "meter-4450", + "maker": "Maker G", + "model": "Model 4450", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13363102785249, + 17.509161465418625 + ] + }, + "properties": { + "id": "meter-4451", + "maker": "Maker C", + "model": "Model 4451", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.166688730429044, + 30.004701441734756 + ] + }, + "properties": { + "id": "meter-4452", + "maker": "Maker G", + "model": "Model 4452", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.91523091620459, + 31.029115206118043 + ] + }, + "properties": { + "id": "meter-4453", + "maker": "Maker E", + "model": "Model 4453", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.01988512004209, + 30.961960901072732 + ] + }, + "properties": { + "id": "meter-4454", + "maker": "Maker D", + "model": "Model 4454", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46119542562424, + 20.006299951416974 + ] + }, + "properties": { + "id": "meter-4455", + "maker": "Maker E", + "model": "Model 4455", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15146013017195, + 26.154197083618573 + ] + }, + "properties": { + "id": "meter-4456", + "maker": "Maker A", + "model": "Model 4456", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.030745793979925, + 26.21152881620679 + ] + }, + "properties": { + "id": "meter-4457", + "maker": "Maker E", + "model": "Model 4457", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.093145864830184, + 26.411311129605906 + ] + }, + "properties": { + "id": "meter-4458", + "maker": "Maker I", + "model": "Model 4458", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.12309737911113, + 24.37800543438813 + ] + }, + "properties": { + "id": "meter-4459", + "maker": "Maker F", + "model": "Model 4459", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.761378240189515, + 27.693067123688177 + ] + }, + "properties": { + "id": "meter-4460", + "maker": "Maker D", + "model": "Model 4460", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.235018621131594, + 21.61542547104837 + ] + }, + "properties": { + "id": "meter-4461", + "maker": "Maker F", + "model": "Model 4461", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.80101825783456, + 26.37137217193642 + ] + }, + "properties": { + "id": "meter-4462", + "maker": "Maker F", + "model": "Model 4462", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.005328702030454, + 31.05889163521092 + ] + }, + "properties": { + "id": "meter-4463", + "maker": "Maker G", + "model": "Model 4463", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14253384732911, + 17.49922811085529 + ] + }, + "properties": { + "id": "meter-4464", + "maker": "Maker H", + "model": "Model 4464", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.13826068618132, + 30.72225413430482 + ] + }, + "properties": { + "id": "meter-4465", + "maker": "Maker I", + "model": "Model 4465", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.61181432562811, + 25.452996263084646 + ] + }, + "properties": { + "id": "meter-4466", + "maker": "Maker C", + "model": "Model 4466", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.977746120625376, + 18.30375798371171 + ] + }, + "properties": { + "id": "meter-4467", + "maker": "Maker A", + "model": "Model 4467", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97346533669149, + 26.4435794298678 + ] + }, + "properties": { + "id": "meter-4468", + "maker": "Maker E", + "model": "Model 4468", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.61875182131631, + 24.883343792587745 + ] + }, + "properties": { + "id": "meter-4469", + "maker": "Maker H", + "model": "Model 4469", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.07776087152884, + 29.73927856087677 + ] + }, + "properties": { + "id": "meter-4470", + "maker": "Maker G", + "model": "Model 4470", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.308141373895644, + 21.473799270760964 + ] + }, + "properties": { + "id": "meter-4471", + "maker": "Maker C", + "model": "Model 4471", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.5064247223722, + 18.220820435796185 + ] + }, + "properties": { + "id": "meter-4472", + "maker": "Maker J", + "model": "Model 4472", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21661518014414, + 21.469658860717246 + ] + }, + "properties": { + "id": "meter-4473", + "maker": "Maker F", + "model": "Model 4473", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.585048547489215, + 24.605713262028207 + ] + }, + "properties": { + "id": "meter-4474", + "maker": "Maker J", + "model": "Model 4474", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.112869285988566, + 17.581102359515704 + ] + }, + "properties": { + "id": "meter-4475", + "maker": "Maker F", + "model": "Model 4475", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.70456993312274, + 18.251286257247916 + ] + }, + "properties": { + "id": "meter-4476", + "maker": "Maker J", + "model": "Model 4476", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0400485392172, + 24.10080916859323 + ] + }, + "properties": { + "id": "meter-4477", + "maker": "Maker F", + "model": "Model 4477", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.33424027770132, + 18.418164954090297 + ] + }, + "properties": { + "id": "meter-4478", + "maker": "Maker A", + "model": "Model 4478", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.424255315153005, + 25.19919811187033 + ] + }, + "properties": { + "id": "meter-4479", + "maker": "Maker E", + "model": "Model 4479", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.53823269760852, + 25.337202859274637 + ] + }, + "properties": { + "id": "meter-4480", + "maker": "Maker F", + "model": "Model 4480", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85385390547922, + 21.652291536071427 + ] + }, + "properties": { + "id": "meter-4481", + "maker": "Maker E", + "model": "Model 4481", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.04068462040008, + 26.44840422934392 + ] + }, + "properties": { + "id": "meter-4482", + "maker": "Maker J", + "model": "Model 4482", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52324224911188, + 18.457418745247253 + ] + }, + "properties": { + "id": "meter-4483", + "maker": "Maker I", + "model": "Model 4483", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.51023261968141, + 24.56949694624609 + ] + }, + "properties": { + "id": "meter-4484", + "maker": "Maker C", + "model": "Model 4484", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26795091949927, + 21.46809907117338 + ] + }, + "properties": { + "id": "meter-4485", + "maker": "Maker J", + "model": "Model 4485", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.17958638842976, + 29.828918069181473 + ] + }, + "properties": { + "id": "meter-4486", + "maker": "Maker E", + "model": "Model 4486", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.48088395546396, + 17.92036465031142 + ] + }, + "properties": { + "id": "meter-4487", + "maker": "Maker J", + "model": "Model 4487", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.66640067501574, + 24.68561953681719 + ] + }, + "properties": { + "id": "meter-4488", + "maker": "Maker A", + "model": "Model 4488", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.08326054351606, + 29.94145570930227 + ] + }, + "properties": { + "id": "meter-4489", + "maker": "Maker J", + "model": "Model 4489", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.88114048480072, + 24.827713349203606 + ] + }, + "properties": { + "id": "meter-4490", + "maker": "Maker D", + "model": "Model 4490", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62610714895447, + 27.474528569187196 + ] + }, + "properties": { + "id": "meter-4491", + "maker": "Maker C", + "model": "Model 4491", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.95847025028275, + 18.25781630737109 + ] + }, + "properties": { + "id": "meter-4492", + "maker": "Maker B", + "model": "Model 4492", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.18021138763546, + 21.484608475975918 + ] + }, + "properties": { + "id": "meter-4493", + "maker": "Maker D", + "model": "Model 4493", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.6538054231037, + 28.547420847474086 + ] + }, + "properties": { + "id": "meter-4494", + "maker": "Maker B", + "model": "Model 4494", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.84549390462014, + 24.500038765903923 + ] + }, + "properties": { + "id": "meter-4495", + "maker": "Maker C", + "model": "Model 4495", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.80036844370641, + 21.24128873109383 + ] + }, + "properties": { + "id": "meter-4496", + "maker": "Maker E", + "model": "Model 4496", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.746751588710715, + 28.32801779578774 + ] + }, + "properties": { + "id": "meter-4497", + "maker": "Maker B", + "model": "Model 4497", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.047922689503515, + 26.349931238129237 + ] + }, + "properties": { + "id": "meter-4498", + "maker": "Maker B", + "model": "Model 4498", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66024349620606, + 18.530260097400966 + ] + }, + "properties": { + "id": "meter-4499", + "maker": "Maker J", + "model": "Model 4499", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10197245863655, + 26.310934097189655 + ] + }, + "properties": { + "id": "meter-4500", + "maker": "Maker G", + "model": "Model 4500", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.974279717146544, + 26.367973004186545 + ] + }, + "properties": { + "id": "meter-4501", + "maker": "Maker B", + "model": "Model 4501", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.55288415216874, + 25.37309484829313 + ] + }, + "properties": { + "id": "meter-4502", + "maker": "Maker E", + "model": "Model 4502", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0097336184365, + 26.50691453493384 + ] + }, + "properties": { + "id": "meter-4503", + "maker": "Maker H", + "model": "Model 4503", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97520466084819, + 26.518509621845812 + ] + }, + "properties": { + "id": "meter-4504", + "maker": "Maker E", + "model": "Model 4504", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.34467828645114, + 19.93681902047338 + ] + }, + "properties": { + "id": "meter-4505", + "maker": "Maker J", + "model": "Model 4505", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.5748270830992, + 18.187081275992345 + ] + }, + "properties": { + "id": "meter-4506", + "maker": "Maker B", + "model": "Model 4506", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.53813133236824, + 24.637301412508798 + ] + }, + "properties": { + "id": "meter-4507", + "maker": "Maker G", + "model": "Model 4507", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.232017747330396, + 21.560672589121054 + ] + }, + "properties": { + "id": "meter-4508", + "maker": "Maker J", + "model": "Model 4508", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.639829406167905, + 27.57676768707794 + ] + }, + "properties": { + "id": "meter-4509", + "maker": "Maker B", + "model": "Model 4509", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60791568883841, + 24.519098133533337 + ] + }, + "properties": { + "id": "meter-4510", + "maker": "Maker G", + "model": "Model 4510", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98682510240102, + 26.422732322898426 + ] + }, + "properties": { + "id": "meter-4511", + "maker": "Maker I", + "model": "Model 4511", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.06448211436386, + 17.374166953389064 + ] + }, + "properties": { + "id": "meter-4512", + "maker": "Maker C", + "model": "Model 4512", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.86853430493327, + 18.353815035673524 + ] + }, + "properties": { + "id": "meter-4513", + "maker": "Maker C", + "model": "Model 4513", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.24931804999666, + 26.383943311251848 + ] + }, + "properties": { + "id": "meter-4514", + "maker": "Maker J", + "model": "Model 4514", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.98888931111272, + 24.2945558815543 + ] + }, + "properties": { + "id": "meter-4515", + "maker": "Maker E", + "model": "Model 4515", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.727143198108884, + 18.308419640090847 + ] + }, + "properties": { + "id": "meter-4516", + "maker": "Maker F", + "model": "Model 4516", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.96573603280199, + 21.179774044372536 + ] + }, + "properties": { + "id": "meter-4517", + "maker": "Maker C", + "model": "Model 4517", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.457784677215436, + 18.29550488796473 + ] + }, + "properties": { + "id": "meter-4518", + "maker": "Maker B", + "model": "Model 4518", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.32024048088283, + 17.543188897984926 + ] + }, + "properties": { + "id": "meter-4519", + "maker": "Maker A", + "model": "Model 4519", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.008441658588566, + 26.335445796646606 + ] + }, + "properties": { + "id": "meter-4520", + "maker": "Maker E", + "model": "Model 4520", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.52097743902693, + 28.21967100186847 + ] + }, + "properties": { + "id": "meter-4521", + "maker": "Maker F", + "model": "Model 4521", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.36220550822705, + 20.094407135113578 + ] + }, + "properties": { + "id": "meter-4522", + "maker": "Maker F", + "model": "Model 4522", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.87475941358961, + 26.264712937509714 + ] + }, + "properties": { + "id": "meter-4523", + "maker": "Maker C", + "model": "Model 4523", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.40421434935157, + 24.708520662305755 + ] + }, + "properties": { + "id": "meter-4524", + "maker": "Maker G", + "model": "Model 4524", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97719018099629, + 26.560786603076433 + ] + }, + "properties": { + "id": "meter-4525", + "maker": "Maker B", + "model": "Model 4525", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17821821186204, + 26.23562398836758 + ] + }, + "properties": { + "id": "meter-4526", + "maker": "Maker F", + "model": "Model 4526", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05797393801818, + 24.109697575880197 + ] + }, + "properties": { + "id": "meter-4527", + "maker": "Maker B", + "model": "Model 4527", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66267122985512, + 18.527107946617896 + ] + }, + "properties": { + "id": "meter-4528", + "maker": "Maker E", + "model": "Model 4528", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.31444808452063, + 30.151036606633298 + ] + }, + "properties": { + "id": "meter-4529", + "maker": "Maker G", + "model": "Model 4529", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.459964315444545, + 21.501660210387286 + ] + }, + "properties": { + "id": "meter-4530", + "maker": "Maker A", + "model": "Model 4530", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65416237064549, + 27.325952055686493 + ] + }, + "properties": { + "id": "meter-4531", + "maker": "Maker B", + "model": "Model 4531", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.70903168425717, + 24.26233342173796 + ] + }, + "properties": { + "id": "meter-4532", + "maker": "Maker B", + "model": "Model 4532", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09689083898331, + 17.348687409527972 + ] + }, + "properties": { + "id": "meter-4533", + "maker": "Maker H", + "model": "Model 4533", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.68999048369613, + 24.32285260373383 + ] + }, + "properties": { + "id": "meter-4534", + "maker": "Maker C", + "model": "Model 4534", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.29385827777484, + 21.672797025147407 + ] + }, + "properties": { + "id": "meter-4535", + "maker": "Maker B", + "model": "Model 4535", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.58374786462124, + 18.043471508272017 + ] + }, + "properties": { + "id": "meter-4536", + "maker": "Maker E", + "model": "Model 4536", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.5875804692276, + 19.988322187466142 + ] + }, + "properties": { + "id": "meter-4537", + "maker": "Maker C", + "model": "Model 4537", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.78480997450542, + 27.51590928508389 + ] + }, + "properties": { + "id": "meter-4538", + "maker": "Maker G", + "model": "Model 4538", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4920481557856, + 27.423827841439014 + ] + }, + "properties": { + "id": "meter-4539", + "maker": "Maker D", + "model": "Model 4539", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.978474366250545, + 18.33658769944054 + ] + }, + "properties": { + "id": "meter-4540", + "maker": "Maker E", + "model": "Model 4540", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17557555547061, + 17.580922821941456 + ] + }, + "properties": { + "id": "meter-4541", + "maker": "Maker B", + "model": "Model 4541", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.36213519160315, + 21.47833700226319 + ] + }, + "properties": { + "id": "meter-4542", + "maker": "Maker A", + "model": "Model 4542", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.60852868676758, + 28.41958335880642 + ] + }, + "properties": { + "id": "meter-4543", + "maker": "Maker B", + "model": "Model 4543", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.2564475209074, + 31.049332319020074 + ] + }, + "properties": { + "id": "meter-4544", + "maker": "Maker B", + "model": "Model 4544", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18085166667262, + 26.185029705939552 + ] + }, + "properties": { + "id": "meter-4545", + "maker": "Maker J", + "model": "Model 4545", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.41987752082859, + 28.34649312972562 + ] + }, + "properties": { + "id": "meter-4546", + "maker": "Maker F", + "model": "Model 4546", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49568291241628, + 18.251061052499253 + ] + }, + "properties": { + "id": "meter-4547", + "maker": "Maker I", + "model": "Model 4547", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.007985949493694, + 30.938617584432986 + ] + }, + "properties": { + "id": "meter-4548", + "maker": "Maker A", + "model": "Model 4548", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.67976884733681, + 18.32309992779573 + ] + }, + "properties": { + "id": "meter-4549", + "maker": "Maker B", + "model": "Model 4549", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.70483677095942, + 28.27612820123661 + ] + }, + "properties": { + "id": "meter-4550", + "maker": "Maker B", + "model": "Model 4550", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.967784409296996, + 26.315059758476192 + ] + }, + "properties": { + "id": "meter-4551", + "maker": "Maker F", + "model": "Model 4551", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.39121696148041, + 18.22767232962307 + ] + }, + "properties": { + "id": "meter-4552", + "maker": "Maker F", + "model": "Model 4552", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.56480447995304, + 28.50222895649074 + ] + }, + "properties": { + "id": "meter-4553", + "maker": "Maker E", + "model": "Model 4553", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.71508437599914, + 24.556734621763212 + ] + }, + "properties": { + "id": "meter-4554", + "maker": "Maker D", + "model": "Model 4554", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.60518024373353, + 28.301260910578527 + ] + }, + "properties": { + "id": "meter-4555", + "maker": "Maker I", + "model": "Model 4555", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.19306808345742, + 21.427948977661096 + ] + }, + "properties": { + "id": "meter-4556", + "maker": "Maker B", + "model": "Model 4556", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.718088447361545, + 24.430337718142702 + ] + }, + "properties": { + "id": "meter-4557", + "maker": "Maker H", + "model": "Model 4557", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.15069915914686, + 21.55184078828747 + ] + }, + "properties": { + "id": "meter-4558", + "maker": "Maker F", + "model": "Model 4558", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.53896761895695, + 24.60404922574044 + ] + }, + "properties": { + "id": "meter-4559", + "maker": "Maker A", + "model": "Model 4559", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.395552591476, + 21.45870047845843 + ] + }, + "properties": { + "id": "meter-4560", + "maker": "Maker C", + "model": "Model 4560", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.41763142795332, + 20.043805157020874 + ] + }, + "properties": { + "id": "meter-4561", + "maker": "Maker F", + "model": "Model 4561", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.15871792041052, + 21.556565381284663 + ] + }, + "properties": { + "id": "meter-4562", + "maker": "Maker B", + "model": "Model 4562", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0258783123579, + 26.45991336193675 + ] + }, + "properties": { + "id": "meter-4563", + "maker": "Maker G", + "model": "Model 4563", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.997581625219965, + 26.47169245468017 + ] + }, + "properties": { + "id": "meter-4564", + "maker": "Maker C", + "model": "Model 4564", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23285681239749, + 21.48631127583387 + ] + }, + "properties": { + "id": "meter-4565", + "maker": "Maker B", + "model": "Model 4565", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.762713401160205, + 26.592104487681976 + ] + }, + "properties": { + "id": "meter-4566", + "maker": "Maker F", + "model": "Model 4566", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.70995631888952, + 28.15414531251869 + ] + }, + "properties": { + "id": "meter-4567", + "maker": "Maker H", + "model": "Model 4567", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.22276409121263, + 29.730417381532984 + ] + }, + "properties": { + "id": "meter-4568", + "maker": "Maker J", + "model": "Model 4568", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.09614070584153, + 31.244231075131665 + ] + }, + "properties": { + "id": "meter-4569", + "maker": "Maker B", + "model": "Model 4569", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.526743278627656, + 18.291400976320343 + ] + }, + "properties": { + "id": "meter-4570", + "maker": "Maker E", + "model": "Model 4570", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73324575612285, + 18.330922215595518 + ] + }, + "properties": { + "id": "meter-4571", + "maker": "Maker C", + "model": "Model 4571", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.35708837009318, + 19.80599248602526 + ] + }, + "properties": { + "id": "meter-4572", + "maker": "Maker D", + "model": "Model 4572", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46763581530763, + 20.011301849745827 + ] + }, + "properties": { + "id": "meter-4573", + "maker": "Maker G", + "model": "Model 4573", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.90182576585733, + 26.445310121145436 + ] + }, + "properties": { + "id": "meter-4574", + "maker": "Maker G", + "model": "Model 4574", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.58996518922452, + 24.467420608674377 + ] + }, + "properties": { + "id": "meter-4575", + "maker": "Maker I", + "model": "Model 4575", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45400707820668, + 18.15633133844238 + ] + }, + "properties": { + "id": "meter-4576", + "maker": "Maker I", + "model": "Model 4576", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.71704066344482, + 25.157846106638573 + ] + }, + "properties": { + "id": "meter-4577", + "maker": "Maker F", + "model": "Model 4577", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.87782303819722, + 21.596065293367257 + ] + }, + "properties": { + "id": "meter-4578", + "maker": "Maker G", + "model": "Model 4578", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98369020641656, + 26.503883811592022 + ] + }, + "properties": { + "id": "meter-4579", + "maker": "Maker I", + "model": "Model 4579", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.32949918773759, + 17.601902808421737 + ] + }, + "properties": { + "id": "meter-4580", + "maker": "Maker F", + "model": "Model 4580", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.69395287066172, + 25.18904252064854 + ] + }, + "properties": { + "id": "meter-4581", + "maker": "Maker J", + "model": "Model 4581", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.662117046612636, + 18.20296469124199 + ] + }, + "properties": { + "id": "meter-4582", + "maker": "Maker A", + "model": "Model 4582", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.592251177306764, + 28.475743234909018 + ] + }, + "properties": { + "id": "meter-4583", + "maker": "Maker B", + "model": "Model 4583", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.68435626635416, + 28.34538430994454 + ] + }, + "properties": { + "id": "meter-4584", + "maker": "Maker I", + "model": "Model 4584", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.0721292179665, + 21.427072778691898 + ] + }, + "properties": { + "id": "meter-4585", + "maker": "Maker E", + "model": "Model 4585", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.941424931687244, + 26.533645063321245 + ] + }, + "properties": { + "id": "meter-4586", + "maker": "Maker J", + "model": "Model 4586", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.625135061940725, + 21.256647244681478 + ] + }, + "properties": { + "id": "meter-4587", + "maker": "Maker I", + "model": "Model 4587", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.02906993232628, + 21.463365748031862 + ] + }, + "properties": { + "id": "meter-4588", + "maker": "Maker A", + "model": "Model 4588", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1180157755246, + 26.37010642188492 + ] + }, + "properties": { + "id": "meter-4589", + "maker": "Maker G", + "model": "Model 4589", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85312011834471, + 21.64092950702753 + ] + }, + "properties": { + "id": "meter-4590", + "maker": "Maker I", + "model": "Model 4590", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.060403555947815, + 30.901602702589535 + ] + }, + "properties": { + "id": "meter-4591", + "maker": "Maker H", + "model": "Model 4591", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.17131243876717, + 21.392872475938496 + ] + }, + "properties": { + "id": "meter-4592", + "maker": "Maker F", + "model": "Model 4592", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.86320574805896, + 24.168510588977405 + ] + }, + "properties": { + "id": "meter-4593", + "maker": "Maker D", + "model": "Model 4593", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.303645862298794, + 18.06440301561712 + ] + }, + "properties": { + "id": "meter-4594", + "maker": "Maker C", + "model": "Model 4594", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.0341135986164, + 21.502107646324383 + ] + }, + "properties": { + "id": "meter-4595", + "maker": "Maker E", + "model": "Model 4595", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05218473314525, + 24.257513690558678 + ] + }, + "properties": { + "id": "meter-4596", + "maker": "Maker C", + "model": "Model 4596", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.216819292068294, + 31.00461472579857 + ] + }, + "properties": { + "id": "meter-4597", + "maker": "Maker C", + "model": "Model 4597", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14819094637991, + 17.40586585178136 + ] + }, + "properties": { + "id": "meter-4598", + "maker": "Maker J", + "model": "Model 4598", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.262224963772276, + 21.610407959457653 + ] + }, + "properties": { + "id": "meter-4599", + "maker": "Maker J", + "model": "Model 4599", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.263112452921256, + 21.49221720672967 + ] + }, + "properties": { + "id": "meter-4600", + "maker": "Maker C", + "model": "Model 4600", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.72527646335216, + 19.970044887165383 + ] + }, + "properties": { + "id": "meter-4601", + "maker": "Maker E", + "model": "Model 4601", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.18624804092125, + 17.4363697340594 + ] + }, + "properties": { + "id": "meter-4602", + "maker": "Maker H", + "model": "Model 4602", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73650182446391, + 18.556041679767088 + ] + }, + "properties": { + "id": "meter-4603", + "maker": "Maker B", + "model": "Model 4603", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92271256209358, + 26.40948022639428 + ] + }, + "properties": { + "id": "meter-4604", + "maker": "Maker C", + "model": "Model 4604", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.52929212318587, + 25.254761646960777 + ] + }, + "properties": { + "id": "meter-4605", + "maker": "Maker B", + "model": "Model 4605", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42301333959667, + 27.52631940659712 + ] + }, + "properties": { + "id": "meter-4606", + "maker": "Maker C", + "model": "Model 4606", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.930896213246, + 26.180573974516633 + ] + }, + "properties": { + "id": "meter-4607", + "maker": "Maker H", + "model": "Model 4607", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.685238013623504, + 18.157188274930803 + ] + }, + "properties": { + "id": "meter-4608", + "maker": "Maker I", + "model": "Model 4608", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.70874109817603, + 24.517455329852424 + ] + }, + "properties": { + "id": "meter-4609", + "maker": "Maker F", + "model": "Model 4609", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.914403746227464, + 26.329458710150604 + ] + }, + "properties": { + "id": "meter-4610", + "maker": "Maker B", + "model": "Model 4610", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0164607312649, + 26.50556932395819 + ] + }, + "properties": { + "id": "meter-4611", + "maker": "Maker I", + "model": "Model 4611", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.78865428384309, + 18.253751831050966 + ] + }, + "properties": { + "id": "meter-4612", + "maker": "Maker C", + "model": "Model 4612", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.38501390189581, + 24.561580804777513 + ] + }, + "properties": { + "id": "meter-4613", + "maker": "Maker J", + "model": "Model 4613", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02927541715223, + 17.50034406625246 + ] + }, + "properties": { + "id": "meter-4614", + "maker": "Maker A", + "model": "Model 4614", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.75080423313429, + 24.550255917127846 + ] + }, + "properties": { + "id": "meter-4615", + "maker": "Maker E", + "model": "Model 4615", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71696381778192, + 18.162258738893186 + ] + }, + "properties": { + "id": "meter-4616", + "maker": "Maker C", + "model": "Model 4616", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.85005710496985, + 17.39153177754089 + ] + }, + "properties": { + "id": "meter-4617", + "maker": "Maker F", + "model": "Model 4617", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.097679411729395, + 26.42714348172605 + ] + }, + "properties": { + "id": "meter-4618", + "maker": "Maker J", + "model": "Model 4618", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.0856374571714, + 21.544632949717908 + ] + }, + "properties": { + "id": "meter-4619", + "maker": "Maker B", + "model": "Model 4619", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.147735296058414, + 17.67584196682762 + ] + }, + "properties": { + "id": "meter-4620", + "maker": "Maker F", + "model": "Model 4620", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.859943915287865, + 26.425132043015676 + ] + }, + "properties": { + "id": "meter-4621", + "maker": "Maker C", + "model": "Model 4621", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17294840453829, + 17.49243730019146 + ] + }, + "properties": { + "id": "meter-4622", + "maker": "Maker G", + "model": "Model 4622", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54759015135257, + 25.408440041566024 + ] + }, + "properties": { + "id": "meter-4623", + "maker": "Maker F", + "model": "Model 4623", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00002683574991, + 26.236552039657717 + ] + }, + "properties": { + "id": "meter-4624", + "maker": "Maker C", + "model": "Model 4624", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.16681555641675, + 17.54898889446638 + ] + }, + "properties": { + "id": "meter-4625", + "maker": "Maker I", + "model": "Model 4625", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.51089946853116, + 18.25837470416241 + ] + }, + "properties": { + "id": "meter-4626", + "maker": "Maker B", + "model": "Model 4626", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98469546171931, + 26.202211802524655 + ] + }, + "properties": { + "id": "meter-4627", + "maker": "Maker D", + "model": "Model 4627", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.581356383646636, + 25.348207187671655 + ] + }, + "properties": { + "id": "meter-4628", + "maker": "Maker C", + "model": "Model 4628", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.75451380143437, + 25.330163259585873 + ] + }, + "properties": { + "id": "meter-4629", + "maker": "Maker J", + "model": "Model 4629", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.74758432325857, + 18.367995897452605 + ] + }, + "properties": { + "id": "meter-4630", + "maker": "Maker E", + "model": "Model 4630", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45305370824056, + 20.063990875213612 + ] + }, + "properties": { + "id": "meter-4631", + "maker": "Maker G", + "model": "Model 4631", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.60382950407621, + 24.825092774683394 + ] + }, + "properties": { + "id": "meter-4632", + "maker": "Maker A", + "model": "Model 4632", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.19954105299051, + 17.464511342918353 + ] + }, + "properties": { + "id": "meter-4633", + "maker": "Maker I", + "model": "Model 4633", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.801775260008704, + 21.42429662137225 + ] + }, + "properties": { + "id": "meter-4634", + "maker": "Maker A", + "model": "Model 4634", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.56056060819365, + 19.909632133694014 + ] + }, + "properties": { + "id": "meter-4635", + "maker": "Maker D", + "model": "Model 4635", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.38468912327164, + 24.61740237089122 + ] + }, + "properties": { + "id": "meter-4636", + "maker": "Maker A", + "model": "Model 4636", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09107014020389, + 17.706036341091956 + ] + }, + "properties": { + "id": "meter-4637", + "maker": "Maker F", + "model": "Model 4637", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.40960162287374, + 19.98983392284535 + ] + }, + "properties": { + "id": "meter-4638", + "maker": "Maker G", + "model": "Model 4638", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.916580649352845, + 26.63578590483549 + ] + }, + "properties": { + "id": "meter-4639", + "maker": "Maker H", + "model": "Model 4639", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91429953526162, + 26.565509601084447 + ] + }, + "properties": { + "id": "meter-4640", + "maker": "Maker F", + "model": "Model 4640", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.63558052619689, + 19.843610407440266 + ] + }, + "properties": { + "id": "meter-4641", + "maker": "Maker B", + "model": "Model 4641", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.24304732179765, + 30.95994406616567 + ] + }, + "properties": { + "id": "meter-4642", + "maker": "Maker C", + "model": "Model 4642", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.734292378607364, + 27.491148039436773 + ] + }, + "properties": { + "id": "meter-4643", + "maker": "Maker E", + "model": "Model 4643", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49627622888431, + 18.23789795069667 + ] + }, + "properties": { + "id": "meter-4644", + "maker": "Maker A", + "model": "Model 4644", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.65937533380967, + 24.503307219829917 + ] + }, + "properties": { + "id": "meter-4645", + "maker": "Maker B", + "model": "Model 4645", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.3437655246847, + 18.413807367879116 + ] + }, + "properties": { + "id": "meter-4646", + "maker": "Maker G", + "model": "Model 4646", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57132241854935, + 25.170606757009953 + ] + }, + "properties": { + "id": "meter-4647", + "maker": "Maker C", + "model": "Model 4647", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.15241192661855, + 17.48622313343438 + ] + }, + "properties": { + "id": "meter-4648", + "maker": "Maker I", + "model": "Model 4648", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.96818109131206, + 30.975942441357304 + ] + }, + "properties": { + "id": "meter-4649", + "maker": "Maker F", + "model": "Model 4649", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.36437665302265, + 18.264666329698798 + ] + }, + "properties": { + "id": "meter-4650", + "maker": "Maker D", + "model": "Model 4650", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.343291806543306, + 18.20766390596749 + ] + }, + "properties": { + "id": "meter-4651", + "maker": "Maker J", + "model": "Model 4651", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.12431082386642, + 21.60403952119589 + ] + }, + "properties": { + "id": "meter-4652", + "maker": "Maker J", + "model": "Model 4652", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72635214972825, + 18.0464270023097 + ] + }, + "properties": { + "id": "meter-4653", + "maker": "Maker I", + "model": "Model 4653", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.19408735306819, + 24.147356458708334 + ] + }, + "properties": { + "id": "meter-4654", + "maker": "Maker A", + "model": "Model 4654", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.82369010869989, + 26.314832796269688 + ] + }, + "properties": { + "id": "meter-4655", + "maker": "Maker H", + "model": "Model 4655", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.80355950972701, + 21.665228458461424 + ] + }, + "properties": { + "id": "meter-4656", + "maker": "Maker I", + "model": "Model 4656", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.66996212993871, + 24.660658735714758 + ] + }, + "properties": { + "id": "meter-4657", + "maker": "Maker G", + "model": "Model 4657", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.49510525820804, + 20.097563081662706 + ] + }, + "properties": { + "id": "meter-4658", + "maker": "Maker B", + "model": "Model 4658", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.816893850965904, + 26.37295412957304 + ] + }, + "properties": { + "id": "meter-4659", + "maker": "Maker E", + "model": "Model 4659", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.474240133880365, + 18.13585440644433 + ] + }, + "properties": { + "id": "meter-4660", + "maker": "Maker D", + "model": "Model 4660", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08347385218935, + 26.366562745642252 + ] + }, + "properties": { + "id": "meter-4661", + "maker": "Maker C", + "model": "Model 4661", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.51385435063511, + 18.236649767459696 + ] + }, + "properties": { + "id": "meter-4662", + "maker": "Maker C", + "model": "Model 4662", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.687695229308815, + 24.427058047201633 + ] + }, + "properties": { + "id": "meter-4663", + "maker": "Maker C", + "model": "Model 4663", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.144453986386424, + 24.15512664519397 + ] + }, + "properties": { + "id": "meter-4664", + "maker": "Maker E", + "model": "Model 4664", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.11033198011097, + 29.989972535796547 + ] + }, + "properties": { + "id": "meter-4665", + "maker": "Maker E", + "model": "Model 4665", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.37392022193384, + 21.473308166724046 + ] + }, + "properties": { + "id": "meter-4666", + "maker": "Maker A", + "model": "Model 4666", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21343670503464, + 26.23898048678759 + ] + }, + "properties": { + "id": "meter-4667", + "maker": "Maker F", + "model": "Model 4667", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07481864206075, + 24.221270815064713 + ] + }, + "properties": { + "id": "meter-4668", + "maker": "Maker A", + "model": "Model 4668", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.32434297486979, + 24.198674786083537 + ] + }, + "properties": { + "id": "meter-4669", + "maker": "Maker C", + "model": "Model 4669", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.889317317331596, + 26.46811541964317 + ] + }, + "properties": { + "id": "meter-4670", + "maker": "Maker C", + "model": "Model 4670", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17271718071148, + 26.133800302090496 + ] + }, + "properties": { + "id": "meter-4671", + "maker": "Maker A", + "model": "Model 4671", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01189415150038, + 26.363448285934275 + ] + }, + "properties": { + "id": "meter-4672", + "maker": "Maker A", + "model": "Model 4672", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.59651780327947, + 27.439063774092435 + ] + }, + "properties": { + "id": "meter-4673", + "maker": "Maker A", + "model": "Model 4673", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.52767504738779, + 24.66936163828043 + ] + }, + "properties": { + "id": "meter-4674", + "maker": "Maker I", + "model": "Model 4674", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10866214679192, + 26.187232792797726 + ] + }, + "properties": { + "id": "meter-4675", + "maker": "Maker H", + "model": "Model 4675", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.616044445509935, + 28.293452497416485 + ] + }, + "properties": { + "id": "meter-4676", + "maker": "Maker F", + "model": "Model 4676", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13461619680072, + 26.173520778755208 + ] + }, + "properties": { + "id": "meter-4677", + "maker": "Maker D", + "model": "Model 4677", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.32428173108534, + 21.661545870754367 + ] + }, + "properties": { + "id": "meter-4678", + "maker": "Maker E", + "model": "Model 4678", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.956979176731984, + 26.318949214879737 + ] + }, + "properties": { + "id": "meter-4679", + "maker": "Maker G", + "model": "Model 4679", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.125370545428716, + 31.21671522227777 + ] + }, + "properties": { + "id": "meter-4680", + "maker": "Maker D", + "model": "Model 4680", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.7525014099652, + 24.67767280076075 + ] + }, + "properties": { + "id": "meter-4681", + "maker": "Maker F", + "model": "Model 4681", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.685220442236165, + 21.351991848697512 + ] + }, + "properties": { + "id": "meter-4682", + "maker": "Maker I", + "model": "Model 4682", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.5141964902427, + 18.4708646669975 + ] + }, + "properties": { + "id": "meter-4683", + "maker": "Maker E", + "model": "Model 4683", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.214401431704495, + 29.956195807752266 + ] + }, + "properties": { + "id": "meter-4684", + "maker": "Maker F", + "model": "Model 4684", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62821893535125, + 19.906821857198256 + ] + }, + "properties": { + "id": "meter-4685", + "maker": "Maker G", + "model": "Model 4685", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.61883228400735, + 18.416375710870103 + ] + }, + "properties": { + "id": "meter-4686", + "maker": "Maker C", + "model": "Model 4686", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.48511437368468, + 28.613055849320308 + ] + }, + "properties": { + "id": "meter-4687", + "maker": "Maker F", + "model": "Model 4687", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.53850948737543, + 25.5194234027828 + ] + }, + "properties": { + "id": "meter-4688", + "maker": "Maker I", + "model": "Model 4688", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01588403801892, + 26.33323573345366 + ] + }, + "properties": { + "id": "meter-4689", + "maker": "Maker J", + "model": "Model 4689", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.71005340244599, + 21.425170469692087 + ] + }, + "properties": { + "id": "meter-4690", + "maker": "Maker H", + "model": "Model 4690", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.82424606033564, + 26.597307785046056 + ] + }, + "properties": { + "id": "meter-4691", + "maker": "Maker H", + "model": "Model 4691", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.769091348807834, + 21.517129826344192 + ] + }, + "properties": { + "id": "meter-4692", + "maker": "Maker D", + "model": "Model 4692", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.7066726483394, + 18.224996046726453 + ] + }, + "properties": { + "id": "meter-4693", + "maker": "Maker I", + "model": "Model 4693", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.2774439600269, + 29.722461268839147 + ] + }, + "properties": { + "id": "meter-4694", + "maker": "Maker F", + "model": "Model 4694", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.9132611036713, + 21.585578830734168 + ] + }, + "properties": { + "id": "meter-4695", + "maker": "Maker H", + "model": "Model 4695", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.67056286550388, + 18.344282864134986 + ] + }, + "properties": { + "id": "meter-4696", + "maker": "Maker F", + "model": "Model 4696", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.59122549068885, + 27.611035828052493 + ] + }, + "properties": { + "id": "meter-4697", + "maker": "Maker G", + "model": "Model 4697", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06689787779323, + 26.20054132094134 + ] + }, + "properties": { + "id": "meter-4698", + "maker": "Maker H", + "model": "Model 4698", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.15383969273916, + 29.925969115378546 + ] + }, + "properties": { + "id": "meter-4699", + "maker": "Maker C", + "model": "Model 4699", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.256386991059564, + 21.459933744108923 + ] + }, + "properties": { + "id": "meter-4700", + "maker": "Maker A", + "model": "Model 4700", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.44226481400846, + 27.531929162225072 + ] + }, + "properties": { + "id": "meter-4701", + "maker": "Maker H", + "model": "Model 4701", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.46505860183063, + 24.528273791698254 + ] + }, + "properties": { + "id": "meter-4702", + "maker": "Maker G", + "model": "Model 4702", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.03656893926744, + 29.99781629700216 + ] + }, + "properties": { + "id": "meter-4703", + "maker": "Maker B", + "model": "Model 4703", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.623013382798106, + 18.473291854346773 + ] + }, + "properties": { + "id": "meter-4704", + "maker": "Maker C", + "model": "Model 4704", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.48794221640253, + 18.51294308374254 + ] + }, + "properties": { + "id": "meter-4705", + "maker": "Maker H", + "model": "Model 4705", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03858650272796, + 30.969061661558253 + ] + }, + "properties": { + "id": "meter-4706", + "maker": "Maker I", + "model": "Model 4706", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0618071760147, + 24.10521679628212 + ] + }, + "properties": { + "id": "meter-4707", + "maker": "Maker A", + "model": "Model 4707", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.806236291859406, + 21.660217234828025 + ] + }, + "properties": { + "id": "meter-4708", + "maker": "Maker E", + "model": "Model 4708", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.26629222626658, + 20.20723358441954 + ] + }, + "properties": { + "id": "meter-4709", + "maker": "Maker G", + "model": "Model 4709", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.309463954744146, + 17.471335176129838 + ] + }, + "properties": { + "id": "meter-4710", + "maker": "Maker F", + "model": "Model 4710", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68105573069449, + 24.71542424008331 + ] + }, + "properties": { + "id": "meter-4711", + "maker": "Maker B", + "model": "Model 4711", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.710847057642084, + 19.884863456326602 + ] + }, + "properties": { + "id": "meter-4712", + "maker": "Maker H", + "model": "Model 4712", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.70599658620918, + 24.706244772402876 + ] + }, + "properties": { + "id": "meter-4713", + "maker": "Maker I", + "model": "Model 4713", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.7819861873891, + 18.292094488145928 + ] + }, + "properties": { + "id": "meter-4714", + "maker": "Maker J", + "model": "Model 4714", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.414139543530894, + 21.54883740215124 + ] + }, + "properties": { + "id": "meter-4715", + "maker": "Maker F", + "model": "Model 4715", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.46644629085084, + 25.50096062141538 + ] + }, + "properties": { + "id": "meter-4716", + "maker": "Maker B", + "model": "Model 4716", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.21368642298246, + 31.174396063934118 + ] + }, + "properties": { + "id": "meter-4717", + "maker": "Maker I", + "model": "Model 4717", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.71635434984607, + 27.544869248912836 + ] + }, + "properties": { + "id": "meter-4718", + "maker": "Maker E", + "model": "Model 4718", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03136372405156, + 26.29743616067462 + ] + }, + "properties": { + "id": "meter-4719", + "maker": "Maker C", + "model": "Model 4719", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.869255825555456, + 24.270198558639176 + ] + }, + "properties": { + "id": "meter-4720", + "maker": "Maker J", + "model": "Model 4720", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.34672726751749, + 30.075472103362 + ] + }, + "properties": { + "id": "meter-4721", + "maker": "Maker E", + "model": "Model 4721", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04069742381449, + 24.3178629358297 + ] + }, + "properties": { + "id": "meter-4722", + "maker": "Maker H", + "model": "Model 4722", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.367936313556385, + 28.539673478135054 + ] + }, + "properties": { + "id": "meter-4723", + "maker": "Maker F", + "model": "Model 4723", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69882583961648, + 18.285696719852904 + ] + }, + "properties": { + "id": "meter-4724", + "maker": "Maker A", + "model": "Model 4724", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.64986242468149, + 27.4513944820707 + ] + }, + "properties": { + "id": "meter-4725", + "maker": "Maker H", + "model": "Model 4725", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.16482094101497, + 30.03208634817944 + ] + }, + "properties": { + "id": "meter-4726", + "maker": "Maker G", + "model": "Model 4726", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85630096317615, + 24.54756706252734 + ] + }, + "properties": { + "id": "meter-4727", + "maker": "Maker C", + "model": "Model 4727", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.74402010637525, + 24.385910414530372 + ] + }, + "properties": { + "id": "meter-4728", + "maker": "Maker G", + "model": "Model 4728", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60734556110415, + 24.54271614252528 + ] + }, + "properties": { + "id": "meter-4729", + "maker": "Maker D", + "model": "Model 4729", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.06570513665511, + 31.00850772904781 + ] + }, + "properties": { + "id": "meter-4730", + "maker": "Maker I", + "model": "Model 4730", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.5962784243521, + 24.50435866139883 + ] + }, + "properties": { + "id": "meter-4731", + "maker": "Maker E", + "model": "Model 4731", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.035692658646674, + 26.353153852468694 + ] + }, + "properties": { + "id": "meter-4732", + "maker": "Maker B", + "model": "Model 4732", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.18996213450398, + 21.400381284557813 + ] + }, + "properties": { + "id": "meter-4733", + "maker": "Maker J", + "model": "Model 4733", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.054244908353105, + 17.62489833496796 + ] + }, + "properties": { + "id": "meter-4734", + "maker": "Maker E", + "model": "Model 4734", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.953703787393394, + 26.464260687628048 + ] + }, + "properties": { + "id": "meter-4735", + "maker": "Maker A", + "model": "Model 4735", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.40620034542599, + 20.008567290935435 + ] + }, + "properties": { + "id": "meter-4736", + "maker": "Maker D", + "model": "Model 4736", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.89895813231526, + 26.363752416657988 + ] + }, + "properties": { + "id": "meter-4737", + "maker": "Maker G", + "model": "Model 4737", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.629582288748075, + 18.482872828291733 + ] + }, + "properties": { + "id": "meter-4738", + "maker": "Maker C", + "model": "Model 4738", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67353363993682, + 21.23825908063177 + ] + }, + "properties": { + "id": "meter-4739", + "maker": "Maker I", + "model": "Model 4739", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.924711089140416, + 26.195397778905605 + ] + }, + "properties": { + "id": "meter-4740", + "maker": "Maker C", + "model": "Model 4740", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05162517176745, + 26.41190284219048 + ] + }, + "properties": { + "id": "meter-4741", + "maker": "Maker A", + "model": "Model 4741", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20964613928905, + 26.27533493218155 + ] + }, + "properties": { + "id": "meter-4742", + "maker": "Maker I", + "model": "Model 4742", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.92201804385879, + 29.94011669275254 + ] + }, + "properties": { + "id": "meter-4743", + "maker": "Maker D", + "model": "Model 4743", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.90580775169719, + 26.48277224827403 + ] + }, + "properties": { + "id": "meter-4744", + "maker": "Maker A", + "model": "Model 4744", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.20945024587985, + 26.26549950101226 + ] + }, + "properties": { + "id": "meter-4745", + "maker": "Maker E", + "model": "Model 4745", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.16992624570587, + 26.286411703754123 + ] + }, + "properties": { + "id": "meter-4746", + "maker": "Maker J", + "model": "Model 4746", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.96857548673179, + 30.928736804830073 + ] + }, + "properties": { + "id": "meter-4747", + "maker": "Maker E", + "model": "Model 4747", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.378385882119375, + 24.379021462986255 + ] + }, + "properties": { + "id": "meter-4748", + "maker": "Maker D", + "model": "Model 4748", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.90933053589065, + 26.054631012356914 + ] + }, + "properties": { + "id": "meter-4749", + "maker": "Maker E", + "model": "Model 4749", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.87521924061224, + 28.408511548407684 + ] + }, + "properties": { + "id": "meter-4750", + "maker": "Maker F", + "model": "Model 4750", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.133660845263755, + 17.480264294123863 + ] + }, + "properties": { + "id": "meter-4751", + "maker": "Maker D", + "model": "Model 4751", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.16984558356549, + 26.302336151309824 + ] + }, + "properties": { + "id": "meter-4752", + "maker": "Maker F", + "model": "Model 4752", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.70216981542527, + 24.525823522992997 + ] + }, + "properties": { + "id": "meter-4753", + "maker": "Maker E", + "model": "Model 4753", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85729625086406, + 21.42285647800432 + ] + }, + "properties": { + "id": "meter-4754", + "maker": "Maker F", + "model": "Model 4754", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.09281065531688, + 30.85068867587515 + ] + }, + "properties": { + "id": "meter-4755", + "maker": "Maker A", + "model": "Model 4755", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.082933681477115, + 30.98303079972256 + ] + }, + "properties": { + "id": "meter-4756", + "maker": "Maker C", + "model": "Model 4756", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.240801186775116, + 23.955268660261808 + ] + }, + "properties": { + "id": "meter-4757", + "maker": "Maker F", + "model": "Model 4757", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.34220850404517, + 18.462563101252393 + ] + }, + "properties": { + "id": "meter-4758", + "maker": "Maker F", + "model": "Model 4758", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96884256461158, + 26.49172952122049 + ] + }, + "properties": { + "id": "meter-4759", + "maker": "Maker A", + "model": "Model 4759", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.2496082483978, + 18.186811688328287 + ] + }, + "properties": { + "id": "meter-4760", + "maker": "Maker G", + "model": "Model 4760", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.76525813173475, + 28.41091863298066 + ] + }, + "properties": { + "id": "meter-4761", + "maker": "Maker F", + "model": "Model 4761", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.505432390655265, + 18.41677127228115 + ] + }, + "properties": { + "id": "meter-4762", + "maker": "Maker H", + "model": "Model 4762", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.90044949185885, + 24.89767055198685 + ] + }, + "properties": { + "id": "meter-4763", + "maker": "Maker G", + "model": "Model 4763", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.48003424403818, + 29.925046465459587 + ] + }, + "properties": { + "id": "meter-4764", + "maker": "Maker I", + "model": "Model 4764", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23459609129004, + 21.637470877240997 + ] + }, + "properties": { + "id": "meter-4765", + "maker": "Maker D", + "model": "Model 4765", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.22858662568275, + 24.18020303088018 + ] + }, + "properties": { + "id": "meter-4766", + "maker": "Maker B", + "model": "Model 4766", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.82568577422585, + 27.751146876996966 + ] + }, + "properties": { + "id": "meter-4767", + "maker": "Maker I", + "model": "Model 4767", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.4473444203886, + 24.565716300287104 + ] + }, + "properties": { + "id": "meter-4768", + "maker": "Maker F", + "model": "Model 4768", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.276662950060135, + 24.235707954117053 + ] + }, + "properties": { + "id": "meter-4769", + "maker": "Maker J", + "model": "Model 4769", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.57795778789558, + 18.344833250054226 + ] + }, + "properties": { + "id": "meter-4770", + "maker": "Maker B", + "model": "Model 4770", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.147432814727985, + 26.298809196330293 + ] + }, + "properties": { + "id": "meter-4771", + "maker": "Maker C", + "model": "Model 4771", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92309351138584, + 26.238930946777078 + ] + }, + "properties": { + "id": "meter-4772", + "maker": "Maker H", + "model": "Model 4772", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.582744500113286, + 25.20101778500761 + ] + }, + "properties": { + "id": "meter-4773", + "maker": "Maker J", + "model": "Model 4773", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12155431385118, + 17.50206623161384 + ] + }, + "properties": { + "id": "meter-4774", + "maker": "Maker D", + "model": "Model 4774", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.845720764740655, + 26.355784742525547 + ] + }, + "properties": { + "id": "meter-4775", + "maker": "Maker E", + "model": "Model 4775", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.74691683602834, + 26.64511579867822 + ] + }, + "properties": { + "id": "meter-4776", + "maker": "Maker F", + "model": "Model 4776", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.979895848486365, + 26.190584855340266 + ] + }, + "properties": { + "id": "meter-4777", + "maker": "Maker F", + "model": "Model 4777", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21491705936197, + 30.113212731284097 + ] + }, + "properties": { + "id": "meter-4778", + "maker": "Maker D", + "model": "Model 4778", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.16194397436909, + 31.1794113043221 + ] + }, + "properties": { + "id": "meter-4779", + "maker": "Maker G", + "model": "Model 4779", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.615486704972305, + 27.674664598054324 + ] + }, + "properties": { + "id": "meter-4780", + "maker": "Maker A", + "model": "Model 4780", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93945604486192, + 26.52042796875914 + ] + }, + "properties": { + "id": "meter-4781", + "maker": "Maker E", + "model": "Model 4781", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.96251868773781, + 29.805385952114644 + ] + }, + "properties": { + "id": "meter-4782", + "maker": "Maker B", + "model": "Model 4782", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.235062645580285, + 21.67481304276181 + ] + }, + "properties": { + "id": "meter-4783", + "maker": "Maker B", + "model": "Model 4783", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00573896824322, + 26.239827900361867 + ] + }, + "properties": { + "id": "meter-4784", + "maker": "Maker J", + "model": "Model 4784", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.47464057528064, + 21.56848455858065 + ] + }, + "properties": { + "id": "meter-4785", + "maker": "Maker D", + "model": "Model 4785", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.22139733278973, + 26.271776248437874 + ] + }, + "properties": { + "id": "meter-4786", + "maker": "Maker A", + "model": "Model 4786", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.006798634165726, + 26.439902628014288 + ] + }, + "properties": { + "id": "meter-4787", + "maker": "Maker I", + "model": "Model 4787", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.210925482291934, + 17.570234217391075 + ] + }, + "properties": { + "id": "meter-4788", + "maker": "Maker G", + "model": "Model 4788", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.59017430176736, + 24.497314295954595 + ] + }, + "properties": { + "id": "meter-4789", + "maker": "Maker F", + "model": "Model 4789", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.13244717851887, + 29.71671416755906 + ] + }, + "properties": { + "id": "meter-4790", + "maker": "Maker J", + "model": "Model 4790", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.050099061877525, + 31.123395750974634 + ] + }, + "properties": { + "id": "meter-4791", + "maker": "Maker G", + "model": "Model 4791", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.80149180461452, + 28.531250880794527 + ] + }, + "properties": { + "id": "meter-4792", + "maker": "Maker A", + "model": "Model 4792", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.20612981280201, + 21.33042697536015 + ] + }, + "properties": { + "id": "meter-4793", + "maker": "Maker E", + "model": "Model 4793", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05845512950314, + 24.13718984771436 + ] + }, + "properties": { + "id": "meter-4794", + "maker": "Maker G", + "model": "Model 4794", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.93189692291778, + 17.326392107351293 + ] + }, + "properties": { + "id": "meter-4795", + "maker": "Maker D", + "model": "Model 4795", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.585700385250114, + 24.63171260980882 + ] + }, + "properties": { + "id": "meter-4796", + "maker": "Maker F", + "model": "Model 4796", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.965551160248864, + 30.928039971607102 + ] + }, + "properties": { + "id": "meter-4797", + "maker": "Maker A", + "model": "Model 4797", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.813260818473175, + 24.454854119555343 + ] + }, + "properties": { + "id": "meter-4798", + "maker": "Maker H", + "model": "Model 4798", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.51531398598893, + 19.98460880873505 + ] + }, + "properties": { + "id": "meter-4799", + "maker": "Maker C", + "model": "Model 4799", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.70049931003553, + 18.25369569249273 + ] + }, + "properties": { + "id": "meter-4800", + "maker": "Maker B", + "model": "Model 4800", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.293195247845595, + 30.15755862944456 + ] + }, + "properties": { + "id": "meter-4801", + "maker": "Maker G", + "model": "Model 4801", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.62202987824094, + 28.391610952314025 + ] + }, + "properties": { + "id": "meter-4802", + "maker": "Maker H", + "model": "Model 4802", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.575887841265526, + 20.1734802105593 + ] + }, + "properties": { + "id": "meter-4803", + "maker": "Maker H", + "model": "Model 4803", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.792553198827655, + 18.163559655217348 + ] + }, + "properties": { + "id": "meter-4804", + "maker": "Maker G", + "model": "Model 4804", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.930559646190034, + 26.495453054321565 + ] + }, + "properties": { + "id": "meter-4805", + "maker": "Maker B", + "model": "Model 4805", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.643175355862816, + 27.42605452610706 + ] + }, + "properties": { + "id": "meter-4806", + "maker": "Maker G", + "model": "Model 4806", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72230880750716, + 18.380520286438703 + ] + }, + "properties": { + "id": "meter-4807", + "maker": "Maker I", + "model": "Model 4807", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.97977875099669, + 31.008343299229274 + ] + }, + "properties": { + "id": "meter-4808", + "maker": "Maker F", + "model": "Model 4808", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.58230203335299, + 20.15276865950008 + ] + }, + "properties": { + "id": "meter-4809", + "maker": "Maker E", + "model": "Model 4809", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17776094017702, + 17.7197436759602 + ] + }, + "properties": { + "id": "meter-4810", + "maker": "Maker J", + "model": "Model 4810", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.85443202392157, + 30.79468114305199 + ] + }, + "properties": { + "id": "meter-4811", + "maker": "Maker C", + "model": "Model 4811", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.70000124784497, + 21.19776603808415 + ] + }, + "properties": { + "id": "meter-4812", + "maker": "Maker E", + "model": "Model 4812", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92782918914573, + 26.593758698317224 + ] + }, + "properties": { + "id": "meter-4813", + "maker": "Maker A", + "model": "Model 4813", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50394274327557, + 18.208899160221055 + ] + }, + "properties": { + "id": "meter-4814", + "maker": "Maker H", + "model": "Model 4814", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98700992465272, + 26.738333711098623 + ] + }, + "properties": { + "id": "meter-4815", + "maker": "Maker D", + "model": "Model 4815", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.14459156515649, + 29.94569171554911 + ] + }, + "properties": { + "id": "meter-4816", + "maker": "Maker F", + "model": "Model 4816", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.716781514748, + 24.45564122493472 + ] + }, + "properties": { + "id": "meter-4817", + "maker": "Maker A", + "model": "Model 4817", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.74707247755653, + 24.705645695112615 + ] + }, + "properties": { + "id": "meter-4818", + "maker": "Maker H", + "model": "Model 4818", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.988167770395165, + 26.572697864381343 + ] + }, + "properties": { + "id": "meter-4819", + "maker": "Maker D", + "model": "Model 4819", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.60389074348982, + 28.43491336314562 + ] + }, + "properties": { + "id": "meter-4820", + "maker": "Maker B", + "model": "Model 4820", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73176196606033, + 18.148362186725 + ] + }, + "properties": { + "id": "meter-4821", + "maker": "Maker F", + "model": "Model 4821", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.30690030493662, + 20.027639000223335 + ] + }, + "properties": { + "id": "meter-4822", + "maker": "Maker D", + "model": "Model 4822", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.039212252876254, + 30.898461462852524 + ] + }, + "properties": { + "id": "meter-4823", + "maker": "Maker I", + "model": "Model 4823", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.07660333235923, + 26.48176109966684 + ] + }, + "properties": { + "id": "meter-4824", + "maker": "Maker H", + "model": "Model 4824", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.92187136225178, + 30.96639121267495 + ] + }, + "properties": { + "id": "meter-4825", + "maker": "Maker B", + "model": "Model 4825", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.68277658673368, + 28.330613623985897 + ] + }, + "properties": { + "id": "meter-4826", + "maker": "Maker A", + "model": "Model 4826", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.63975570583627, + 18.40976292863921 + ] + }, + "properties": { + "id": "meter-4827", + "maker": "Maker J", + "model": "Model 4827", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.80735866668813, + 25.463182192529178 + ] + }, + "properties": { + "id": "meter-4828", + "maker": "Maker A", + "model": "Model 4828", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92924104537084, + 26.23375699339888 + ] + }, + "properties": { + "id": "meter-4829", + "maker": "Maker H", + "model": "Model 4829", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19312218592, + 26.2514013181127 + ] + }, + "properties": { + "id": "meter-4830", + "maker": "Maker G", + "model": "Model 4830", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.516290983845394, + 18.26123676493565 + ] + }, + "properties": { + "id": "meter-4831", + "maker": "Maker A", + "model": "Model 4831", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03252338832018, + 26.37557107250241 + ] + }, + "properties": { + "id": "meter-4832", + "maker": "Maker I", + "model": "Model 4832", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.748479446311954, + 18.150695368317777 + ] + }, + "properties": { + "id": "meter-4833", + "maker": "Maker J", + "model": "Model 4833", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03685148539733, + 26.439808928632573 + ] + }, + "properties": { + "id": "meter-4834", + "maker": "Maker B", + "model": "Model 4834", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.39199895670015, + 21.36644723447698 + ] + }, + "properties": { + "id": "meter-4835", + "maker": "Maker I", + "model": "Model 4835", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.22562868131, + 24.2185707338567 + ] + }, + "properties": { + "id": "meter-4836", + "maker": "Maker A", + "model": "Model 4836", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.13234005641563, + 30.927886077629587 + ] + }, + "properties": { + "id": "meter-4837", + "maker": "Maker F", + "model": "Model 4837", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.0591924903549, + 29.806267315757047 + ] + }, + "properties": { + "id": "meter-4838", + "maker": "Maker E", + "model": "Model 4838", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.206430316825355, + 24.261510570696576 + ] + }, + "properties": { + "id": "meter-4839", + "maker": "Maker C", + "model": "Model 4839", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.577865368089874, + 18.463266005125664 + ] + }, + "properties": { + "id": "meter-4840", + "maker": "Maker J", + "model": "Model 4840", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.53003354375008, + 25.19285882364499 + ] + }, + "properties": { + "id": "meter-4841", + "maker": "Maker C", + "model": "Model 4841", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.31694599290963, + 21.464307718890733 + ] + }, + "properties": { + "id": "meter-4842", + "maker": "Maker F", + "model": "Model 4842", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.740624439027115, + 27.455380893008385 + ] + }, + "properties": { + "id": "meter-4843", + "maker": "Maker J", + "model": "Model 4843", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.75656918686236, + 27.33719290899462 + ] + }, + "properties": { + "id": "meter-4844", + "maker": "Maker C", + "model": "Model 4844", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.324250649587015, + 29.87450758767285 + ] + }, + "properties": { + "id": "meter-4845", + "maker": "Maker A", + "model": "Model 4845", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6975207723454, + 27.499622578646623 + ] + }, + "properties": { + "id": "meter-4846", + "maker": "Maker C", + "model": "Model 4846", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.51962428176968, + 27.284400220398357 + ] + }, + "properties": { + "id": "meter-4847", + "maker": "Maker E", + "model": "Model 4847", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.976618099781234, + 26.63024246060064 + ] + }, + "properties": { + "id": "meter-4848", + "maker": "Maker H", + "model": "Model 4848", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.052402849295056, + 26.742140836331025 + ] + }, + "properties": { + "id": "meter-4849", + "maker": "Maker H", + "model": "Model 4849", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.30006122523483, + 21.484884370942744 + ] + }, + "properties": { + "id": "meter-4850", + "maker": "Maker F", + "model": "Model 4850", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.70396087736406, + 21.431103113616913 + ] + }, + "properties": { + "id": "meter-4851", + "maker": "Maker A", + "model": "Model 4851", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.10541477715734, + 24.1052091878883 + ] + }, + "properties": { + "id": "meter-4852", + "maker": "Maker J", + "model": "Model 4852", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.60989481697418, + 28.408130656548874 + ] + }, + "properties": { + "id": "meter-4853", + "maker": "Maker E", + "model": "Model 4853", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11941499893625, + 17.51925303385643 + ] + }, + "properties": { + "id": "meter-4854", + "maker": "Maker A", + "model": "Model 4854", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.37958276321372, + 20.01851946696 + ] + }, + "properties": { + "id": "meter-4855", + "maker": "Maker G", + "model": "Model 4855", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.45484787160163, + 28.383055707956032 + ] + }, + "properties": { + "id": "meter-4856", + "maker": "Maker H", + "model": "Model 4856", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.19857681112223, + 24.087327777745543 + ] + }, + "properties": { + "id": "meter-4857", + "maker": "Maker E", + "model": "Model 4857", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.82426167344208, + 21.64230802614985 + ] + }, + "properties": { + "id": "meter-4858", + "maker": "Maker I", + "model": "Model 4858", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.51527247200513, + 27.610900504520057 + ] + }, + "properties": { + "id": "meter-4859", + "maker": "Maker G", + "model": "Model 4859", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.74021716102518, + 27.515933348586152 + ] + }, + "properties": { + "id": "meter-4860", + "maker": "Maker F", + "model": "Model 4860", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.026341727252685, + 24.325112234133634 + ] + }, + "properties": { + "id": "meter-4861", + "maker": "Maker E", + "model": "Model 4861", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.691109042423555, + 25.246435170298977 + ] + }, + "properties": { + "id": "meter-4862", + "maker": "Maker E", + "model": "Model 4862", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.80790777013956, + 24.573887441779636 + ] + }, + "properties": { + "id": "meter-4863", + "maker": "Maker E", + "model": "Model 4863", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.147317660849026, + 29.793072135119957 + ] + }, + "properties": { + "id": "meter-4864", + "maker": "Maker E", + "model": "Model 4864", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.90358459918334, + 26.44581817433173 + ] + }, + "properties": { + "id": "meter-4865", + "maker": "Maker I", + "model": "Model 4865", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.44096863012746, + 20.007896991258782 + ] + }, + "properties": { + "id": "meter-4866", + "maker": "Maker H", + "model": "Model 4866", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.655836179698916, + 24.728717182575636 + ] + }, + "properties": { + "id": "meter-4867", + "maker": "Maker I", + "model": "Model 4867", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.41636106733812, + 27.47046320936225 + ] + }, + "properties": { + "id": "meter-4868", + "maker": "Maker J", + "model": "Model 4868", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.668622304527595, + 27.3963647841714 + ] + }, + "properties": { + "id": "meter-4869", + "maker": "Maker A", + "model": "Model 4869", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.356390168120534, + 29.90042057081819 + ] + }, + "properties": { + "id": "meter-4870", + "maker": "Maker I", + "model": "Model 4870", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.638559888844874, + 24.677455959700822 + ] + }, + "properties": { + "id": "meter-4871", + "maker": "Maker E", + "model": "Model 4871", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6621617662408, + 27.385159976382756 + ] + }, + "properties": { + "id": "meter-4872", + "maker": "Maker C", + "model": "Model 4872", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68406310757142, + 24.68994157593484 + ] + }, + "properties": { + "id": "meter-4873", + "maker": "Maker C", + "model": "Model 4873", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.71834290415808, + 24.663836791500405 + ] + }, + "properties": { + "id": "meter-4874", + "maker": "Maker J", + "model": "Model 4874", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20198861641571, + 26.26822181449783 + ] + }, + "properties": { + "id": "meter-4875", + "maker": "Maker H", + "model": "Model 4875", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.75372167840968, + 24.638429786659085 + ] + }, + "properties": { + "id": "meter-4876", + "maker": "Maker F", + "model": "Model 4876", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.8696400509743, + 18.26832437473782 + ] + }, + "properties": { + "id": "meter-4877", + "maker": "Maker I", + "model": "Model 4877", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.84205815325078, + 18.557822366493713 + ] + }, + "properties": { + "id": "meter-4878", + "maker": "Maker A", + "model": "Model 4878", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.826022062139494, + 31.06973699324357 + ] + }, + "properties": { + "id": "meter-4879", + "maker": "Maker D", + "model": "Model 4879", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.240249218373656, + 29.85426539135471 + ] + }, + "properties": { + "id": "meter-4880", + "maker": "Maker B", + "model": "Model 4880", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.7104470418561, + 25.447865597816236 + ] + }, + "properties": { + "id": "meter-4881", + "maker": "Maker B", + "model": "Model 4881", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.009593299210984, + 26.500472746456218 + ] + }, + "properties": { + "id": "meter-4882", + "maker": "Maker C", + "model": "Model 4882", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.81038905312619, + 24.589258301334784 + ] + }, + "properties": { + "id": "meter-4883", + "maker": "Maker A", + "model": "Model 4883", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.200690884653675, + 29.954028481619932 + ] + }, + "properties": { + "id": "meter-4884", + "maker": "Maker D", + "model": "Model 4884", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.420853815000264, + 21.527722429499896 + ] + }, + "properties": { + "id": "meter-4885", + "maker": "Maker E", + "model": "Model 4885", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.0393207957115, + 30.963098157547087 + ] + }, + "properties": { + "id": "meter-4886", + "maker": "Maker B", + "model": "Model 4886", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.280262738422564, + 29.77739173165593 + ] + }, + "properties": { + "id": "meter-4887", + "maker": "Maker E", + "model": "Model 4887", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.21481765876281, + 23.971984627551215 + ] + }, + "properties": { + "id": "meter-4888", + "maker": "Maker J", + "model": "Model 4888", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11614333841224, + 17.452194735358017 + ] + }, + "properties": { + "id": "meter-4889", + "maker": "Maker C", + "model": "Model 4889", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.934654530314575, + 24.317593680584007 + ] + }, + "properties": { + "id": "meter-4890", + "maker": "Maker D", + "model": "Model 4890", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13496559289436, + 26.259374859131093 + ] + }, + "properties": { + "id": "meter-4891", + "maker": "Maker F", + "model": "Model 4891", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08091152828328, + 17.697262506999078 + ] + }, + "properties": { + "id": "meter-4892", + "maker": "Maker J", + "model": "Model 4892", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.65188545592131, + 18.346051441059053 + ] + }, + "properties": { + "id": "meter-4893", + "maker": "Maker I", + "model": "Model 4893", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.74837237661913, + 27.78954519817819 + ] + }, + "properties": { + "id": "meter-4894", + "maker": "Maker H", + "model": "Model 4894", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.6085404388492, + 24.591558310760725 + ] + }, + "properties": { + "id": "meter-4895", + "maker": "Maker A", + "model": "Model 4895", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07556172498294, + 24.364379349634756 + ] + }, + "properties": { + "id": "meter-4896", + "maker": "Maker D", + "model": "Model 4896", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.32960151831548, + 20.148069360559866 + ] + }, + "properties": { + "id": "meter-4897", + "maker": "Maker F", + "model": "Model 4897", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99698126736249, + 26.34138056626368 + ] + }, + "properties": { + "id": "meter-4898", + "maker": "Maker G", + "model": "Model 4898", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.952659150583074, + 26.45571476862098 + ] + }, + "properties": { + "id": "meter-4899", + "maker": "Maker H", + "model": "Model 4899", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.44150244033488, + 19.976571862660915 + ] + }, + "properties": { + "id": "meter-4900", + "maker": "Maker I", + "model": "Model 4900", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23000943489451, + 29.97851895196727 + ] + }, + "properties": { + "id": "meter-4901", + "maker": "Maker E", + "model": "Model 4901", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.66069786721012, + 28.387992519143488 + ] + }, + "properties": { + "id": "meter-4902", + "maker": "Maker G", + "model": "Model 4902", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.87641840308943, + 28.43514261629426 + ] + }, + "properties": { + "id": "meter-4903", + "maker": "Maker I", + "model": "Model 4903", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.874131819376146, + 26.73726363474938 + ] + }, + "properties": { + "id": "meter-4904", + "maker": "Maker D", + "model": "Model 4904", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.08294355613815, + 29.94006662287272 + ] + }, + "properties": { + "id": "meter-4905", + "maker": "Maker I", + "model": "Model 4905", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.671541354210035, + 24.711212713610763 + ] + }, + "properties": { + "id": "meter-4906", + "maker": "Maker F", + "model": "Model 4906", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.26041008565759, + 18.290709080850082 + ] + }, + "properties": { + "id": "meter-4907", + "maker": "Maker G", + "model": "Model 4907", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.92400864576597, + 21.48084907749215 + ] + }, + "properties": { + "id": "meter-4908", + "maker": "Maker C", + "model": "Model 4908", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.655934385863176, + 27.502009485247846 + ] + }, + "properties": { + "id": "meter-4909", + "maker": "Maker A", + "model": "Model 4909", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.88931055543602, + 26.305017728324085 + ] + }, + "properties": { + "id": "meter-4910", + "maker": "Maker E", + "model": "Model 4910", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.28222625432948, + 24.18731588166906 + ] + }, + "properties": { + "id": "meter-4911", + "maker": "Maker D", + "model": "Model 4911", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.44142897830906, + 21.545490606137836 + ] + }, + "properties": { + "id": "meter-4912", + "maker": "Maker I", + "model": "Model 4912", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.972273706720586, + 26.606514272304885 + ] + }, + "properties": { + "id": "meter-4913", + "maker": "Maker J", + "model": "Model 4913", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98405076848292, + 26.421047194474724 + ] + }, + "properties": { + "id": "meter-4914", + "maker": "Maker H", + "model": "Model 4914", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.45887270223479, + 21.56134602979032 + ] + }, + "properties": { + "id": "meter-4915", + "maker": "Maker B", + "model": "Model 4915", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.81580481471462, + 27.256882601225918 + ] + }, + "properties": { + "id": "meter-4916", + "maker": "Maker I", + "model": "Model 4916", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.598452948013275, + 25.28354497935702 + ] + }, + "properties": { + "id": "meter-4917", + "maker": "Maker I", + "model": "Model 4917", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.88635572781894, + 26.367642322005988 + ] + }, + "properties": { + "id": "meter-4918", + "maker": "Maker B", + "model": "Model 4918", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96389240247694, + 26.37151173137254 + ] + }, + "properties": { + "id": "meter-4919", + "maker": "Maker A", + "model": "Model 4919", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47880722469826, + 27.449480343992988 + ] + }, + "properties": { + "id": "meter-4920", + "maker": "Maker E", + "model": "Model 4920", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.237690791435796, + 29.88519567674011 + ] + }, + "properties": { + "id": "meter-4921", + "maker": "Maker A", + "model": "Model 4921", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.486881656401316, + 20.135606815017976 + ] + }, + "properties": { + "id": "meter-4922", + "maker": "Maker A", + "model": "Model 4922", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.19160700071766, + 24.093529975230688 + ] + }, + "properties": { + "id": "meter-4923", + "maker": "Maker J", + "model": "Model 4923", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97059536567336, + 26.323985736770933 + ] + }, + "properties": { + "id": "meter-4924", + "maker": "Maker E", + "model": "Model 4924", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.514431128406336, + 18.443988030832912 + ] + }, + "properties": { + "id": "meter-4925", + "maker": "Maker G", + "model": "Model 4925", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.2249149806581, + 30.96218194342071 + ] + }, + "properties": { + "id": "meter-4926", + "maker": "Maker G", + "model": "Model 4926", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.90420753327739, + 26.412640195257982 + ] + }, + "properties": { + "id": "meter-4927", + "maker": "Maker E", + "model": "Model 4927", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.021715166297724, + 17.53193993575749 + ] + }, + "properties": { + "id": "meter-4928", + "maker": "Maker I", + "model": "Model 4928", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.857982017645334, + 24.601889219975043 + ] + }, + "properties": { + "id": "meter-4929", + "maker": "Maker C", + "model": "Model 4929", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06987097879511, + 26.25602408244425 + ] + }, + "properties": { + "id": "meter-4930", + "maker": "Maker I", + "model": "Model 4930", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10999630149514, + 17.495249091055648 + ] + }, + "properties": { + "id": "meter-4931", + "maker": "Maker D", + "model": "Model 4931", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.76913484991494, + 26.660365426800308 + ] + }, + "properties": { + "id": "meter-4932", + "maker": "Maker E", + "model": "Model 4932", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.90723530538323, + 18.297630992650145 + ] + }, + "properties": { + "id": "meter-4933", + "maker": "Maker G", + "model": "Model 4933", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.40282910696735, + 28.26779320672205 + ] + }, + "properties": { + "id": "meter-4934", + "maker": "Maker I", + "model": "Model 4934", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.78825895094708, + 18.493692303612384 + ] + }, + "properties": { + "id": "meter-4935", + "maker": "Maker E", + "model": "Model 4935", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.54628619297407, + 24.522143059103875 + ] + }, + "properties": { + "id": "meter-4936", + "maker": "Maker H", + "model": "Model 4936", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.908891744505034, + 30.799359807824942 + ] + }, + "properties": { + "id": "meter-4937", + "maker": "Maker F", + "model": "Model 4937", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.55308298853909, + 18.33004003283897 + ] + }, + "properties": { + "id": "meter-4938", + "maker": "Maker H", + "model": "Model 4938", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.80214893045322, + 24.562929869975875 + ] + }, + "properties": { + "id": "meter-4939", + "maker": "Maker B", + "model": "Model 4939", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.152956698615526, + 30.11345720351877 + ] + }, + "properties": { + "id": "meter-4940", + "maker": "Maker F", + "model": "Model 4940", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4995302968338, + 19.975670955073152 + ] + }, + "properties": { + "id": "meter-4941", + "maker": "Maker I", + "model": "Model 4941", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.346652298173424, + 19.836182022776942 + ] + }, + "properties": { + "id": "meter-4942", + "maker": "Maker F", + "model": "Model 4942", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.70160266648633, + 28.464601958018044 + ] + }, + "properties": { + "id": "meter-4943", + "maker": "Maker E", + "model": "Model 4943", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.088643303186494, + 26.42030551474609 + ] + }, + "properties": { + "id": "meter-4944", + "maker": "Maker J", + "model": "Model 4944", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07964258106624, + 26.426966825237677 + ] + }, + "properties": { + "id": "meter-4945", + "maker": "Maker E", + "model": "Model 4945", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68375075597714, + 24.705852340532417 + ] + }, + "properties": { + "id": "meter-4946", + "maker": "Maker G", + "model": "Model 4946", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.24875013206528, + 24.17135770337348 + ] + }, + "properties": { + "id": "meter-4947", + "maker": "Maker B", + "model": "Model 4947", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.83953063459556, + 26.625124436313044 + ] + }, + "properties": { + "id": "meter-4948", + "maker": "Maker H", + "model": "Model 4948", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.74218147626267, + 28.306274444985252 + ] + }, + "properties": { + "id": "meter-4949", + "maker": "Maker B", + "model": "Model 4949", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.80919287511745, + 26.32470654477387 + ] + }, + "properties": { + "id": "meter-4950", + "maker": "Maker G", + "model": "Model 4950", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.169373050360065, + 21.665342343206444 + ] + }, + "properties": { + "id": "meter-4951", + "maker": "Maker F", + "model": "Model 4951", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.4633148753891, + 24.59609338386848 + ] + }, + "properties": { + "id": "meter-4952", + "maker": "Maker G", + "model": "Model 4952", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.87594997024974, + 18.47286330871447 + ] + }, + "properties": { + "id": "meter-4953", + "maker": "Maker D", + "model": "Model 4953", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.15260316725929, + 29.822148229911193 + ] + }, + "properties": { + "id": "meter-4954", + "maker": "Maker H", + "model": "Model 4954", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.7468920038044, + 21.233861211321383 + ] + }, + "properties": { + "id": "meter-4955", + "maker": "Maker D", + "model": "Model 4955", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.5812477053003, + 24.554888678726968 + ] + }, + "properties": { + "id": "meter-4956", + "maker": "Maker H", + "model": "Model 4956", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.707763269612045, + 24.925946493534504 + ] + }, + "properties": { + "id": "meter-4957", + "maker": "Maker H", + "model": "Model 4957", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09613549957997, + 24.12717545855086 + ] + }, + "properties": { + "id": "meter-4958", + "maker": "Maker C", + "model": "Model 4958", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.997430313904694, + 24.110173671271554 + ] + }, + "properties": { + "id": "meter-4959", + "maker": "Maker C", + "model": "Model 4959", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13187034626849, + 26.402574122844243 + ] + }, + "properties": { + "id": "meter-4960", + "maker": "Maker B", + "model": "Model 4960", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.8641077836362, + 26.24072219064242 + ] + }, + "properties": { + "id": "meter-4961", + "maker": "Maker J", + "model": "Model 4961", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.762782140652654, + 24.668869157917396 + ] + }, + "properties": { + "id": "meter-4962", + "maker": "Maker F", + "model": "Model 4962", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.670966941651066, + 24.671407012921012 + ] + }, + "properties": { + "id": "meter-4963", + "maker": "Maker C", + "model": "Model 4963", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.59639308413964, + 24.970020452377256 + ] + }, + "properties": { + "id": "meter-4964", + "maker": "Maker A", + "model": "Model 4964", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.924798725455716, + 21.666739717089406 + ] + }, + "properties": { + "id": "meter-4965", + "maker": "Maker G", + "model": "Model 4965", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.62835167030225, + 24.613463133581213 + ] + }, + "properties": { + "id": "meter-4966", + "maker": "Maker G", + "model": "Model 4966", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.665408313373426, + 24.59866297672282 + ] + }, + "properties": { + "id": "meter-4967", + "maker": "Maker H", + "model": "Model 4967", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.279025001640484, + 21.197543656954156 + ] + }, + "properties": { + "id": "meter-4968", + "maker": "Maker J", + "model": "Model 4968", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.990125194752096, + 21.49684075572336 + ] + }, + "properties": { + "id": "meter-4969", + "maker": "Maker C", + "model": "Model 4969", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67750517598192, + 19.9609592519444 + ] + }, + "properties": { + "id": "meter-4970", + "maker": "Maker J", + "model": "Model 4970", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.01937062013778, + 24.294742406954814 + ] + }, + "properties": { + "id": "meter-4971", + "maker": "Maker J", + "model": "Model 4971", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.238569504154235, + 18.256032494247663 + ] + }, + "properties": { + "id": "meter-4972", + "maker": "Maker D", + "model": "Model 4972", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.014114287580284, + 26.503135612794 + ] + }, + "properties": { + "id": "meter-4973", + "maker": "Maker F", + "model": "Model 4973", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.146615633897326, + 21.539780287127343 + ] + }, + "properties": { + "id": "meter-4974", + "maker": "Maker I", + "model": "Model 4974", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04208166777542, + 24.105305769558267 + ] + }, + "properties": { + "id": "meter-4975", + "maker": "Maker J", + "model": "Model 4975", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.58632182763172, + 24.500359956482967 + ] + }, + "properties": { + "id": "meter-4976", + "maker": "Maker A", + "model": "Model 4976", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98102549887778, + 26.50525801063767 + ] + }, + "properties": { + "id": "meter-4977", + "maker": "Maker E", + "model": "Model 4977", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45420279238195, + 27.44827774340276 + ] + }, + "properties": { + "id": "meter-4978", + "maker": "Maker I", + "model": "Model 4978", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.74390183216288, + 27.46049681392549 + ] + }, + "properties": { + "id": "meter-4979", + "maker": "Maker I", + "model": "Model 4979", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.56033118558655, + 18.07314968402363 + ] + }, + "properties": { + "id": "meter-4980", + "maker": "Maker A", + "model": "Model 4980", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.97699965811274, + 18.199728298715836 + ] + }, + "properties": { + "id": "meter-4981", + "maker": "Maker A", + "model": "Model 4981", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13025780947323, + 17.488925236890694 + ] + }, + "properties": { + "id": "meter-4982", + "maker": "Maker J", + "model": "Model 4982", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.91254105245226, + 18.519908762444054 + ] + }, + "properties": { + "id": "meter-4983", + "maker": "Maker A", + "model": "Model 4983", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.49570929822475, + 24.70564172948786 + ] + }, + "properties": { + "id": "meter-4984", + "maker": "Maker F", + "model": "Model 4984", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.2684654158001, + 17.745332440052284 + ] + }, + "properties": { + "id": "meter-4985", + "maker": "Maker B", + "model": "Model 4985", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.613218396494695, + 28.265200296071992 + ] + }, + "properties": { + "id": "meter-4986", + "maker": "Maker A", + "model": "Model 4986", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45436708286062, + 18.192287289817298 + ] + }, + "properties": { + "id": "meter-4987", + "maker": "Maker D", + "model": "Model 4987", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.92237083475391, + 29.938563012973496 + ] + }, + "properties": { + "id": "meter-4988", + "maker": "Maker J", + "model": "Model 4988", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02269802977294, + 26.307178507017042 + ] + }, + "properties": { + "id": "meter-4989", + "maker": "Maker J", + "model": "Model 4989", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71316924066473, + 18.054999423021957 + ] + }, + "properties": { + "id": "meter-4990", + "maker": "Maker C", + "model": "Model 4990", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.9185971318857, + 26.113343061000684 + ] + }, + "properties": { + "id": "meter-4991", + "maker": "Maker H", + "model": "Model 4991", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.312487813496865, + 20.00437630698285 + ] + }, + "properties": { + "id": "meter-4992", + "maker": "Maker E", + "model": "Model 4992", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20101370454607, + 26.281029451915103 + ] + }, + "properties": { + "id": "meter-4993", + "maker": "Maker H", + "model": "Model 4993", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13542294128487, + 17.493217982265747 + ] + }, + "properties": { + "id": "meter-4994", + "maker": "Maker E", + "model": "Model 4994", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.66810768138348, + 27.749115298050352 + ] + }, + "properties": { + "id": "meter-4995", + "maker": "Maker I", + "model": "Model 4995", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.498486583312996, + 19.725078567425953 + ] + }, + "properties": { + "id": "meter-4996", + "maker": "Maker A", + "model": "Model 4996", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.771340259924436, + 24.812419864502438 + ] + }, + "properties": { + "id": "meter-4997", + "maker": "Maker J", + "model": "Model 4997", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91494148646779, + 26.31595126867404 + ] + }, + "properties": { + "id": "meter-4998", + "maker": "Maker D", + "model": "Model 4998", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71756536352714, + 18.589921873293957 + ] + }, + "properties": { + "id": "meter-4999", + "maker": "Maker J", + "model": "Model 4999", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.076966699512866, + 31.040168027520036 + ] + }, + "properties": { + "id": "meter-5000", + "maker": "Maker A", + "model": "Model 5000", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.073434121742366, + 24.094659550981746 + ] + }, + "properties": { + "id": "meter-5001", + "maker": "Maker J", + "model": "Model 5001", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12546860370861, + 26.404770945699457 + ] + }, + "properties": { + "id": "meter-5002", + "maker": "Maker F", + "model": "Model 5002", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48515520312603, + 19.98149838249482 + ] + }, + "properties": { + "id": "meter-5003", + "maker": "Maker F", + "model": "Model 5003", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.17662854553779, + 29.986934902915063 + ] + }, + "properties": { + "id": "meter-5004", + "maker": "Maker C", + "model": "Model 5004", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69195292917766, + 27.514419280264427 + ] + }, + "properties": { + "id": "meter-5005", + "maker": "Maker A", + "model": "Model 5005", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92707843606684, + 26.279582312484056 + ] + }, + "properties": { + "id": "meter-5006", + "maker": "Maker E", + "model": "Model 5006", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.811226861780234, + 28.336322082887065 + ] + }, + "properties": { + "id": "meter-5007", + "maker": "Maker E", + "model": "Model 5007", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.71850278573307, + 25.587172685754968 + ] + }, + "properties": { + "id": "meter-5008", + "maker": "Maker J", + "model": "Model 5008", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.14112543661378, + 30.991931455427032 + ] + }, + "properties": { + "id": "meter-5009", + "maker": "Maker E", + "model": "Model 5009", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.61372423700841, + 18.305521808744505 + ] + }, + "properties": { + "id": "meter-5010", + "maker": "Maker H", + "model": "Model 5010", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08661532119181, + 26.423687565997458 + ] + }, + "properties": { + "id": "meter-5011", + "maker": "Maker C", + "model": "Model 5011", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14354710552849, + 26.171909496200726 + ] + }, + "properties": { + "id": "meter-5012", + "maker": "Maker E", + "model": "Model 5012", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.70934509706244, + 24.52469639673563 + ] + }, + "properties": { + "id": "meter-5013", + "maker": "Maker I", + "model": "Model 5013", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.28844774655452, + 17.593231196993422 + ] + }, + "properties": { + "id": "meter-5014", + "maker": "Maker A", + "model": "Model 5014", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.90777663341556, + 30.82388483029401 + ] + }, + "properties": { + "id": "meter-5015", + "maker": "Maker I", + "model": "Model 5015", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94672114508066, + 26.65442453396528 + ] + }, + "properties": { + "id": "meter-5016", + "maker": "Maker G", + "model": "Model 5016", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13047067571527, + 17.493583710333688 + ] + }, + "properties": { + "id": "meter-5017", + "maker": "Maker C", + "model": "Model 5017", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.32710395434902, + 28.479348665545906 + ] + }, + "properties": { + "id": "meter-5018", + "maker": "Maker G", + "model": "Model 5018", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.08601101916481, + 24.12083942827566 + ] + }, + "properties": { + "id": "meter-5019", + "maker": "Maker C", + "model": "Model 5019", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.67253078106853, + 18.102082821651685 + ] + }, + "properties": { + "id": "meter-5020", + "maker": "Maker B", + "model": "Model 5020", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.45651266270882, + 24.689635053618918 + ] + }, + "properties": { + "id": "meter-5021", + "maker": "Maker E", + "model": "Model 5021", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.675419613385415, + 24.801550820309213 + ] + }, + "properties": { + "id": "meter-5022", + "maker": "Maker C", + "model": "Model 5022", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.20380339090595, + 21.45338099199425 + ] + }, + "properties": { + "id": "meter-5023", + "maker": "Maker A", + "model": "Model 5023", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.61690345713907, + 27.441327719982656 + ] + }, + "properties": { + "id": "meter-5024", + "maker": "Maker C", + "model": "Model 5024", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.934285863802494, + 26.27327341231349 + ] + }, + "properties": { + "id": "meter-5025", + "maker": "Maker G", + "model": "Model 5025", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.42590263813623, + 28.553170344431145 + ] + }, + "properties": { + "id": "meter-5026", + "maker": "Maker B", + "model": "Model 5026", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.22691918233855, + 20.045184888052784 + ] + }, + "properties": { + "id": "meter-5027", + "maker": "Maker J", + "model": "Model 5027", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.70914701995147, + 21.265480426055987 + ] + }, + "properties": { + "id": "meter-5028", + "maker": "Maker G", + "model": "Model 5028", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.429768803018256, + 25.24237505190654 + ] + }, + "properties": { + "id": "meter-5029", + "maker": "Maker H", + "model": "Model 5029", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.64975995021021, + 18.57658030300532 + ] + }, + "properties": { + "id": "meter-5030", + "maker": "Maker F", + "model": "Model 5030", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.641188418417485, + 25.376797136156885 + ] + }, + "properties": { + "id": "meter-5031", + "maker": "Maker G", + "model": "Model 5031", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.33119946937138, + 24.493337037308287 + ] + }, + "properties": { + "id": "meter-5032", + "maker": "Maker B", + "model": "Model 5032", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92973495790232, + 26.264937152139872 + ] + }, + "properties": { + "id": "meter-5033", + "maker": "Maker D", + "model": "Model 5033", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.112205934416274, + 24.142961580823254 + ] + }, + "properties": { + "id": "meter-5034", + "maker": "Maker B", + "model": "Model 5034", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.27970826701941, + 21.638992195314284 + ] + }, + "properties": { + "id": "meter-5035", + "maker": "Maker D", + "model": "Model 5035", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.83240829587366, + 21.40381393183346 + ] + }, + "properties": { + "id": "meter-5036", + "maker": "Maker D", + "model": "Model 5036", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.51720982878954, + 24.665535233409603 + ] + }, + "properties": { + "id": "meter-5037", + "maker": "Maker I", + "model": "Model 5037", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.0067363375069, + 17.54292264716132 + ] + }, + "properties": { + "id": "meter-5038", + "maker": "Maker A", + "model": "Model 5038", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.093539835057584, + 26.415015746156456 + ] + }, + "properties": { + "id": "meter-5039", + "maker": "Maker E", + "model": "Model 5039", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.11551106427573, + 30.063129667849015 + ] + }, + "properties": { + "id": "meter-5040", + "maker": "Maker E", + "model": "Model 5040", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.414005204669856, + 25.282580718841462 + ] + }, + "properties": { + "id": "meter-5041", + "maker": "Maker I", + "model": "Model 5041", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20031363857334, + 26.18662557107897 + ] + }, + "properties": { + "id": "meter-5042", + "maker": "Maker A", + "model": "Model 5042", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.63121529022329, + 18.23662805083838 + ] + }, + "properties": { + "id": "meter-5043", + "maker": "Maker I", + "model": "Model 5043", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11939111817698, + 26.36958176954572 + ] + }, + "properties": { + "id": "meter-5044", + "maker": "Maker B", + "model": "Model 5044", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.027180885148674, + 29.983860043019146 + ] + }, + "properties": { + "id": "meter-5045", + "maker": "Maker D", + "model": "Model 5045", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20378884938744, + 29.956273521791523 + ] + }, + "properties": { + "id": "meter-5046", + "maker": "Maker J", + "model": "Model 5046", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.96112820712968, + 31.13157807018393 + ] + }, + "properties": { + "id": "meter-5047", + "maker": "Maker A", + "model": "Model 5047", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.275143673931986, + 18.2453087596718 + ] + }, + "properties": { + "id": "meter-5048", + "maker": "Maker D", + "model": "Model 5048", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.66705773015514, + 24.77929367032774 + ] + }, + "properties": { + "id": "meter-5049", + "maker": "Maker A", + "model": "Model 5049", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.223034360494125, + 21.45319871342375 + ] + }, + "properties": { + "id": "meter-5050", + "maker": "Maker B", + "model": "Model 5050", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.416163034516764, + 20.05029976403166 + ] + }, + "properties": { + "id": "meter-5051", + "maker": "Maker F", + "model": "Model 5051", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.212986233867916, + 30.003680910165254 + ] + }, + "properties": { + "id": "meter-5052", + "maker": "Maker J", + "model": "Model 5052", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26747308247439, + 21.33780845790585 + ] + }, + "properties": { + "id": "meter-5053", + "maker": "Maker C", + "model": "Model 5053", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.598404751473254, + 21.280810038743816 + ] + }, + "properties": { + "id": "meter-5054", + "maker": "Maker H", + "model": "Model 5054", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.408166206970805, + 25.231904160105305 + ] + }, + "properties": { + "id": "meter-5055", + "maker": "Maker C", + "model": "Model 5055", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.79711822574723, + 18.38964825585617 + ] + }, + "properties": { + "id": "meter-5056", + "maker": "Maker H", + "model": "Model 5056", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.133094508806046, + 26.393680995852826 + ] + }, + "properties": { + "id": "meter-5057", + "maker": "Maker B", + "model": "Model 5057", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.997324724399625, + 26.39662936705223 + ] + }, + "properties": { + "id": "meter-5058", + "maker": "Maker B", + "model": "Model 5058", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.717376704106904, + 24.69756175403763 + ] + }, + "properties": { + "id": "meter-5059", + "maker": "Maker H", + "model": "Model 5059", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.82219776131105, + 26.484337254393665 + ] + }, + "properties": { + "id": "meter-5060", + "maker": "Maker G", + "model": "Model 5060", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.67125414188817, + 28.267020656014346 + ] + }, + "properties": { + "id": "meter-5061", + "maker": "Maker I", + "model": "Model 5061", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4750814451837, + 20.00502361465539 + ] + }, + "properties": { + "id": "meter-5062", + "maker": "Maker H", + "model": "Model 5062", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.854211607030805, + 17.500150659406955 + ] + }, + "properties": { + "id": "meter-5063", + "maker": "Maker E", + "model": "Model 5063", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21438582413444, + 26.27381217939547 + ] + }, + "properties": { + "id": "meter-5064", + "maker": "Maker A", + "model": "Model 5064", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4763137828959, + 19.748306969283096 + ] + }, + "properties": { + "id": "meter-5065", + "maker": "Maker C", + "model": "Model 5065", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57023841347205, + 25.369372182131492 + ] + }, + "properties": { + "id": "meter-5066", + "maker": "Maker C", + "model": "Model 5066", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.034755117861074, + 30.92928108001568 + ] + }, + "properties": { + "id": "meter-5067", + "maker": "Maker F", + "model": "Model 5067", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13491894017642, + 26.383639334096557 + ] + }, + "properties": { + "id": "meter-5068", + "maker": "Maker E", + "model": "Model 5068", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97306155339256, + 26.311433212653736 + ] + }, + "properties": { + "id": "meter-5069", + "maker": "Maker J", + "model": "Model 5069", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04597115468154, + 26.260745779804374 + ] + }, + "properties": { + "id": "meter-5070", + "maker": "Maker B", + "model": "Model 5070", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.022243673569065, + 26.410663349829353 + ] + }, + "properties": { + "id": "meter-5071", + "maker": "Maker A", + "model": "Model 5071", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.830570407977085, + 21.373555002184002 + ] + }, + "properties": { + "id": "meter-5072", + "maker": "Maker C", + "model": "Model 5072", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.74440542067849, + 28.466947695198346 + ] + }, + "properties": { + "id": "meter-5073", + "maker": "Maker E", + "model": "Model 5073", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.96812500280172, + 24.135004136575116 + ] + }, + "properties": { + "id": "meter-5074", + "maker": "Maker F", + "model": "Model 5074", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.447805286081056, + 19.75159568482127 + ] + }, + "properties": { + "id": "meter-5075", + "maker": "Maker A", + "model": "Model 5075", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60970568791296, + 24.519507320165577 + ] + }, + "properties": { + "id": "meter-5076", + "maker": "Maker D", + "model": "Model 5076", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.428084075140234, + 19.99980110031729 + ] + }, + "properties": { + "id": "meter-5077", + "maker": "Maker G", + "model": "Model 5077", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.720019100667415, + 27.502241328463988 + ] + }, + "properties": { + "id": "meter-5078", + "maker": "Maker F", + "model": "Model 5078", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.36595490177393, + 30.169649884641586 + ] + }, + "properties": { + "id": "meter-5079", + "maker": "Maker B", + "model": "Model 5079", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.90706381840232, + 30.96356609259978 + ] + }, + "properties": { + "id": "meter-5080", + "maker": "Maker C", + "model": "Model 5080", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.58098973885243, + 28.437114803297725 + ] + }, + "properties": { + "id": "meter-5081", + "maker": "Maker H", + "model": "Model 5081", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.37165783698088, + 19.791974788484023 + ] + }, + "properties": { + "id": "meter-5082", + "maker": "Maker A", + "model": "Model 5082", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52408810498168, + 18.2040410198343 + ] + }, + "properties": { + "id": "meter-5083", + "maker": "Maker I", + "model": "Model 5083", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.47447655809923, + 18.232305379487112 + ] + }, + "properties": { + "id": "meter-5084", + "maker": "Maker J", + "model": "Model 5084", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.70628419384536, + 25.4042898812294 + ] + }, + "properties": { + "id": "meter-5085", + "maker": "Maker H", + "model": "Model 5085", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.626260002210174, + 24.554419938997544 + ] + }, + "properties": { + "id": "meter-5086", + "maker": "Maker G", + "model": "Model 5086", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2191866205653, + 21.524481159180592 + ] + }, + "properties": { + "id": "meter-5087", + "maker": "Maker A", + "model": "Model 5087", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.04412218832032, + 30.090748596759212 + ] + }, + "properties": { + "id": "meter-5088", + "maker": "Maker D", + "model": "Model 5088", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.746542258379904, + 27.470110555702274 + ] + }, + "properties": { + "id": "meter-5089", + "maker": "Maker J", + "model": "Model 5089", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72829425557031, + 18.305895425061525 + ] + }, + "properties": { + "id": "meter-5090", + "maker": "Maker D", + "model": "Model 5090", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.54599492558513, + 28.2668945559312 + ] + }, + "properties": { + "id": "meter-5091", + "maker": "Maker I", + "model": "Model 5091", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.195166376072784, + 24.19429838282075 + ] + }, + "properties": { + "id": "meter-5092", + "maker": "Maker D", + "model": "Model 5092", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20546150047693, + 26.250293057499125 + ] + }, + "properties": { + "id": "meter-5093", + "maker": "Maker I", + "model": "Model 5093", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.69720265167375, + 24.812510077996162 + ] + }, + "properties": { + "id": "meter-5094", + "maker": "Maker A", + "model": "Model 5094", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48325310512704, + 19.92861477141668 + ] + }, + "properties": { + "id": "meter-5095", + "maker": "Maker D", + "model": "Model 5095", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9289027792121, + 26.46458697505046 + ] + }, + "properties": { + "id": "meter-5096", + "maker": "Maker F", + "model": "Model 5096", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84633306554452, + 21.38516354805385 + ] + }, + "properties": { + "id": "meter-5097", + "maker": "Maker I", + "model": "Model 5097", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.050297179718825, + 29.9249185244386 + ] + }, + "properties": { + "id": "meter-5098", + "maker": "Maker C", + "model": "Model 5098", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.156299903928385, + 30.125934414034166 + ] + }, + "properties": { + "id": "meter-5099", + "maker": "Maker B", + "model": "Model 5099", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.972859803166806, + 30.98463393030487 + ] + }, + "properties": { + "id": "meter-5100", + "maker": "Maker B", + "model": "Model 5100", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48825708350364, + 19.98253939516161 + ] + }, + "properties": { + "id": "meter-5101", + "maker": "Maker F", + "model": "Model 5101", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.63929706666196, + 18.31911602805435 + ] + }, + "properties": { + "id": "meter-5102", + "maker": "Maker F", + "model": "Model 5102", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.71672347363083, + 24.596971140591606 + ] + }, + "properties": { + "id": "meter-5103", + "maker": "Maker B", + "model": "Model 5103", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.3736409459307, + 30.02636042765598 + ] + }, + "properties": { + "id": "meter-5104", + "maker": "Maker H", + "model": "Model 5104", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.10711504745439, + 21.548124198184425 + ] + }, + "properties": { + "id": "meter-5105", + "maker": "Maker F", + "model": "Model 5105", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.196965166534646, + 17.50938259064599 + ] + }, + "properties": { + "id": "meter-5106", + "maker": "Maker B", + "model": "Model 5106", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.01733552026571, + 21.424316221053363 + ] + }, + "properties": { + "id": "meter-5107", + "maker": "Maker F", + "model": "Model 5107", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.846924534932356, + 18.209784195271 + ] + }, + "properties": { + "id": "meter-5108", + "maker": "Maker D", + "model": "Model 5108", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.984451664730095, + 26.38974703288503 + ] + }, + "properties": { + "id": "meter-5109", + "maker": "Maker F", + "model": "Model 5109", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.33680242928266, + 28.428851776163064 + ] + }, + "properties": { + "id": "meter-5110", + "maker": "Maker E", + "model": "Model 5110", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.55065932595994, + 24.787579184354836 + ] + }, + "properties": { + "id": "meter-5111", + "maker": "Maker H", + "model": "Model 5111", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.77475435066509, + 26.372479105383686 + ] + }, + "properties": { + "id": "meter-5112", + "maker": "Maker B", + "model": "Model 5112", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.81233649421517, + 27.37046346441629 + ] + }, + "properties": { + "id": "meter-5113", + "maker": "Maker B", + "model": "Model 5113", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.05220589758542, + 31.055604931909365 + ] + }, + "properties": { + "id": "meter-5114", + "maker": "Maker H", + "model": "Model 5114", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61950389348601, + 24.531015491498767 + ] + }, + "properties": { + "id": "meter-5115", + "maker": "Maker B", + "model": "Model 5115", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.4863505593665, + 18.038860535176973 + ] + }, + "properties": { + "id": "meter-5116", + "maker": "Maker D", + "model": "Model 5116", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66715904761202, + 18.31895310486461 + ] + }, + "properties": { + "id": "meter-5117", + "maker": "Maker A", + "model": "Model 5117", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.103716190085784, + 26.263998206775472 + ] + }, + "properties": { + "id": "meter-5118", + "maker": "Maker H", + "model": "Model 5118", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.420051296120285, + 25.433275627774538 + ] + }, + "properties": { + "id": "meter-5119", + "maker": "Maker B", + "model": "Model 5119", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.75113544908789, + 24.706381058997312 + ] + }, + "properties": { + "id": "meter-5120", + "maker": "Maker H", + "model": "Model 5120", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.255052738615326, + 24.282784276420372 + ] + }, + "properties": { + "id": "meter-5121", + "maker": "Maker D", + "model": "Model 5121", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52512943568191, + 18.5193688295446 + ] + }, + "properties": { + "id": "meter-5122", + "maker": "Maker I", + "model": "Model 5122", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.008682650803365, + 26.506233883893234 + ] + }, + "properties": { + "id": "meter-5123", + "maker": "Maker A", + "model": "Model 5123", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03408830792664, + 17.421318629417666 + ] + }, + "properties": { + "id": "meter-5124", + "maker": "Maker H", + "model": "Model 5124", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.99653278916786, + 18.177631952373652 + ] + }, + "properties": { + "id": "meter-5125", + "maker": "Maker H", + "model": "Model 5125", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.57427633768253, + 24.777789975748867 + ] + }, + "properties": { + "id": "meter-5126", + "maker": "Maker H", + "model": "Model 5126", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.53887061803922, + 25.18151116324826 + ] + }, + "properties": { + "id": "meter-5127", + "maker": "Maker D", + "model": "Model 5127", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.75447769516642, + 25.520982687918558 + ] + }, + "properties": { + "id": "meter-5128", + "maker": "Maker A", + "model": "Model 5128", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.55755006397045, + 25.303253461061882 + ] + }, + "properties": { + "id": "meter-5129", + "maker": "Maker I", + "model": "Model 5129", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.10870630343866, + 29.898089344468687 + ] + }, + "properties": { + "id": "meter-5130", + "maker": "Maker J", + "model": "Model 5130", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.168448222486056, + 29.900590067959808 + ] + }, + "properties": { + "id": "meter-5131", + "maker": "Maker D", + "model": "Model 5131", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.0169047839461, + 31.002002448129687 + ] + }, + "properties": { + "id": "meter-5132", + "maker": "Maker B", + "model": "Model 5132", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.39754201868534, + 21.459465207895505 + ] + }, + "properties": { + "id": "meter-5133", + "maker": "Maker D", + "model": "Model 5133", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.36691337102231, + 17.551996404012073 + ] + }, + "properties": { + "id": "meter-5134", + "maker": "Maker E", + "model": "Model 5134", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.28164233856597, + 21.423142210358904 + ] + }, + "properties": { + "id": "meter-5135", + "maker": "Maker H", + "model": "Model 5135", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.194144722724445, + 24.178416303208294 + ] + }, + "properties": { + "id": "meter-5136", + "maker": "Maker B", + "model": "Model 5136", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.40429269284825, + 29.971734545212023 + ] + }, + "properties": { + "id": "meter-5137", + "maker": "Maker C", + "model": "Model 5137", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55091817194503, + 27.453912519636713 + ] + }, + "properties": { + "id": "meter-5138", + "maker": "Maker J", + "model": "Model 5138", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.27638243673093, + 31.060583205384592 + ] + }, + "properties": { + "id": "meter-5139", + "maker": "Maker C", + "model": "Model 5139", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.45494883255547, + 21.68424693126934 + ] + }, + "properties": { + "id": "meter-5140", + "maker": "Maker C", + "model": "Model 5140", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.55167701272774, + 25.400062449375064 + ] + }, + "properties": { + "id": "meter-5141", + "maker": "Maker H", + "model": "Model 5141", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.186388541767485, + 26.179946133517962 + ] + }, + "properties": { + "id": "meter-5142", + "maker": "Maker F", + "model": "Model 5142", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.764538613785575, + 24.937523155290673 + ] + }, + "properties": { + "id": "meter-5143", + "maker": "Maker G", + "model": "Model 5143", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.696635007953695, + 24.709058384184136 + ] + }, + "properties": { + "id": "meter-5144", + "maker": "Maker J", + "model": "Model 5144", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.89237086040378, + 26.347323695882164 + ] + }, + "properties": { + "id": "meter-5145", + "maker": "Maker A", + "model": "Model 5145", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.830523779871854, + 24.62993231756382 + ] + }, + "properties": { + "id": "meter-5146", + "maker": "Maker F", + "model": "Model 5146", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.14555675196366, + 21.55127300263958 + ] + }, + "properties": { + "id": "meter-5147", + "maker": "Maker F", + "model": "Model 5147", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95381889998163, + 26.49068181704316 + ] + }, + "properties": { + "id": "meter-5148", + "maker": "Maker H", + "model": "Model 5148", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.69740910065374, + 24.645951094471286 + ] + }, + "properties": { + "id": "meter-5149", + "maker": "Maker H", + "model": "Model 5149", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13745534857207, + 26.338408337208165 + ] + }, + "properties": { + "id": "meter-5150", + "maker": "Maker G", + "model": "Model 5150", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.82997144613396, + 28.268023036006927 + ] + }, + "properties": { + "id": "meter-5151", + "maker": "Maker I", + "model": "Model 5151", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87495018165921, + 26.375342657210425 + ] + }, + "properties": { + "id": "meter-5152", + "maker": "Maker E", + "model": "Model 5152", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.022058409180744, + 26.478242992741706 + ] + }, + "properties": { + "id": "meter-5153", + "maker": "Maker C", + "model": "Model 5153", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98725729809204, + 26.46568554341477 + ] + }, + "properties": { + "id": "meter-5154", + "maker": "Maker F", + "model": "Model 5154", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10031858210191, + 26.36658350379648 + ] + }, + "properties": { + "id": "meter-5155", + "maker": "Maker B", + "model": "Model 5155", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.08726318779316, + 24.246557325077507 + ] + }, + "properties": { + "id": "meter-5156", + "maker": "Maker B", + "model": "Model 5156", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95109099260976, + 26.351571933406152 + ] + }, + "properties": { + "id": "meter-5157", + "maker": "Maker A", + "model": "Model 5157", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81891897253099, + 21.631942510926777 + ] + }, + "properties": { + "id": "meter-5158", + "maker": "Maker F", + "model": "Model 5158", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.97870942976463, + 31.02892427578455 + ] + }, + "properties": { + "id": "meter-5159", + "maker": "Maker C", + "model": "Model 5159", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.76216096058857, + 24.787382103737574 + ] + }, + "properties": { + "id": "meter-5160", + "maker": "Maker F", + "model": "Model 5160", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.601381374701496, + 21.530947248566395 + ] + }, + "properties": { + "id": "meter-5161", + "maker": "Maker I", + "model": "Model 5161", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21321000331474, + 26.294188413306284 + ] + }, + "properties": { + "id": "meter-5162", + "maker": "Maker D", + "model": "Model 5162", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.865244239737, + 26.642017016675716 + ] + }, + "properties": { + "id": "meter-5163", + "maker": "Maker J", + "model": "Model 5163", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.955343757455616, + 26.520716095590696 + ] + }, + "properties": { + "id": "meter-5164", + "maker": "Maker B", + "model": "Model 5164", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.81432510304738, + 27.54569941497855 + ] + }, + "properties": { + "id": "meter-5165", + "maker": "Maker H", + "model": "Model 5165", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50124114432786, + 18.23880939689926 + ] + }, + "properties": { + "id": "meter-5166", + "maker": "Maker C", + "model": "Model 5166", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00117095968119, + 26.390214761226353 + ] + }, + "properties": { + "id": "meter-5167", + "maker": "Maker B", + "model": "Model 5167", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58508599467998, + 25.1089349600209 + ] + }, + "properties": { + "id": "meter-5168", + "maker": "Maker G", + "model": "Model 5168", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.962136694773825, + 21.330234934818428 + ] + }, + "properties": { + "id": "meter-5169", + "maker": "Maker I", + "model": "Model 5169", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.77065887063776, + 26.452995798992074 + ] + }, + "properties": { + "id": "meter-5170", + "maker": "Maker I", + "model": "Model 5170", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.95816837954608, + 26.37777065883114 + ] + }, + "properties": { + "id": "meter-5171", + "maker": "Maker B", + "model": "Model 5171", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.555445280948014, + 28.40757791811724 + ] + }, + "properties": { + "id": "meter-5172", + "maker": "Maker C", + "model": "Model 5172", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.57414799897722, + 18.28696978350113 + ] + }, + "properties": { + "id": "meter-5173", + "maker": "Maker G", + "model": "Model 5173", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.040401139706006, + 30.987795392408696 + ] + }, + "properties": { + "id": "meter-5174", + "maker": "Maker A", + "model": "Model 5174", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.92587636007722, + 21.329470069215386 + ] + }, + "properties": { + "id": "meter-5175", + "maker": "Maker C", + "model": "Model 5175", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24262760614956, + 21.491821465070426 + ] + }, + "properties": { + "id": "meter-5176", + "maker": "Maker H", + "model": "Model 5176", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.694846757959056, + 24.689426374211518 + ] + }, + "properties": { + "id": "meter-5177", + "maker": "Maker I", + "model": "Model 5177", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9627775802065, + 26.59524088772368 + ] + }, + "properties": { + "id": "meter-5178", + "maker": "Maker B", + "model": "Model 5178", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.44226560019126, + 24.512653843508513 + ] + }, + "properties": { + "id": "meter-5179", + "maker": "Maker C", + "model": "Model 5179", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21081447440504, + 26.27981942610288 + ] + }, + "properties": { + "id": "meter-5180", + "maker": "Maker E", + "model": "Model 5180", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.8305506265512, + 21.39210895230142 + ] + }, + "properties": { + "id": "meter-5181", + "maker": "Maker E", + "model": "Model 5181", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.05683224469956, + 26.355772737227433 + ] + }, + "properties": { + "id": "meter-5182", + "maker": "Maker A", + "model": "Model 5182", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.226613813911385, + 21.487732085217942 + ] + }, + "properties": { + "id": "meter-5183", + "maker": "Maker A", + "model": "Model 5183", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93301000787367, + 26.222412596460103 + ] + }, + "properties": { + "id": "meter-5184", + "maker": "Maker I", + "model": "Model 5184", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65625175008571, + 19.830703071343144 + ] + }, + "properties": { + "id": "meter-5185", + "maker": "Maker I", + "model": "Model 5185", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88186149280288, + 21.391448439760502 + ] + }, + "properties": { + "id": "meter-5186", + "maker": "Maker D", + "model": "Model 5186", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53815635411278, + 18.363977104907438 + ] + }, + "properties": { + "id": "meter-5187", + "maker": "Maker C", + "model": "Model 5187", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.593696787407715, + 27.434345658962382 + ] + }, + "properties": { + "id": "meter-5188", + "maker": "Maker C", + "model": "Model 5188", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.89910285817565, + 24.235105111807844 + ] + }, + "properties": { + "id": "meter-5189", + "maker": "Maker C", + "model": "Model 5189", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.578064772029855, + 28.31378929345635 + ] + }, + "properties": { + "id": "meter-5190", + "maker": "Maker I", + "model": "Model 5190", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13303806842663, + 17.52745734159457 + ] + }, + "properties": { + "id": "meter-5191", + "maker": "Maker G", + "model": "Model 5191", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.35913588559423, + 20.01438438844608 + ] + }, + "properties": { + "id": "meter-5192", + "maker": "Maker B", + "model": "Model 5192", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.632435650124016, + 28.373750072172427 + ] + }, + "properties": { + "id": "meter-5193", + "maker": "Maker D", + "model": "Model 5193", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02488655577554, + 17.46921839612792 + ] + }, + "properties": { + "id": "meter-5194", + "maker": "Maker A", + "model": "Model 5194", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.934576835693626, + 21.175796334476605 + ] + }, + "properties": { + "id": "meter-5195", + "maker": "Maker F", + "model": "Model 5195", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.586167668710544, + 24.655490565631403 + ] + }, + "properties": { + "id": "meter-5196", + "maker": "Maker H", + "model": "Model 5196", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.29966509369156, + 18.430836513385 + ] + }, + "properties": { + "id": "meter-5197", + "maker": "Maker H", + "model": "Model 5197", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.663782191474844, + 20.191442974080374 + ] + }, + "properties": { + "id": "meter-5198", + "maker": "Maker D", + "model": "Model 5198", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.36000416826959, + 19.992941020489337 + ] + }, + "properties": { + "id": "meter-5199", + "maker": "Maker D", + "model": "Model 5199", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.43327355938551, + 18.072830953487266 + ] + }, + "properties": { + "id": "meter-5200", + "maker": "Maker I", + "model": "Model 5200", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.122889235502726, + 17.49647694115141 + ] + }, + "properties": { + "id": "meter-5201", + "maker": "Maker H", + "model": "Model 5201", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07640854710091, + 24.094888125490076 + ] + }, + "properties": { + "id": "meter-5202", + "maker": "Maker F", + "model": "Model 5202", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.455574686300814, + 21.332201947044034 + ] + }, + "properties": { + "id": "meter-5203", + "maker": "Maker B", + "model": "Model 5203", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97080856796973, + 26.660448087103337 + ] + }, + "properties": { + "id": "meter-5204", + "maker": "Maker C", + "model": "Model 5204", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.56363267998781, + 18.184161602741682 + ] + }, + "properties": { + "id": "meter-5205", + "maker": "Maker H", + "model": "Model 5205", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.90449183287021, + 26.48365123807567 + ] + }, + "properties": { + "id": "meter-5206", + "maker": "Maker B", + "model": "Model 5206", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05546145938527, + 26.32602676215318 + ] + }, + "properties": { + "id": "meter-5207", + "maker": "Maker E", + "model": "Model 5207", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.40921060401048, + 24.598261267747244 + ] + }, + "properties": { + "id": "meter-5208", + "maker": "Maker A", + "model": "Model 5208", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08587584681464, + 26.425719849520156 + ] + }, + "properties": { + "id": "meter-5209", + "maker": "Maker H", + "model": "Model 5209", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13048264969711, + 17.493187700609695 + ] + }, + "properties": { + "id": "meter-5210", + "maker": "Maker C", + "model": "Model 5210", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.15498630377805, + 17.45323862900397 + ] + }, + "properties": { + "id": "meter-5211", + "maker": "Maker C", + "model": "Model 5211", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.72735462127113, + 24.890868209769817 + ] + }, + "properties": { + "id": "meter-5212", + "maker": "Maker A", + "model": "Model 5212", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.37162128816722, + 29.83580025238737 + ] + }, + "properties": { + "id": "meter-5213", + "maker": "Maker G", + "model": "Model 5213", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.20996571307369, + 17.543065198780106 + ] + }, + "properties": { + "id": "meter-5214", + "maker": "Maker E", + "model": "Model 5214", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.202161141687064, + 26.236360778209608 + ] + }, + "properties": { + "id": "meter-5215", + "maker": "Maker E", + "model": "Model 5215", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.33161097784103, + 19.776449019784383 + ] + }, + "properties": { + "id": "meter-5216", + "maker": "Maker J", + "model": "Model 5216", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98333048414237, + 26.65474546645555 + ] + }, + "properties": { + "id": "meter-5217", + "maker": "Maker A", + "model": "Model 5217", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.39171355164306, + 21.51387431144442 + ] + }, + "properties": { + "id": "meter-5218", + "maker": "Maker E", + "model": "Model 5218", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.01131022896649, + 31.04290501782629 + ] + }, + "properties": { + "id": "meter-5219", + "maker": "Maker G", + "model": "Model 5219", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88857207580162, + 21.61091551626395 + ] + }, + "properties": { + "id": "meter-5220", + "maker": "Maker C", + "model": "Model 5220", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.47317695621891, + 18.14744247988464 + ] + }, + "properties": { + "id": "meter-5221", + "maker": "Maker D", + "model": "Model 5221", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.82033190897357, + 26.537852643278125 + ] + }, + "properties": { + "id": "meter-5222", + "maker": "Maker G", + "model": "Model 5222", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.89733260635649, + 27.328111212944744 + ] + }, + "properties": { + "id": "meter-5223", + "maker": "Maker E", + "model": "Model 5223", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.82118110188588, + 27.280345815026195 + ] + }, + "properties": { + "id": "meter-5224", + "maker": "Maker F", + "model": "Model 5224", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97002353099269, + 26.17199880115796 + ] + }, + "properties": { + "id": "meter-5225", + "maker": "Maker J", + "model": "Model 5225", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.76646652378911, + 27.424948870528578 + ] + }, + "properties": { + "id": "meter-5226", + "maker": "Maker C", + "model": "Model 5226", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.185792545809655, + 17.45015731201821 + ] + }, + "properties": { + "id": "meter-5227", + "maker": "Maker C", + "model": "Model 5227", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.40195281694804, + 18.10921235975417 + ] + }, + "properties": { + "id": "meter-5228", + "maker": "Maker F", + "model": "Model 5228", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.62414678114011, + 24.601907554469904 + ] + }, + "properties": { + "id": "meter-5229", + "maker": "Maker D", + "model": "Model 5229", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11967972043377, + 26.242929910334063 + ] + }, + "properties": { + "id": "meter-5230", + "maker": "Maker E", + "model": "Model 5230", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.58165335507882, + 24.54220434097777 + ] + }, + "properties": { + "id": "meter-5231", + "maker": "Maker C", + "model": "Model 5231", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.665438193312156, + 28.37514830858362 + ] + }, + "properties": { + "id": "meter-5232", + "maker": "Maker J", + "model": "Model 5232", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.652308345144135, + 24.57123740959626 + ] + }, + "properties": { + "id": "meter-5233", + "maker": "Maker G", + "model": "Model 5233", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0406988878335, + 24.34491033154324 + ] + }, + "properties": { + "id": "meter-5234", + "maker": "Maker C", + "model": "Model 5234", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0011918670216, + 26.43850287642383 + ] + }, + "properties": { + "id": "meter-5235", + "maker": "Maker B", + "model": "Model 5235", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.56434140977337, + 24.795936784641405 + ] + }, + "properties": { + "id": "meter-5236", + "maker": "Maker B", + "model": "Model 5236", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.713068878573736, + 18.340634578627668 + ] + }, + "properties": { + "id": "meter-5237", + "maker": "Maker C", + "model": "Model 5237", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.410140057013045, + 24.377147710519882 + ] + }, + "properties": { + "id": "meter-5238", + "maker": "Maker J", + "model": "Model 5238", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.47560229029588, + 30.057224895860784 + ] + }, + "properties": { + "id": "meter-5239", + "maker": "Maker H", + "model": "Model 5239", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68598624788639, + 18.254756927949487 + ] + }, + "properties": { + "id": "meter-5240", + "maker": "Maker E", + "model": "Model 5240", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71766701963404, + 18.264108026504257 + ] + }, + "properties": { + "id": "meter-5241", + "maker": "Maker A", + "model": "Model 5241", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05162285062293, + 26.702698539193623 + ] + }, + "properties": { + "id": "meter-5242", + "maker": "Maker G", + "model": "Model 5242", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.90134603633746, + 18.164228258106956 + ] + }, + "properties": { + "id": "meter-5243", + "maker": "Maker I", + "model": "Model 5243", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.117592801449454, + 30.82124818535442 + ] + }, + "properties": { + "id": "meter-5244", + "maker": "Maker B", + "model": "Model 5244", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.79770105783345, + 26.308680786364366 + ] + }, + "properties": { + "id": "meter-5245", + "maker": "Maker B", + "model": "Model 5245", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.74923852123481, + 21.271212093998987 + ] + }, + "properties": { + "id": "meter-5246", + "maker": "Maker J", + "model": "Model 5246", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.72967157932141, + 26.305514859537794 + ] + }, + "properties": { + "id": "meter-5247", + "maker": "Maker D", + "model": "Model 5247", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.115172370390404, + 21.414818641379693 + ] + }, + "properties": { + "id": "meter-5248", + "maker": "Maker G", + "model": "Model 5248", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.10025391904354, + 21.706557411706672 + ] + }, + "properties": { + "id": "meter-5249", + "maker": "Maker A", + "model": "Model 5249", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.551407991979914, + 18.063817868028313 + ] + }, + "properties": { + "id": "meter-5250", + "maker": "Maker H", + "model": "Model 5250", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.397685939874115, + 29.944528675168616 + ] + }, + "properties": { + "id": "meter-5251", + "maker": "Maker G", + "model": "Model 5251", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.609514338339835, + 24.533387630898257 + ] + }, + "properties": { + "id": "meter-5252", + "maker": "Maker F", + "model": "Model 5252", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.174422769847894, + 17.691725555208574 + ] + }, + "properties": { + "id": "meter-5253", + "maker": "Maker H", + "model": "Model 5253", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.06122954117476, + 21.508082473257097 + ] + }, + "properties": { + "id": "meter-5254", + "maker": "Maker G", + "model": "Model 5254", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.870838024323604, + 26.474632777652143 + ] + }, + "properties": { + "id": "meter-5255", + "maker": "Maker H", + "model": "Model 5255", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.22385070506066, + 24.024847666981575 + ] + }, + "properties": { + "id": "meter-5256", + "maker": "Maker A", + "model": "Model 5256", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.771881887296566, + 18.07353721475798 + ] + }, + "properties": { + "id": "meter-5257", + "maker": "Maker F", + "model": "Model 5257", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.83743430494806, + 26.254479079756315 + ] + }, + "properties": { + "id": "meter-5258", + "maker": "Maker H", + "model": "Model 5258", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.03272759937597, + 29.961484208115007 + ] + }, + "properties": { + "id": "meter-5259", + "maker": "Maker H", + "model": "Model 5259", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.94142384260985, + 24.64770689688808 + ] + }, + "properties": { + "id": "meter-5260", + "maker": "Maker A", + "model": "Model 5260", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.49536704923863, + 19.91913009498473 + ] + }, + "properties": { + "id": "meter-5261", + "maker": "Maker C", + "model": "Model 5261", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.081166474676316, + 26.193248123108095 + ] + }, + "properties": { + "id": "meter-5262", + "maker": "Maker G", + "model": "Model 5262", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.941140429807184, + 26.274926263769636 + ] + }, + "properties": { + "id": "meter-5263", + "maker": "Maker B", + "model": "Model 5263", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.18581050314742, + 29.965332530639248 + ] + }, + "properties": { + "id": "meter-5264", + "maker": "Maker I", + "model": "Model 5264", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.37532354438406, + 21.501627769894924 + ] + }, + "properties": { + "id": "meter-5265", + "maker": "Maker C", + "model": "Model 5265", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.90736542429356, + 26.502601783796056 + ] + }, + "properties": { + "id": "meter-5266", + "maker": "Maker D", + "model": "Model 5266", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.47958384564608, + 24.8647362760312 + ] + }, + "properties": { + "id": "meter-5267", + "maker": "Maker G", + "model": "Model 5267", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.42090935211464, + 24.780635429716195 + ] + }, + "properties": { + "id": "meter-5268", + "maker": "Maker F", + "model": "Model 5268", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.75668549254965, + 21.245528567997024 + ] + }, + "properties": { + "id": "meter-5269", + "maker": "Maker C", + "model": "Model 5269", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0013077151393, + 26.186431319323347 + ] + }, + "properties": { + "id": "meter-5270", + "maker": "Maker G", + "model": "Model 5270", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00023012716462, + 26.48450710046782 + ] + }, + "properties": { + "id": "meter-5271", + "maker": "Maker G", + "model": "Model 5271", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.73991634691487, + 25.277755536469463 + ] + }, + "properties": { + "id": "meter-5272", + "maker": "Maker A", + "model": "Model 5272", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.672675343823094, + 24.739084635696596 + ] + }, + "properties": { + "id": "meter-5273", + "maker": "Maker F", + "model": "Model 5273", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13134143540999, + 17.55922430505265 + ] + }, + "properties": { + "id": "meter-5274", + "maker": "Maker D", + "model": "Model 5274", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95588626922079, + 26.462076857327396 + ] + }, + "properties": { + "id": "meter-5275", + "maker": "Maker A", + "model": "Model 5275", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.38988238998261, + 18.44980902274269 + ] + }, + "properties": { + "id": "meter-5276", + "maker": "Maker A", + "model": "Model 5276", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.85483347401124, + 26.253588913283902 + ] + }, + "properties": { + "id": "meter-5277", + "maker": "Maker H", + "model": "Model 5277", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.000925692770046, + 26.499126321673472 + ] + }, + "properties": { + "id": "meter-5278", + "maker": "Maker C", + "model": "Model 5278", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.84282843546844, + 26.54083926817674 + ] + }, + "properties": { + "id": "meter-5279", + "maker": "Maker E", + "model": "Model 5279", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.942490859192624, + 26.388583892058918 + ] + }, + "properties": { + "id": "meter-5280", + "maker": "Maker C", + "model": "Model 5280", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.93772346427523, + 17.682865596841136 + ] + }, + "properties": { + "id": "meter-5281", + "maker": "Maker H", + "model": "Model 5281", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.976097839920065, + 26.31592155958575 + ] + }, + "properties": { + "id": "meter-5282", + "maker": "Maker E", + "model": "Model 5282", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04224961285962, + 26.129739659917835 + ] + }, + "properties": { + "id": "meter-5283", + "maker": "Maker G", + "model": "Model 5283", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.49396997171784, + 27.566696815277723 + ] + }, + "properties": { + "id": "meter-5284", + "maker": "Maker J", + "model": "Model 5284", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.277053265582445, + 17.60933212538745 + ] + }, + "properties": { + "id": "meter-5285", + "maker": "Maker J", + "model": "Model 5285", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.90703165649947, + 21.14416685020737 + ] + }, + "properties": { + "id": "meter-5286", + "maker": "Maker J", + "model": "Model 5286", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.79120632988529, + 26.455136215152006 + ] + }, + "properties": { + "id": "meter-5287", + "maker": "Maker C", + "model": "Model 5287", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01350496556262, + 26.461832401456892 + ] + }, + "properties": { + "id": "meter-5288", + "maker": "Maker A", + "model": "Model 5288", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.61639107020718, + 28.431634099021814 + ] + }, + "properties": { + "id": "meter-5289", + "maker": "Maker F", + "model": "Model 5289", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07256434888281, + 26.431148541206113 + ] + }, + "properties": { + "id": "meter-5290", + "maker": "Maker A", + "model": "Model 5290", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.7682323911462, + 27.259908368380643 + ] + }, + "properties": { + "id": "meter-5291", + "maker": "Maker H", + "model": "Model 5291", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26924318314942, + 21.493136409646166 + ] + }, + "properties": { + "id": "meter-5292", + "maker": "Maker G", + "model": "Model 5292", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.779021641361034, + 26.293725718533345 + ] + }, + "properties": { + "id": "meter-5293", + "maker": "Maker G", + "model": "Model 5293", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.368749298735445, + 19.767267850453077 + ] + }, + "properties": { + "id": "meter-5294", + "maker": "Maker H", + "model": "Model 5294", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46394186039431, + 27.61512662271967 + ] + }, + "properties": { + "id": "meter-5295", + "maker": "Maker G", + "model": "Model 5295", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.895154879635676, + 26.37067250838129 + ] + }, + "properties": { + "id": "meter-5296", + "maker": "Maker B", + "model": "Model 5296", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.57747058970796, + 28.445251410062692 + ] + }, + "properties": { + "id": "meter-5297", + "maker": "Maker D", + "model": "Model 5297", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.2082728479626, + 31.14617456047994 + ] + }, + "properties": { + "id": "meter-5298", + "maker": "Maker E", + "model": "Model 5298", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.65388586031192, + 21.535507412661133 + ] + }, + "properties": { + "id": "meter-5299", + "maker": "Maker F", + "model": "Model 5299", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.28822981655188, + 17.617842960200246 + ] + }, + "properties": { + "id": "meter-5300", + "maker": "Maker B", + "model": "Model 5300", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84316410350424, + 21.24522618033936 + ] + }, + "properties": { + "id": "meter-5301", + "maker": "Maker D", + "model": "Model 5301", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.138035783104094, + 17.49590214106797 + ] + }, + "properties": { + "id": "meter-5302", + "maker": "Maker J", + "model": "Model 5302", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57523809315862, + 25.348231957914756 + ] + }, + "properties": { + "id": "meter-5303", + "maker": "Maker A", + "model": "Model 5303", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10138666810978, + 17.448035338546713 + ] + }, + "properties": { + "id": "meter-5304", + "maker": "Maker G", + "model": "Model 5304", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.59744416890841, + 17.937739395997006 + ] + }, + "properties": { + "id": "meter-5305", + "maker": "Maker G", + "model": "Model 5305", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.55742859604552, + 24.624792875785506 + ] + }, + "properties": { + "id": "meter-5306", + "maker": "Maker D", + "model": "Model 5306", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.729174640150084, + 18.21481300185926 + ] + }, + "properties": { + "id": "meter-5307", + "maker": "Maker G", + "model": "Model 5307", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07608032536416, + 24.075070693315446 + ] + }, + "properties": { + "id": "meter-5308", + "maker": "Maker D", + "model": "Model 5308", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.611629011256646, + 24.52551778770847 + ] + }, + "properties": { + "id": "meter-5309", + "maker": "Maker J", + "model": "Model 5309", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73542858065936, + 18.387157104937092 + ] + }, + "properties": { + "id": "meter-5310", + "maker": "Maker E", + "model": "Model 5310", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93451125086182, + 26.170329869143405 + ] + }, + "properties": { + "id": "meter-5311", + "maker": "Maker I", + "model": "Model 5311", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.96024621642382, + 30.89485741227743 + ] + }, + "properties": { + "id": "meter-5312", + "maker": "Maker D", + "model": "Model 5312", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.3398219486685, + 21.40778009119124 + ] + }, + "properties": { + "id": "meter-5313", + "maker": "Maker F", + "model": "Model 5313", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.56385849358493, + 24.448971349716512 + ] + }, + "properties": { + "id": "meter-5314", + "maker": "Maker E", + "model": "Model 5314", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98601605800096, + 26.353751033593365 + ] + }, + "properties": { + "id": "meter-5315", + "maker": "Maker D", + "model": "Model 5315", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.661696648184986, + 24.720804934677513 + ] + }, + "properties": { + "id": "meter-5316", + "maker": "Maker C", + "model": "Model 5316", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.6910424505372, + 24.421484515971066 + ] + }, + "properties": { + "id": "meter-5317", + "maker": "Maker E", + "model": "Model 5317", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.489584122123254, + 20.246979839124652 + ] + }, + "properties": { + "id": "meter-5318", + "maker": "Maker H", + "model": "Model 5318", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.33185543724806, + 21.71581782980326 + ] + }, + "properties": { + "id": "meter-5319", + "maker": "Maker J", + "model": "Model 5319", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58855979889216, + 25.522781713404985 + ] + }, + "properties": { + "id": "meter-5320", + "maker": "Maker B", + "model": "Model 5320", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91270087919909, + 26.4813625684919 + ] + }, + "properties": { + "id": "meter-5321", + "maker": "Maker E", + "model": "Model 5321", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97159862440386, + 26.426639850409416 + ] + }, + "properties": { + "id": "meter-5322", + "maker": "Maker B", + "model": "Model 5322", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.175120129426624, + 30.065657873631604 + ] + }, + "properties": { + "id": "meter-5323", + "maker": "Maker D", + "model": "Model 5323", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.831240925788435, + 30.798821301277595 + ] + }, + "properties": { + "id": "meter-5324", + "maker": "Maker C", + "model": "Model 5324", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.55182319789147, + 24.712673205887896 + ] + }, + "properties": { + "id": "meter-5325", + "maker": "Maker G", + "model": "Model 5325", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.80275914805902, + 26.315601966577695 + ] + }, + "properties": { + "id": "meter-5326", + "maker": "Maker D", + "model": "Model 5326", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.319550667853726, + 17.49698784936596 + ] + }, + "properties": { + "id": "meter-5327", + "maker": "Maker G", + "model": "Model 5327", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.1794731189526, + 21.512928282578216 + ] + }, + "properties": { + "id": "meter-5328", + "maker": "Maker A", + "model": "Model 5328", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.066764530932815, + 17.572043177343833 + ] + }, + "properties": { + "id": "meter-5329", + "maker": "Maker H", + "model": "Model 5329", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.166297733307545, + 24.12929709287638 + ] + }, + "properties": { + "id": "meter-5330", + "maker": "Maker H", + "model": "Model 5330", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.242661425900785, + 30.869589994137147 + ] + }, + "properties": { + "id": "meter-5331", + "maker": "Maker I", + "model": "Model 5331", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.60801153693986, + 27.390739359216873 + ] + }, + "properties": { + "id": "meter-5332", + "maker": "Maker I", + "model": "Model 5332", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14379550897643, + 26.340029156664713 + ] + }, + "properties": { + "id": "meter-5333", + "maker": "Maker C", + "model": "Model 5333", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.52713924079794, + 28.386191521428625 + ] + }, + "properties": { + "id": "meter-5334", + "maker": "Maker E", + "model": "Model 5334", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.179665496551706, + 26.299740738745715 + ] + }, + "properties": { + "id": "meter-5335", + "maker": "Maker C", + "model": "Model 5335", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21593457697977, + 26.269957755237805 + ] + }, + "properties": { + "id": "meter-5336", + "maker": "Maker I", + "model": "Model 5336", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.523647878206276, + 27.719018555849118 + ] + }, + "properties": { + "id": "meter-5337", + "maker": "Maker F", + "model": "Model 5337", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.702527809731166, + 18.36390947205559 + ] + }, + "properties": { + "id": "meter-5338", + "maker": "Maker A", + "model": "Model 5338", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.664418796021835, + 24.530575742291127 + ] + }, + "properties": { + "id": "meter-5339", + "maker": "Maker H", + "model": "Model 5339", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.90510003111684, + 18.215516033407805 + ] + }, + "properties": { + "id": "meter-5340", + "maker": "Maker F", + "model": "Model 5340", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.48761014640611, + 18.140146187039246 + ] + }, + "properties": { + "id": "meter-5341", + "maker": "Maker I", + "model": "Model 5341", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.68608007703909, + 28.140072024875465 + ] + }, + "properties": { + "id": "meter-5342", + "maker": "Maker G", + "model": "Model 5342", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.05186451546871, + 30.715873799752323 + ] + }, + "properties": { + "id": "meter-5343", + "maker": "Maker I", + "model": "Model 5343", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20118424184061, + 26.361584470263786 + ] + }, + "properties": { + "id": "meter-5344", + "maker": "Maker J", + "model": "Model 5344", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69166833764741, + 27.51539394937995 + ] + }, + "properties": { + "id": "meter-5345", + "maker": "Maker E", + "model": "Model 5345", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.57490815900927, + 24.514648629640195 + ] + }, + "properties": { + "id": "meter-5346", + "maker": "Maker A", + "model": "Model 5346", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.605644835531685, + 25.370811792980557 + ] + }, + "properties": { + "id": "meter-5347", + "maker": "Maker H", + "model": "Model 5347", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63652480145063, + 21.48689268934597 + ] + }, + "properties": { + "id": "meter-5348", + "maker": "Maker D", + "model": "Model 5348", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.52345751387048, + 28.272485605382194 + ] + }, + "properties": { + "id": "meter-5349", + "maker": "Maker D", + "model": "Model 5349", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.51686176092863, + 24.795939370235363 + ] + }, + "properties": { + "id": "meter-5350", + "maker": "Maker B", + "model": "Model 5350", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.923429023388834, + 26.262790096142943 + ] + }, + "properties": { + "id": "meter-5351", + "maker": "Maker H", + "model": "Model 5351", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.91998770650119, + 27.388173366495074 + ] + }, + "properties": { + "id": "meter-5352", + "maker": "Maker B", + "model": "Model 5352", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.649792660889915, + 28.594055242988482 + ] + }, + "properties": { + "id": "meter-5353", + "maker": "Maker F", + "model": "Model 5353", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.6429933491178, + 25.144136341037303 + ] + }, + "properties": { + "id": "meter-5354", + "maker": "Maker B", + "model": "Model 5354", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.48670743685533, + 18.19720053921521 + ] + }, + "properties": { + "id": "meter-5355", + "maker": "Maker J", + "model": "Model 5355", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.33129334150198, + 18.258981229908894 + ] + }, + "properties": { + "id": "meter-5356", + "maker": "Maker G", + "model": "Model 5356", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13557195238679, + 17.48951997066888 + ] + }, + "properties": { + "id": "meter-5357", + "maker": "Maker E", + "model": "Model 5357", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.98944781134541, + 21.20926958835053 + ] + }, + "properties": { + "id": "meter-5358", + "maker": "Maker G", + "model": "Model 5358", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02802390568591, + 17.501002369083167 + ] + }, + "properties": { + "id": "meter-5359", + "maker": "Maker A", + "model": "Model 5359", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.97035562307971, + 30.12235773667131 + ] + }, + "properties": { + "id": "meter-5360", + "maker": "Maker A", + "model": "Model 5360", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.02727860680533, + 30.898443527078427 + ] + }, + "properties": { + "id": "meter-5361", + "maker": "Maker C", + "model": "Model 5361", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.91734307723394, + 31.212003988521236 + ] + }, + "properties": { + "id": "meter-5362", + "maker": "Maker C", + "model": "Model 5362", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73883121372037, + 18.352497238825798 + ] + }, + "properties": { + "id": "meter-5363", + "maker": "Maker D", + "model": "Model 5363", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21482548947483, + 21.403999976989613 + ] + }, + "properties": { + "id": "meter-5364", + "maker": "Maker J", + "model": "Model 5364", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.86292521562995, + 26.56664211089099 + ] + }, + "properties": { + "id": "meter-5365", + "maker": "Maker D", + "model": "Model 5365", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.057762284854874, + 26.387075463571616 + ] + }, + "properties": { + "id": "meter-5366", + "maker": "Maker B", + "model": "Model 5366", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12483201334204, + 17.4929312042892 + ] + }, + "properties": { + "id": "meter-5367", + "maker": "Maker C", + "model": "Model 5367", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.62483312738539, + 25.054872983500882 + ] + }, + "properties": { + "id": "meter-5368", + "maker": "Maker A", + "model": "Model 5368", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.662991104866826, + 27.27214084073262 + ] + }, + "properties": { + "id": "meter-5369", + "maker": "Maker A", + "model": "Model 5369", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.82007152620962, + 21.39427967715152 + ] + }, + "properties": { + "id": "meter-5370", + "maker": "Maker G", + "model": "Model 5370", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.10213907697906, + 24.061425042788716 + ] + }, + "properties": { + "id": "meter-5371", + "maker": "Maker J", + "model": "Model 5371", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.46101038497176, + 21.491235355980564 + ] + }, + "properties": { + "id": "meter-5372", + "maker": "Maker G", + "model": "Model 5372", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.60498811837255, + 18.352788195337528 + ] + }, + "properties": { + "id": "meter-5373", + "maker": "Maker E", + "model": "Model 5373", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12274829191125, + 17.48621191379012 + ] + }, + "properties": { + "id": "meter-5374", + "maker": "Maker G", + "model": "Model 5374", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.46326654931133, + 21.499044053027678 + ] + }, + "properties": { + "id": "meter-5375", + "maker": "Maker J", + "model": "Model 5375", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26433488109211, + 21.395421844442925 + ] + }, + "properties": { + "id": "meter-5376", + "maker": "Maker I", + "model": "Model 5376", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81276138896891, + 21.348906250680177 + ] + }, + "properties": { + "id": "meter-5377", + "maker": "Maker E", + "model": "Model 5377", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13803415573607, + 26.15409428809711 + ] + }, + "properties": { + "id": "meter-5378", + "maker": "Maker D", + "model": "Model 5378", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.34952043624587, + 21.403916487004583 + ] + }, + "properties": { + "id": "meter-5379", + "maker": "Maker J", + "model": "Model 5379", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.579088127752705, + 24.880444355702455 + ] + }, + "properties": { + "id": "meter-5380", + "maker": "Maker I", + "model": "Model 5380", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0340686808748, + 26.45832913553351 + ] + }, + "properties": { + "id": "meter-5381", + "maker": "Maker D", + "model": "Model 5381", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.30022392367381, + 21.464695896836293 + ] + }, + "properties": { + "id": "meter-5382", + "maker": "Maker B", + "model": "Model 5382", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.60729301236706, + 28.123870600497447 + ] + }, + "properties": { + "id": "meter-5383", + "maker": "Maker G", + "model": "Model 5383", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98835611169951, + 26.466897042737262 + ] + }, + "properties": { + "id": "meter-5384", + "maker": "Maker J", + "model": "Model 5384", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.981147832996214, + 21.642399927379653 + ] + }, + "properties": { + "id": "meter-5385", + "maker": "Maker J", + "model": "Model 5385", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.68582803901471, + 25.620571782069376 + ] + }, + "properties": { + "id": "meter-5386", + "maker": "Maker F", + "model": "Model 5386", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17088047766591, + 26.296703664892323 + ] + }, + "properties": { + "id": "meter-5387", + "maker": "Maker F", + "model": "Model 5387", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.79338895565223, + 18.14830425019684 + ] + }, + "properties": { + "id": "meter-5388", + "maker": "Maker I", + "model": "Model 5388", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.79658593069605, + 26.436143452141685 + ] + }, + "properties": { + "id": "meter-5389", + "maker": "Maker E", + "model": "Model 5389", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99617806063479, + 26.421464631164238 + ] + }, + "properties": { + "id": "meter-5390", + "maker": "Maker J", + "model": "Model 5390", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85399259011323, + 21.383882868901615 + ] + }, + "properties": { + "id": "meter-5391", + "maker": "Maker F", + "model": "Model 5391", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.29289258554493, + 21.718299709137973 + ] + }, + "properties": { + "id": "meter-5392", + "maker": "Maker H", + "model": "Model 5392", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.40568100769746, + 17.47077768070974 + ] + }, + "properties": { + "id": "meter-5393", + "maker": "Maker E", + "model": "Model 5393", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.992488706131255, + 17.51861066444418 + ] + }, + "properties": { + "id": "meter-5394", + "maker": "Maker J", + "model": "Model 5394", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05930523936647, + 24.101032350433005 + ] + }, + "properties": { + "id": "meter-5395", + "maker": "Maker I", + "model": "Model 5395", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.056218558685245, + 24.160530095114524 + ] + }, + "properties": { + "id": "meter-5396", + "maker": "Maker F", + "model": "Model 5396", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.366063632975525, + 21.597081294376895 + ] + }, + "properties": { + "id": "meter-5397", + "maker": "Maker B", + "model": "Model 5397", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.08346559309451, + 24.09370516187995 + ] + }, + "properties": { + "id": "meter-5398", + "maker": "Maker J", + "model": "Model 5398", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.90548484739595, + 24.291778725454854 + ] + }, + "properties": { + "id": "meter-5399", + "maker": "Maker I", + "model": "Model 5399", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.05866127771418, + 30.972872184111143 + ] + }, + "properties": { + "id": "meter-5400", + "maker": "Maker H", + "model": "Model 5400", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02699988527877, + 17.389258067675478 + ] + }, + "properties": { + "id": "meter-5401", + "maker": "Maker C", + "model": "Model 5401", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.038170927427416, + 30.97108335144999 + ] + }, + "properties": { + "id": "meter-5402", + "maker": "Maker G", + "model": "Model 5402", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.017797244462024, + 26.498073188012558 + ] + }, + "properties": { + "id": "meter-5403", + "maker": "Maker J", + "model": "Model 5403", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13594517074525, + 26.319075729750757 + ] + }, + "properties": { + "id": "meter-5404", + "maker": "Maker A", + "model": "Model 5404", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25008946376253, + 21.77838993706995 + ] + }, + "properties": { + "id": "meter-5405", + "maker": "Maker E", + "model": "Model 5405", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.88800738026182, + 31.049136382098183 + ] + }, + "properties": { + "id": "meter-5406", + "maker": "Maker I", + "model": "Model 5406", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03036087090089, + 26.489018891045774 + ] + }, + "properties": { + "id": "meter-5407", + "maker": "Maker I", + "model": "Model 5407", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95329251199395, + 26.147418534732267 + ] + }, + "properties": { + "id": "meter-5408", + "maker": "Maker I", + "model": "Model 5408", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.986384455033125, + 26.491480857159623 + ] + }, + "properties": { + "id": "meter-5409", + "maker": "Maker A", + "model": "Model 5409", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.78674773906977, + 27.666381807475172 + ] + }, + "properties": { + "id": "meter-5410", + "maker": "Maker G", + "model": "Model 5410", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14121660424779, + 17.5807762440036 + ] + }, + "properties": { + "id": "meter-5411", + "maker": "Maker I", + "model": "Model 5411", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.646833231377535, + 21.548643494039915 + ] + }, + "properties": { + "id": "meter-5412", + "maker": "Maker C", + "model": "Model 5412", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.95883701825688, + 26.319558034768004 + ] + }, + "properties": { + "id": "meter-5413", + "maker": "Maker C", + "model": "Model 5413", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20890113012106, + 29.930239913411828 + ] + }, + "properties": { + "id": "meter-5414", + "maker": "Maker A", + "model": "Model 5414", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.50354998860712, + 24.375048475397378 + ] + }, + "properties": { + "id": "meter-5415", + "maker": "Maker G", + "model": "Model 5415", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0713693188731, + 24.09161706772861 + ] + }, + "properties": { + "id": "meter-5416", + "maker": "Maker A", + "model": "Model 5416", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.242187050748825, + 21.502660730791984 + ] + }, + "properties": { + "id": "meter-5417", + "maker": "Maker G", + "model": "Model 5417", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.500863941977265, + 20.186864380147924 + ] + }, + "properties": { + "id": "meter-5418", + "maker": "Maker G", + "model": "Model 5418", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.052829424021226, + 30.984856510801286 + ] + }, + "properties": { + "id": "meter-5419", + "maker": "Maker A", + "model": "Model 5419", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52779758085765, + 18.508727352131057 + ] + }, + "properties": { + "id": "meter-5420", + "maker": "Maker B", + "model": "Model 5420", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.1751409409037, + 29.70881553367751 + ] + }, + "properties": { + "id": "meter-5421", + "maker": "Maker I", + "model": "Model 5421", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01221920452508, + 26.36920159036158 + ] + }, + "properties": { + "id": "meter-5422", + "maker": "Maker A", + "model": "Model 5422", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94602960015216, + 26.442455280870636 + ] + }, + "properties": { + "id": "meter-5423", + "maker": "Maker H", + "model": "Model 5423", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58527227978158, + 25.36661748098073 + ] + }, + "properties": { + "id": "meter-5424", + "maker": "Maker E", + "model": "Model 5424", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.994240666924284, + 26.312749374883072 + ] + }, + "properties": { + "id": "meter-5425", + "maker": "Maker H", + "model": "Model 5425", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67141565967012, + 24.71169023982576 + ] + }, + "properties": { + "id": "meter-5426", + "maker": "Maker I", + "model": "Model 5426", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.57598866138451, + 20.081496998241903 + ] + }, + "properties": { + "id": "meter-5427", + "maker": "Maker D", + "model": "Model 5427", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96716021364367, + 26.487119749809622 + ] + }, + "properties": { + "id": "meter-5428", + "maker": "Maker I", + "model": "Model 5428", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98768574288554, + 17.629476913079692 + ] + }, + "properties": { + "id": "meter-5429", + "maker": "Maker E", + "model": "Model 5429", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.37969455909952, + 18.172392424492514 + ] + }, + "properties": { + "id": "meter-5430", + "maker": "Maker B", + "model": "Model 5430", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.28865452937253, + 17.616485401670094 + ] + }, + "properties": { + "id": "meter-5431", + "maker": "Maker F", + "model": "Model 5431", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86773858513173, + 21.27620231944946 + ] + }, + "properties": { + "id": "meter-5432", + "maker": "Maker G", + "model": "Model 5432", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.441418819943955, + 25.238336029190933 + ] + }, + "properties": { + "id": "meter-5433", + "maker": "Maker F", + "model": "Model 5433", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.77213892353721, + 27.610900250650502 + ] + }, + "properties": { + "id": "meter-5434", + "maker": "Maker D", + "model": "Model 5434", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.470472206362174, + 17.925451836034952 + ] + }, + "properties": { + "id": "meter-5435", + "maker": "Maker H", + "model": "Model 5435", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.472754628638775, + 27.701363674589764 + ] + }, + "properties": { + "id": "meter-5436", + "maker": "Maker D", + "model": "Model 5436", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.18920894579917, + 29.96387347069971 + ] + }, + "properties": { + "id": "meter-5437", + "maker": "Maker G", + "model": "Model 5437", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.691779695082936, + 27.544787827231023 + ] + }, + "properties": { + "id": "meter-5438", + "maker": "Maker H", + "model": "Model 5438", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.973530673571624, + 26.357375870876858 + ] + }, + "properties": { + "id": "meter-5439", + "maker": "Maker A", + "model": "Model 5439", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.129321151853894, + 26.689159391218524 + ] + }, + "properties": { + "id": "meter-5440", + "maker": "Maker A", + "model": "Model 5440", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.110587430244394, + 29.956251796255664 + ] + }, + "properties": { + "id": "meter-5441", + "maker": "Maker A", + "model": "Model 5441", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6465690065421, + 20.185394571648118 + ] + }, + "properties": { + "id": "meter-5442", + "maker": "Maker A", + "model": "Model 5442", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53093779684393, + 18.22185639262518 + ] + }, + "properties": { + "id": "meter-5443", + "maker": "Maker D", + "model": "Model 5443", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.47860692275391, + 18.330427945214172 + ] + }, + "properties": { + "id": "meter-5444", + "maker": "Maker I", + "model": "Model 5444", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1129684602561, + 26.383096014038962 + ] + }, + "properties": { + "id": "meter-5445", + "maker": "Maker C", + "model": "Model 5445", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.708903609466915, + 24.33194185360912 + ] + }, + "properties": { + "id": "meter-5446", + "maker": "Maker F", + "model": "Model 5446", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.98717581315049, + 24.142457804189185 + ] + }, + "properties": { + "id": "meter-5447", + "maker": "Maker G", + "model": "Model 5447", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.35726050104636, + 18.07723429942553 + ] + }, + "properties": { + "id": "meter-5448", + "maker": "Maker B", + "model": "Model 5448", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6734039632219, + 19.81640370766842 + ] + }, + "properties": { + "id": "meter-5449", + "maker": "Maker A", + "model": "Model 5449", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92084132150319, + 26.352520182964152 + ] + }, + "properties": { + "id": "meter-5450", + "maker": "Maker F", + "model": "Model 5450", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.988919458168894, + 26.45519422451506 + ] + }, + "properties": { + "id": "meter-5451", + "maker": "Maker H", + "model": "Model 5451", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.591494472275684, + 25.352868912837838 + ] + }, + "properties": { + "id": "meter-5452", + "maker": "Maker C", + "model": "Model 5452", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.3118077635081, + 23.928067393936836 + ] + }, + "properties": { + "id": "meter-5453", + "maker": "Maker F", + "model": "Model 5453", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05129423753144, + 26.277654294091867 + ] + }, + "properties": { + "id": "meter-5454", + "maker": "Maker H", + "model": "Model 5454", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13994659630862, + 17.467784684946125 + ] + }, + "properties": { + "id": "meter-5455", + "maker": "Maker G", + "model": "Model 5455", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12231511175755, + 26.25339894553917 + ] + }, + "properties": { + "id": "meter-5456", + "maker": "Maker A", + "model": "Model 5456", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.08671646449584, + 21.315714708147087 + ] + }, + "properties": { + "id": "meter-5457", + "maker": "Maker A", + "model": "Model 5457", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.095673199845955, + 26.42201557037946 + ] + }, + "properties": { + "id": "meter-5458", + "maker": "Maker D", + "model": "Model 5458", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03326386583023, + 26.15461675143037 + ] + }, + "properties": { + "id": "meter-5459", + "maker": "Maker C", + "model": "Model 5459", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.74969612337633, + 18.324766627592222 + ] + }, + "properties": { + "id": "meter-5460", + "maker": "Maker E", + "model": "Model 5460", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73313976865927, + 18.274556072702225 + ] + }, + "properties": { + "id": "meter-5461", + "maker": "Maker F", + "model": "Model 5461", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.490273615480056, + 21.60655839870994 + ] + }, + "properties": { + "id": "meter-5462", + "maker": "Maker J", + "model": "Model 5462", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.16657498660736, + 30.83731463645978 + ] + }, + "properties": { + "id": "meter-5463", + "maker": "Maker G", + "model": "Model 5463", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.28578876238966, + 30.035969876881904 + ] + }, + "properties": { + "id": "meter-5464", + "maker": "Maker C", + "model": "Model 5464", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.01204429225232, + 31.143009469153156 + ] + }, + "properties": { + "id": "meter-5465", + "maker": "Maker D", + "model": "Model 5465", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.72079660498317, + 25.152930666821955 + ] + }, + "properties": { + "id": "meter-5466", + "maker": "Maker J", + "model": "Model 5466", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.86601450930403, + 26.535528761520318 + ] + }, + "properties": { + "id": "meter-5467", + "maker": "Maker C", + "model": "Model 5467", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70904332049668, + 27.50033261681191 + ] + }, + "properties": { + "id": "meter-5468", + "maker": "Maker C", + "model": "Model 5468", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.10915094571967, + 30.22793409950071 + ] + }, + "properties": { + "id": "meter-5469", + "maker": "Maker F", + "model": "Model 5469", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.442275983223126, + 21.5010458792354 + ] + }, + "properties": { + "id": "meter-5470", + "maker": "Maker A", + "model": "Model 5470", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.075881337389, + 17.461902307803534 + ] + }, + "properties": { + "id": "meter-5471", + "maker": "Maker C", + "model": "Model 5471", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.31868757134693, + 29.787144366850367 + ] + }, + "properties": { + "id": "meter-5472", + "maker": "Maker F", + "model": "Model 5472", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.31966429955228, + 29.967595462230225 + ] + }, + "properties": { + "id": "meter-5473", + "maker": "Maker H", + "model": "Model 5473", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.77007677446946, + 24.70125878876092 + ] + }, + "properties": { + "id": "meter-5474", + "maker": "Maker C", + "model": "Model 5474", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.5633980383314, + 27.7691493557973 + ] + }, + "properties": { + "id": "meter-5475", + "maker": "Maker H", + "model": "Model 5475", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.658600877459946, + 28.44740125729591 + ] + }, + "properties": { + "id": "meter-5476", + "maker": "Maker C", + "model": "Model 5476", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.9947003936117, + 26.16278679919965 + ] + }, + "properties": { + "id": "meter-5477", + "maker": "Maker B", + "model": "Model 5477", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.460098699432926, + 20.016135755819327 + ] + }, + "properties": { + "id": "meter-5478", + "maker": "Maker C", + "model": "Model 5478", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.65243791099719, + 28.31590241702931 + ] + }, + "properties": { + "id": "meter-5479", + "maker": "Maker A", + "model": "Model 5479", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.691545704555594, + 28.526683106882967 + ] + }, + "properties": { + "id": "meter-5480", + "maker": "Maker J", + "model": "Model 5480", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14848045003884, + 26.189133515608 + ] + }, + "properties": { + "id": "meter-5481", + "maker": "Maker G", + "model": "Model 5481", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15547107947058, + 26.304340111025333 + ] + }, + "properties": { + "id": "meter-5482", + "maker": "Maker E", + "model": "Model 5482", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.008143673771826, + 24.11679294315074 + ] + }, + "properties": { + "id": "meter-5483", + "maker": "Maker I", + "model": "Model 5483", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63032175847874, + 21.343402806982834 + ] + }, + "properties": { + "id": "meter-5484", + "maker": "Maker H", + "model": "Model 5484", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.93448811622933, + 30.84275786026208 + ] + }, + "properties": { + "id": "meter-5485", + "maker": "Maker D", + "model": "Model 5485", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.100218516460416, + 24.06345523301548 + ] + }, + "properties": { + "id": "meter-5486", + "maker": "Maker B", + "model": "Model 5486", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.078642331817825, + 26.440982463776983 + ] + }, + "properties": { + "id": "meter-5487", + "maker": "Maker J", + "model": "Model 5487", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.958736141399136, + 26.088129427618494 + ] + }, + "properties": { + "id": "meter-5488", + "maker": "Maker F", + "model": "Model 5488", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67651715545091, + 24.773285804620308 + ] + }, + "properties": { + "id": "meter-5489", + "maker": "Maker A", + "model": "Model 5489", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.641234285710844, + 25.31268467274231 + ] + }, + "properties": { + "id": "meter-5490", + "maker": "Maker G", + "model": "Model 5490", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.15056080510598, + 21.36731712084285 + ] + }, + "properties": { + "id": "meter-5491", + "maker": "Maker B", + "model": "Model 5491", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.31846265519525, + 29.844669074316688 + ] + }, + "properties": { + "id": "meter-5492", + "maker": "Maker J", + "model": "Model 5492", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.76246562652508, + 24.49222448412243 + ] + }, + "properties": { + "id": "meter-5493", + "maker": "Maker C", + "model": "Model 5493", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.78980545693116, + 24.53397311274752 + ] + }, + "properties": { + "id": "meter-5494", + "maker": "Maker G", + "model": "Model 5494", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.041015985544924, + 17.445114525356985 + ] + }, + "properties": { + "id": "meter-5495", + "maker": "Maker G", + "model": "Model 5495", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0993680686424, + 26.418547414153917 + ] + }, + "properties": { + "id": "meter-5496", + "maker": "Maker E", + "model": "Model 5496", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.77713195003314, + 28.311790097737486 + ] + }, + "properties": { + "id": "meter-5497", + "maker": "Maker I", + "model": "Model 5497", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.58706409687215, + 27.588273055301897 + ] + }, + "properties": { + "id": "meter-5498", + "maker": "Maker A", + "model": "Model 5498", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61688537891056, + 24.52509099104707 + ] + }, + "properties": { + "id": "meter-5499", + "maker": "Maker F", + "model": "Model 5499", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.098218733616555, + 26.19944782256321 + ] + }, + "properties": { + "id": "meter-5500", + "maker": "Maker G", + "model": "Model 5500", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99885537430384, + 26.263231263122467 + ] + }, + "properties": { + "id": "meter-5501", + "maker": "Maker D", + "model": "Model 5501", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68157435153497, + 18.23497693735073 + ] + }, + "properties": { + "id": "meter-5502", + "maker": "Maker B", + "model": "Model 5502", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.066615384327356, + 26.317925868934992 + ] + }, + "properties": { + "id": "meter-5503", + "maker": "Maker J", + "model": "Model 5503", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.239327713267855, + 21.480781978936612 + ] + }, + "properties": { + "id": "meter-5504", + "maker": "Maker G", + "model": "Model 5504", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.519219590387614, + 24.426757457267755 + ] + }, + "properties": { + "id": "meter-5505", + "maker": "Maker E", + "model": "Model 5505", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.294757201053606, + 17.727883001247882 + ] + }, + "properties": { + "id": "meter-5506", + "maker": "Maker A", + "model": "Model 5506", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.25062747036432, + 31.016817062613587 + ] + }, + "properties": { + "id": "meter-5507", + "maker": "Maker A", + "model": "Model 5507", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05022569733593, + 26.342966493591092 + ] + }, + "properties": { + "id": "meter-5508", + "maker": "Maker E", + "model": "Model 5508", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.77653297866268, + 26.411131604410965 + ] + }, + "properties": { + "id": "meter-5509", + "maker": "Maker F", + "model": "Model 5509", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.575654586081555, + 24.43030124636233 + ] + }, + "properties": { + "id": "meter-5510", + "maker": "Maker J", + "model": "Model 5510", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03597394140119, + 26.344381121377275 + ] + }, + "properties": { + "id": "meter-5511", + "maker": "Maker C", + "model": "Model 5511", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.01643606026618, + 30.93930583217936 + ] + }, + "properties": { + "id": "meter-5512", + "maker": "Maker G", + "model": "Model 5512", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12898059058754, + 26.265771838517438 + ] + }, + "properties": { + "id": "meter-5513", + "maker": "Maker I", + "model": "Model 5513", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00914971226447, + 26.257501018840003 + ] + }, + "properties": { + "id": "meter-5514", + "maker": "Maker J", + "model": "Model 5514", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98153534328665, + 17.67441844171906 + ] + }, + "properties": { + "id": "meter-5515", + "maker": "Maker I", + "model": "Model 5515", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.87835527869772, + 17.540984156395886 + ] + }, + "properties": { + "id": "meter-5516", + "maker": "Maker E", + "model": "Model 5516", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.546067943298375, + 25.288376229660866 + ] + }, + "properties": { + "id": "meter-5517", + "maker": "Maker J", + "model": "Model 5517", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.40622468097588, + 27.415062186040725 + ] + }, + "properties": { + "id": "meter-5518", + "maker": "Maker J", + "model": "Model 5518", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.201578559989905, + 26.26030818620373 + ] + }, + "properties": { + "id": "meter-5519", + "maker": "Maker I", + "model": "Model 5519", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.666443010818064, + 27.456069100107097 + ] + }, + "properties": { + "id": "meter-5520", + "maker": "Maker G", + "model": "Model 5520", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.53752530714062, + 28.142494010401318 + ] + }, + "properties": { + "id": "meter-5521", + "maker": "Maker F", + "model": "Model 5521", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.88452693946165, + 26.160846634751543 + ] + }, + "properties": { + "id": "meter-5522", + "maker": "Maker G", + "model": "Model 5522", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.40939259486838, + 25.31510129821648 + ] + }, + "properties": { + "id": "meter-5523", + "maker": "Maker D", + "model": "Model 5523", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.67069168312811, + 28.59402308464679 + ] + }, + "properties": { + "id": "meter-5524", + "maker": "Maker H", + "model": "Model 5524", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1751660937484, + 17.529215852047894 + ] + }, + "properties": { + "id": "meter-5525", + "maker": "Maker H", + "model": "Model 5525", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70204496269626, + 27.783119575927834 + ] + }, + "properties": { + "id": "meter-5526", + "maker": "Maker J", + "model": "Model 5526", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.471254671237176, + 19.953142141239038 + ] + }, + "properties": { + "id": "meter-5527", + "maker": "Maker D", + "model": "Model 5527", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07299632648979, + 24.08961517364702 + ] + }, + "properties": { + "id": "meter-5528", + "maker": "Maker E", + "model": "Model 5528", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.75326467166625, + 21.456588499976284 + ] + }, + "properties": { + "id": "meter-5529", + "maker": "Maker G", + "model": "Model 5529", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06411970281279, + 24.368256887343218 + ] + }, + "properties": { + "id": "meter-5530", + "maker": "Maker A", + "model": "Model 5530", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.468690200030025, + 20.005646052392134 + ] + }, + "properties": { + "id": "meter-5531", + "maker": "Maker E", + "model": "Model 5531", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59758734779468, + 25.36254748735145 + ] + }, + "properties": { + "id": "meter-5532", + "maker": "Maker I", + "model": "Model 5532", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.70498734876931, + 28.337398084420165 + ] + }, + "properties": { + "id": "meter-5533", + "maker": "Maker E", + "model": "Model 5533", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06782804157171, + 24.081770593871838 + ] + }, + "properties": { + "id": "meter-5534", + "maker": "Maker I", + "model": "Model 5534", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.417413231904895, + 25.15976779543551 + ] + }, + "properties": { + "id": "meter-5535", + "maker": "Maker B", + "model": "Model 5535", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.977486447360185, + 26.474738869183167 + ] + }, + "properties": { + "id": "meter-5536", + "maker": "Maker J", + "model": "Model 5536", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.76572566192161, + 31.03393941673216 + ] + }, + "properties": { + "id": "meter-5537", + "maker": "Maker D", + "model": "Model 5537", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81360323572938, + 24.673811620398578 + ] + }, + "properties": { + "id": "meter-5538", + "maker": "Maker A", + "model": "Model 5538", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.691068109757964, + 18.073094127840754 + ] + }, + "properties": { + "id": "meter-5539", + "maker": "Maker D", + "model": "Model 5539", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.098101384815564, + 21.384539119814757 + ] + }, + "properties": { + "id": "meter-5540", + "maker": "Maker B", + "model": "Model 5540", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50558001239141, + 18.145659004623024 + ] + }, + "properties": { + "id": "meter-5541", + "maker": "Maker F", + "model": "Model 5541", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88021019673449, + 21.143680553302463 + ] + }, + "properties": { + "id": "meter-5542", + "maker": "Maker B", + "model": "Model 5542", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.05979809612395, + 30.891333193262586 + ] + }, + "properties": { + "id": "meter-5543", + "maker": "Maker G", + "model": "Model 5543", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.708582219614016, + 18.548553222824765 + ] + }, + "properties": { + "id": "meter-5544", + "maker": "Maker F", + "model": "Model 5544", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.11027905981572, + 31.155875180882788 + ] + }, + "properties": { + "id": "meter-5545", + "maker": "Maker J", + "model": "Model 5545", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.598822517066516, + 24.613076908704258 + ] + }, + "properties": { + "id": "meter-5546", + "maker": "Maker D", + "model": "Model 5546", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.22436066711213, + 26.176830982859816 + ] + }, + "properties": { + "id": "meter-5547", + "maker": "Maker I", + "model": "Model 5547", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.234159446944, + 26.467379740392534 + ] + }, + "properties": { + "id": "meter-5548", + "maker": "Maker F", + "model": "Model 5548", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.61596599888469, + 25.262911038094103 + ] + }, + "properties": { + "id": "meter-5549", + "maker": "Maker A", + "model": "Model 5549", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.62196027648828, + 28.420356770465222 + ] + }, + "properties": { + "id": "meter-5550", + "maker": "Maker E", + "model": "Model 5550", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94924929556967, + 17.494113639839103 + ] + }, + "properties": { + "id": "meter-5551", + "maker": "Maker C", + "model": "Model 5551", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.732042990702205, + 28.32054278373209 + ] + }, + "properties": { + "id": "meter-5552", + "maker": "Maker E", + "model": "Model 5552", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54402435025145, + 25.269504129854987 + ] + }, + "properties": { + "id": "meter-5553", + "maker": "Maker F", + "model": "Model 5553", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.597377339712345, + 19.965603073401645 + ] + }, + "properties": { + "id": "meter-5554", + "maker": "Maker A", + "model": "Model 5554", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.936926680933105, + 26.33244081374874 + ] + }, + "properties": { + "id": "meter-5555", + "maker": "Maker G", + "model": "Model 5555", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96297073460059, + 26.564854960351035 + ] + }, + "properties": { + "id": "meter-5556", + "maker": "Maker H", + "model": "Model 5556", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.63442997154177, + 28.394960657379823 + ] + }, + "properties": { + "id": "meter-5557", + "maker": "Maker I", + "model": "Model 5557", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.612759759104826, + 20.19680187922347 + ] + }, + "properties": { + "id": "meter-5558", + "maker": "Maker I", + "model": "Model 5558", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.2444271252805, + 24.20017657341023 + ] + }, + "properties": { + "id": "meter-5559", + "maker": "Maker C", + "model": "Model 5559", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.78528967222714, + 26.50006973938221 + ] + }, + "properties": { + "id": "meter-5560", + "maker": "Maker H", + "model": "Model 5560", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.5905666978567, + 25.340651657349518 + ] + }, + "properties": { + "id": "meter-5561", + "maker": "Maker E", + "model": "Model 5561", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.80831962262678, + 26.357942768591904 + ] + }, + "properties": { + "id": "meter-5562", + "maker": "Maker G", + "model": "Model 5562", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.79045358158809, + 18.266399924229393 + ] + }, + "properties": { + "id": "meter-5563", + "maker": "Maker I", + "model": "Model 5563", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.5109415883238, + 18.217686981458883 + ] + }, + "properties": { + "id": "meter-5564", + "maker": "Maker F", + "model": "Model 5564", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.95236184521656, + 26.513302202942093 + ] + }, + "properties": { + "id": "meter-5565", + "maker": "Maker D", + "model": "Model 5565", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.13534406516398, + 24.349653055889515 + ] + }, + "properties": { + "id": "meter-5566", + "maker": "Maker F", + "model": "Model 5566", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.43267262847049, + 25.242713983859222 + ] + }, + "properties": { + "id": "meter-5567", + "maker": "Maker I", + "model": "Model 5567", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.54069038716127, + 24.71490649382491 + ] + }, + "properties": { + "id": "meter-5568", + "maker": "Maker G", + "model": "Model 5568", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.78477735182151, + 25.339997057830498 + ] + }, + "properties": { + "id": "meter-5569", + "maker": "Maker B", + "model": "Model 5569", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.42508170930459, + 25.534770825659294 + ] + }, + "properties": { + "id": "meter-5570", + "maker": "Maker D", + "model": "Model 5570", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93486530980068, + 26.245176435322705 + ] + }, + "properties": { + "id": "meter-5571", + "maker": "Maker B", + "model": "Model 5571", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.03174236117024, + 21.435038827119676 + ] + }, + "properties": { + "id": "meter-5572", + "maker": "Maker J", + "model": "Model 5572", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99430215562018, + 26.462163372973333 + ] + }, + "properties": { + "id": "meter-5573", + "maker": "Maker G", + "model": "Model 5573", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50100807733618, + 18.44507879081182 + ] + }, + "properties": { + "id": "meter-5574", + "maker": "Maker F", + "model": "Model 5574", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.05101127279707, + 30.01463181322333 + ] + }, + "properties": { + "id": "meter-5575", + "maker": "Maker G", + "model": "Model 5575", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.68068827053111, + 28.555756487654428 + ] + }, + "properties": { + "id": "meter-5576", + "maker": "Maker J", + "model": "Model 5576", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.240118355962274, + 24.043331525533446 + ] + }, + "properties": { + "id": "meter-5577", + "maker": "Maker E", + "model": "Model 5577", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.41885685918147, + 18.3785418221758 + ] + }, + "properties": { + "id": "meter-5578", + "maker": "Maker D", + "model": "Model 5578", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.79967767621822, + 26.452732576001274 + ] + }, + "properties": { + "id": "meter-5579", + "maker": "Maker G", + "model": "Model 5579", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.78945377213012, + 28.25585366483285 + ] + }, + "properties": { + "id": "meter-5580", + "maker": "Maker D", + "model": "Model 5580", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.00546718065798, + 30.142354168081578 + ] + }, + "properties": { + "id": "meter-5581", + "maker": "Maker C", + "model": "Model 5581", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.52844743092193, + 27.583652661200066 + ] + }, + "properties": { + "id": "meter-5582", + "maker": "Maker E", + "model": "Model 5582", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.02395442040087, + 24.130504326438622 + ] + }, + "properties": { + "id": "meter-5583", + "maker": "Maker A", + "model": "Model 5583", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.898222595440885, + 21.428948515537826 + ] + }, + "properties": { + "id": "meter-5584", + "maker": "Maker A", + "model": "Model 5584", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.74161152717086, + 28.500513328846115 + ] + }, + "properties": { + "id": "meter-5585", + "maker": "Maker I", + "model": "Model 5585", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07146647937674, + 24.378583217840173 + ] + }, + "properties": { + "id": "meter-5586", + "maker": "Maker G", + "model": "Model 5586", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.27855310742384, + 17.673234071229523 + ] + }, + "properties": { + "id": "meter-5587", + "maker": "Maker D", + "model": "Model 5587", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00589109326294, + 17.570865668335667 + ] + }, + "properties": { + "id": "meter-5588", + "maker": "Maker F", + "model": "Model 5588", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08997344655445, + 26.235840186986433 + ] + }, + "properties": { + "id": "meter-5589", + "maker": "Maker C", + "model": "Model 5589", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.95691709095716, + 24.184773667798368 + ] + }, + "properties": { + "id": "meter-5590", + "maker": "Maker E", + "model": "Model 5590", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08239135854818, + 17.484457049836113 + ] + }, + "properties": { + "id": "meter-5591", + "maker": "Maker C", + "model": "Model 5591", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.27403276990918, + 21.440832496250486 + ] + }, + "properties": { + "id": "meter-5592", + "maker": "Maker B", + "model": "Model 5592", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67589455745185, + 20.222026037845975 + ] + }, + "properties": { + "id": "meter-5593", + "maker": "Maker H", + "model": "Model 5593", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01485929209487, + 26.505470567316628 + ] + }, + "properties": { + "id": "meter-5594", + "maker": "Maker B", + "model": "Model 5594", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.25601778589644, + 23.95818258028526 + ] + }, + "properties": { + "id": "meter-5595", + "maker": "Maker A", + "model": "Model 5595", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.201724281026834, + 24.08569445346935 + ] + }, + "properties": { + "id": "meter-5596", + "maker": "Maker F", + "model": "Model 5596", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.30245719783884, + 25.31819359369696 + ] + }, + "properties": { + "id": "meter-5597", + "maker": "Maker E", + "model": "Model 5597", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66697840666474, + 18.30923555775046 + ] + }, + "properties": { + "id": "meter-5598", + "maker": "Maker D", + "model": "Model 5598", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.841405392633625, + 26.454213302116315 + ] + }, + "properties": { + "id": "meter-5599", + "maker": "Maker B", + "model": "Model 5599", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.247563058464266, + 30.891797495040446 + ] + }, + "properties": { + "id": "meter-5600", + "maker": "Maker D", + "model": "Model 5600", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.688089478842656, + 24.663054497599653 + ] + }, + "properties": { + "id": "meter-5601", + "maker": "Maker B", + "model": "Model 5601", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.6645752329772, + 25.305307560363516 + ] + }, + "properties": { + "id": "meter-5602", + "maker": "Maker F", + "model": "Model 5602", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.96106389519047, + 24.157571192767016 + ] + }, + "properties": { + "id": "meter-5603", + "maker": "Maker F", + "model": "Model 5603", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.876793772206135, + 18.27279293319557 + ] + }, + "properties": { + "id": "meter-5604", + "maker": "Maker H", + "model": "Model 5604", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.063202845322614, + 24.120450190262908 + ] + }, + "properties": { + "id": "meter-5605", + "maker": "Maker G", + "model": "Model 5605", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.76149850143344, + 24.52315316379001 + ] + }, + "properties": { + "id": "meter-5606", + "maker": "Maker E", + "model": "Model 5606", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.33314981962961, + 21.603424655286343 + ] + }, + "properties": { + "id": "meter-5607", + "maker": "Maker A", + "model": "Model 5607", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.13141386141812, + 24.228182586184612 + ] + }, + "properties": { + "id": "meter-5608", + "maker": "Maker C", + "model": "Model 5608", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99306647714382, + 26.48193188918979 + ] + }, + "properties": { + "id": "meter-5609", + "maker": "Maker D", + "model": "Model 5609", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.28143512217085, + 30.085279257082586 + ] + }, + "properties": { + "id": "meter-5610", + "maker": "Maker E", + "model": "Model 5610", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.76357733507495, + 21.376646449859706 + ] + }, + "properties": { + "id": "meter-5611", + "maker": "Maker E", + "model": "Model 5611", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.15529311106249, + 31.08168439907935 + ] + }, + "properties": { + "id": "meter-5612", + "maker": "Maker H", + "model": "Model 5612", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.43078760355801, + 21.62100536746704 + ] + }, + "properties": { + "id": "meter-5613", + "maker": "Maker F", + "model": "Model 5613", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.14317438522613, + 29.837670480690115 + ] + }, + "properties": { + "id": "meter-5614", + "maker": "Maker J", + "model": "Model 5614", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.33301977013211, + 25.355086390175174 + ] + }, + "properties": { + "id": "meter-5615", + "maker": "Maker H", + "model": "Model 5615", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.198242605948465, + 24.29242540202167 + ] + }, + "properties": { + "id": "meter-5616", + "maker": "Maker J", + "model": "Model 5616", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.69659188510225, + 25.51919121944747 + ] + }, + "properties": { + "id": "meter-5617", + "maker": "Maker G", + "model": "Model 5617", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.85557693574885, + 28.2767506429251 + ] + }, + "properties": { + "id": "meter-5618", + "maker": "Maker H", + "model": "Model 5618", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.70472613523043, + 18.1665437074386 + ] + }, + "properties": { + "id": "meter-5619", + "maker": "Maker C", + "model": "Model 5619", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.09033996458155, + 30.013900274085017 + ] + }, + "properties": { + "id": "meter-5620", + "maker": "Maker F", + "model": "Model 5620", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.84652605831833, + 27.671711942935932 + ] + }, + "properties": { + "id": "meter-5621", + "maker": "Maker F", + "model": "Model 5621", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.53837407051838, + 24.50758257512341 + ] + }, + "properties": { + "id": "meter-5622", + "maker": "Maker A", + "model": "Model 5622", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.915961014531604, + 26.20215443850955 + ] + }, + "properties": { + "id": "meter-5623", + "maker": "Maker I", + "model": "Model 5623", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21430644794129, + 26.277357615376776 + ] + }, + "properties": { + "id": "meter-5624", + "maker": "Maker D", + "model": "Model 5624", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1846915892477, + 26.36074576651807 + ] + }, + "properties": { + "id": "meter-5625", + "maker": "Maker H", + "model": "Model 5625", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.40895915019292, + 19.84778287468628 + ] + }, + "properties": { + "id": "meter-5626", + "maker": "Maker E", + "model": "Model 5626", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.60971840735511, + 18.487489379065618 + ] + }, + "properties": { + "id": "meter-5627", + "maker": "Maker H", + "model": "Model 5627", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98115910967, + 26.566346859247172 + ] + }, + "properties": { + "id": "meter-5628", + "maker": "Maker A", + "model": "Model 5628", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11426426578708, + 17.447556640744963 + ] + }, + "properties": { + "id": "meter-5629", + "maker": "Maker G", + "model": "Model 5629", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.6346739419351, + 24.556669389569308 + ] + }, + "properties": { + "id": "meter-5630", + "maker": "Maker G", + "model": "Model 5630", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01475551308153, + 26.225233195640133 + ] + }, + "properties": { + "id": "meter-5631", + "maker": "Maker H", + "model": "Model 5631", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.789595858801945, + 26.51469537831327 + ] + }, + "properties": { + "id": "meter-5632", + "maker": "Maker A", + "model": "Model 5632", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.8546664571149, + 24.730221999970095 + ] + }, + "properties": { + "id": "meter-5633", + "maker": "Maker H", + "model": "Model 5633", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.92016214499669, + 27.641459431403327 + ] + }, + "properties": { + "id": "meter-5634", + "maker": "Maker D", + "model": "Model 5634", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06413943357382, + 24.108737248765618 + ] + }, + "properties": { + "id": "meter-5635", + "maker": "Maker A", + "model": "Model 5635", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.901711021472394, + 21.61798721203688 + ] + }, + "properties": { + "id": "meter-5636", + "maker": "Maker F", + "model": "Model 5636", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.018477910867986, + 26.33708192023763 + ] + }, + "properties": { + "id": "meter-5637", + "maker": "Maker G", + "model": "Model 5637", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.20975138959224, + 21.570800571921833 + ] + }, + "properties": { + "id": "meter-5638", + "maker": "Maker H", + "model": "Model 5638", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.96996251447785, + 21.381049460909626 + ] + }, + "properties": { + "id": "meter-5639", + "maker": "Maker A", + "model": "Model 5639", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96311746489903, + 26.370321359255705 + ] + }, + "properties": { + "id": "meter-5640", + "maker": "Maker C", + "model": "Model 5640", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.98237757442856, + 21.211812361741956 + ] + }, + "properties": { + "id": "meter-5641", + "maker": "Maker G", + "model": "Model 5641", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.547883899062796, + 25.210528408241952 + ] + }, + "properties": { + "id": "meter-5642", + "maker": "Maker I", + "model": "Model 5642", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.713058525627154, + 20.096232757115146 + ] + }, + "properties": { + "id": "meter-5643", + "maker": "Maker B", + "model": "Model 5643", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.84938472459044, + 24.559520050327638 + ] + }, + "properties": { + "id": "meter-5644", + "maker": "Maker I", + "model": "Model 5644", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.174319798022616, + 24.028227440975122 + ] + }, + "properties": { + "id": "meter-5645", + "maker": "Maker J", + "model": "Model 5645", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10984536067079, + 17.628570849592062 + ] + }, + "properties": { + "id": "meter-5646", + "maker": "Maker J", + "model": "Model 5646", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.19434762287968, + 26.164524002867562 + ] + }, + "properties": { + "id": "meter-5647", + "maker": "Maker F", + "model": "Model 5647", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.125147731464715, + 30.035369229131607 + ] + }, + "properties": { + "id": "meter-5648", + "maker": "Maker E", + "model": "Model 5648", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.140279623664284, + 24.296279158958825 + ] + }, + "properties": { + "id": "meter-5649", + "maker": "Maker I", + "model": "Model 5649", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.391720036635476, + 28.40581257446747 + ] + }, + "properties": { + "id": "meter-5650", + "maker": "Maker G", + "model": "Model 5650", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.08128817254897, + 31.165441927804828 + ] + }, + "properties": { + "id": "meter-5651", + "maker": "Maker D", + "model": "Model 5651", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.30808841207137, + 25.355231163726394 + ] + }, + "properties": { + "id": "meter-5652", + "maker": "Maker I", + "model": "Model 5652", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00888929848191, + 26.324145311467888 + ] + }, + "properties": { + "id": "meter-5653", + "maker": "Maker I", + "model": "Model 5653", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.78213038175741, + 26.417550112997887 + ] + }, + "properties": { + "id": "meter-5654", + "maker": "Maker E", + "model": "Model 5654", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.342149527661284, + 21.549871616949893 + ] + }, + "properties": { + "id": "meter-5655", + "maker": "Maker B", + "model": "Model 5655", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13106334821688, + 26.150720462798773 + ] + }, + "properties": { + "id": "meter-5656", + "maker": "Maker H", + "model": "Model 5656", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.536558123977734, + 21.48356773193651 + ] + }, + "properties": { + "id": "meter-5657", + "maker": "Maker F", + "model": "Model 5657", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.64179786729859, + 28.358729720678852 + ] + }, + "properties": { + "id": "meter-5658", + "maker": "Maker F", + "model": "Model 5658", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.060977987805536, + 24.087985463889382 + ] + }, + "properties": { + "id": "meter-5659", + "maker": "Maker A", + "model": "Model 5659", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05532242711793, + 24.089995321763332 + ] + }, + "properties": { + "id": "meter-5660", + "maker": "Maker D", + "model": "Model 5660", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.268972085092194, + 30.04980624452763 + ] + }, + "properties": { + "id": "meter-5661", + "maker": "Maker H", + "model": "Model 5661", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65749364113314, + 24.746133863866543 + ] + }, + "properties": { + "id": "meter-5662", + "maker": "Maker D", + "model": "Model 5662", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.357862950696266, + 28.285935649019454 + ] + }, + "properties": { + "id": "meter-5663", + "maker": "Maker A", + "model": "Model 5663", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.30205704502335, + 18.08623914292745 + ] + }, + "properties": { + "id": "meter-5664", + "maker": "Maker F", + "model": "Model 5664", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.032847412744324, + 24.091004352136043 + ] + }, + "properties": { + "id": "meter-5665", + "maker": "Maker F", + "model": "Model 5665", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.16333522798058, + 29.945049463521208 + ] + }, + "properties": { + "id": "meter-5666", + "maker": "Maker B", + "model": "Model 5666", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.12125245715794, + 21.61164946918526 + ] + }, + "properties": { + "id": "meter-5667", + "maker": "Maker D", + "model": "Model 5667", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57693236641501, + 25.23932536041554 + ] + }, + "properties": { + "id": "meter-5668", + "maker": "Maker G", + "model": "Model 5668", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21143081363302, + 26.27176709401283 + ] + }, + "properties": { + "id": "meter-5669", + "maker": "Maker F", + "model": "Model 5669", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.766834280477326, + 24.817446199378686 + ] + }, + "properties": { + "id": "meter-5670", + "maker": "Maker A", + "model": "Model 5670", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.9927891177302, + 17.54973428187157 + ] + }, + "properties": { + "id": "meter-5671", + "maker": "Maker H", + "model": "Model 5671", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12836693874046, + 17.46360990738321 + ] + }, + "properties": { + "id": "meter-5672", + "maker": "Maker I", + "model": "Model 5672", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.209041442056126, + 17.65776920541653 + ] + }, + "properties": { + "id": "meter-5673", + "maker": "Maker E", + "model": "Model 5673", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.75402139596553, + 27.448778382791676 + ] + }, + "properties": { + "id": "meter-5674", + "maker": "Maker A", + "model": "Model 5674", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.168506891472774, + 26.274644135166827 + ] + }, + "properties": { + "id": "meter-5675", + "maker": "Maker E", + "model": "Model 5675", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.1738458407037, + 30.01718365686749 + ] + }, + "properties": { + "id": "meter-5676", + "maker": "Maker I", + "model": "Model 5676", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.74935650365484, + 25.375402905943076 + ] + }, + "properties": { + "id": "meter-5677", + "maker": "Maker F", + "model": "Model 5677", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.62491271155681, + 18.26985813231409 + ] + }, + "properties": { + "id": "meter-5678", + "maker": "Maker E", + "model": "Model 5678", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.409081436121035, + 28.576579170117373 + ] + }, + "properties": { + "id": "meter-5679", + "maker": "Maker E", + "model": "Model 5679", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.91279861512102, + 27.67608450651272 + ] + }, + "properties": { + "id": "meter-5680", + "maker": "Maker J", + "model": "Model 5680", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.250776847713155, + 21.476385520301015 + ] + }, + "properties": { + "id": "meter-5681", + "maker": "Maker H", + "model": "Model 5681", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.21762826672801, + 24.259456280359895 + ] + }, + "properties": { + "id": "meter-5682", + "maker": "Maker B", + "model": "Model 5682", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.156234939572386, + 24.189621570248544 + ] + }, + "properties": { + "id": "meter-5683", + "maker": "Maker A", + "model": "Model 5683", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.48920109242507, + 18.204179728309406 + ] + }, + "properties": { + "id": "meter-5684", + "maker": "Maker C", + "model": "Model 5684", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.585463007582696, + 25.21015988290105 + ] + }, + "properties": { + "id": "meter-5685", + "maker": "Maker C", + "model": "Model 5685", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.63631516883551, + 18.39557111760782 + ] + }, + "properties": { + "id": "meter-5686", + "maker": "Maker B", + "model": "Model 5686", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14217274509459, + 17.71311917669281 + ] + }, + "properties": { + "id": "meter-5687", + "maker": "Maker D", + "model": "Model 5687", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.75008542081932, + 24.6411402665143 + ] + }, + "properties": { + "id": "meter-5688", + "maker": "Maker G", + "model": "Model 5688", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.623140997901054, + 18.100743981990966 + ] + }, + "properties": { + "id": "meter-5689", + "maker": "Maker A", + "model": "Model 5689", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.66837319497204, + 28.538023586962694 + ] + }, + "properties": { + "id": "meter-5690", + "maker": "Maker A", + "model": "Model 5690", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67579672356475, + 24.733985565409174 + ] + }, + "properties": { + "id": "meter-5691", + "maker": "Maker G", + "model": "Model 5691", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.66851787182549, + 28.625349444357305 + ] + }, + "properties": { + "id": "meter-5692", + "maker": "Maker J", + "model": "Model 5692", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.134578874867145, + 17.47941059889108 + ] + }, + "properties": { + "id": "meter-5693", + "maker": "Maker A", + "model": "Model 5693", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17170061678972, + 26.288107912419445 + ] + }, + "properties": { + "id": "meter-5694", + "maker": "Maker B", + "model": "Model 5694", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.63835862801702, + 28.58108923944278 + ] + }, + "properties": { + "id": "meter-5695", + "maker": "Maker H", + "model": "Model 5695", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.489978861847575, + 18.418904172487654 + ] + }, + "properties": { + "id": "meter-5696", + "maker": "Maker J", + "model": "Model 5696", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.43669328768465, + 20.182865498825254 + ] + }, + "properties": { + "id": "meter-5697", + "maker": "Maker E", + "model": "Model 5697", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.37667425038174, + 18.159141040538323 + ] + }, + "properties": { + "id": "meter-5698", + "maker": "Maker I", + "model": "Model 5698", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.6611373361333, + 21.28313490748019 + ] + }, + "properties": { + "id": "meter-5699", + "maker": "Maker A", + "model": "Model 5699", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.68767156178724, + 27.5228607490843 + ] + }, + "properties": { + "id": "meter-5700", + "maker": "Maker E", + "model": "Model 5700", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.848481825622265, + 21.490257372658203 + ] + }, + "properties": { + "id": "meter-5701", + "maker": "Maker I", + "model": "Model 5701", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02443091375268, + 26.26770796271555 + ] + }, + "properties": { + "id": "meter-5702", + "maker": "Maker F", + "model": "Model 5702", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97732577643846, + 26.326051544768976 + ] + }, + "properties": { + "id": "meter-5703", + "maker": "Maker D", + "model": "Model 5703", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.0602942130727, + 30.831194641035122 + ] + }, + "properties": { + "id": "meter-5704", + "maker": "Maker F", + "model": "Model 5704", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.59600513296756, + 24.596007994210737 + ] + }, + "properties": { + "id": "meter-5705", + "maker": "Maker J", + "model": "Model 5705", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.7711932463598, + 25.25475526088393 + ] + }, + "properties": { + "id": "meter-5706", + "maker": "Maker I", + "model": "Model 5706", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07540641046385, + 26.450869779175548 + ] + }, + "properties": { + "id": "meter-5707", + "maker": "Maker J", + "model": "Model 5707", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.13943849365166, + 30.247915192675183 + ] + }, + "properties": { + "id": "meter-5708", + "maker": "Maker G", + "model": "Model 5708", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.591502819969705, + 24.552628749301263 + ] + }, + "properties": { + "id": "meter-5709", + "maker": "Maker C", + "model": "Model 5709", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.61266340805106, + 20.243226635747195 + ] + }, + "properties": { + "id": "meter-5710", + "maker": "Maker H", + "model": "Model 5710", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.30210467896939, + 21.607163422331315 + ] + }, + "properties": { + "id": "meter-5711", + "maker": "Maker I", + "model": "Model 5711", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.86528179097862, + 26.42033963896075 + ] + }, + "properties": { + "id": "meter-5712", + "maker": "Maker B", + "model": "Model 5712", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.538419363506236, + 27.364125084337314 + ] + }, + "properties": { + "id": "meter-5713", + "maker": "Maker J", + "model": "Model 5713", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.16520938740507, + 21.535314530395397 + ] + }, + "properties": { + "id": "meter-5714", + "maker": "Maker A", + "model": "Model 5714", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.78083336161673, + 24.684598097525676 + ] + }, + "properties": { + "id": "meter-5715", + "maker": "Maker J", + "model": "Model 5715", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.26271901538407, + 29.989711772720504 + ] + }, + "properties": { + "id": "meter-5716", + "maker": "Maker A", + "model": "Model 5716", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.61263362933803, + 28.37916514351052 + ] + }, + "properties": { + "id": "meter-5717", + "maker": "Maker H", + "model": "Model 5717", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.821632668062286, + 27.248898657260085 + ] + }, + "properties": { + "id": "meter-5718", + "maker": "Maker G", + "model": "Model 5718", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.75346735263343, + 24.682005211492967 + ] + }, + "properties": { + "id": "meter-5719", + "maker": "Maker H", + "model": "Model 5719", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94791512599864, + 26.4282962817351 + ] + }, + "properties": { + "id": "meter-5720", + "maker": "Maker D", + "model": "Model 5720", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.46864100881286, + 18.208240903285805 + ] + }, + "properties": { + "id": "meter-5721", + "maker": "Maker I", + "model": "Model 5721", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99284159596942, + 26.482001668541674 + ] + }, + "properties": { + "id": "meter-5722", + "maker": "Maker I", + "model": "Model 5722", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.64870492509473, + 24.63973509739735 + ] + }, + "properties": { + "id": "meter-5723", + "maker": "Maker B", + "model": "Model 5723", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.86287919365077, + 26.498092073502857 + ] + }, + "properties": { + "id": "meter-5724", + "maker": "Maker E", + "model": "Model 5724", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.827354311292744, + 21.37529480142794 + ] + }, + "properties": { + "id": "meter-5725", + "maker": "Maker D", + "model": "Model 5725", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.36602809636949, + 24.68046049674141 + ] + }, + "properties": { + "id": "meter-5726", + "maker": "Maker D", + "model": "Model 5726", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.848112474796004, + 24.50556456116829 + ] + }, + "properties": { + "id": "meter-5727", + "maker": "Maker E", + "model": "Model 5727", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18747407039594, + 26.40075398687761 + ] + }, + "properties": { + "id": "meter-5728", + "maker": "Maker G", + "model": "Model 5728", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.06378559666035, + 29.7112022772515 + ] + }, + "properties": { + "id": "meter-5729", + "maker": "Maker F", + "model": "Model 5729", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.221740931076944, + 24.038809699876943 + ] + }, + "properties": { + "id": "meter-5730", + "maker": "Maker H", + "model": "Model 5730", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55189694497002, + 27.444384352073765 + ] + }, + "properties": { + "id": "meter-5731", + "maker": "Maker A", + "model": "Model 5731", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.79073878192865, + 21.45788115010403 + ] + }, + "properties": { + "id": "meter-5732", + "maker": "Maker F", + "model": "Model 5732", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.069385942408786, + 30.084719330514325 + ] + }, + "properties": { + "id": "meter-5733", + "maker": "Maker H", + "model": "Model 5733", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.267184034181426, + 24.185568374478276 + ] + }, + "properties": { + "id": "meter-5734", + "maker": "Maker C", + "model": "Model 5734", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.23340617226259, + 19.999205253517662 + ] + }, + "properties": { + "id": "meter-5735", + "maker": "Maker J", + "model": "Model 5735", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.226638146694526, + 17.542955097759556 + ] + }, + "properties": { + "id": "meter-5736", + "maker": "Maker F", + "model": "Model 5736", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.48148905542524, + 24.873051728627853 + ] + }, + "properties": { + "id": "meter-5737", + "maker": "Maker C", + "model": "Model 5737", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.533109702959074, + 24.268506554263258 + ] + }, + "properties": { + "id": "meter-5738", + "maker": "Maker I", + "model": "Model 5738", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.022894512187705, + 26.148891192406563 + ] + }, + "properties": { + "id": "meter-5739", + "maker": "Maker D", + "model": "Model 5739", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.241804795465136, + 17.493659043718846 + ] + }, + "properties": { + "id": "meter-5740", + "maker": "Maker C", + "model": "Model 5740", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.57827161128429, + 28.43728996309667 + ] + }, + "properties": { + "id": "meter-5741", + "maker": "Maker J", + "model": "Model 5741", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20763594262205, + 29.914268930427507 + ] + }, + "properties": { + "id": "meter-5742", + "maker": "Maker F", + "model": "Model 5742", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.49494421360649, + 24.368334750232705 + ] + }, + "properties": { + "id": "meter-5743", + "maker": "Maker G", + "model": "Model 5743", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.875779180649666, + 25.328875615590007 + ] + }, + "properties": { + "id": "meter-5744", + "maker": "Maker B", + "model": "Model 5744", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20653808735994, + 26.21292408250408 + ] + }, + "properties": { + "id": "meter-5745", + "maker": "Maker J", + "model": "Model 5745", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6430134456698, + 19.870765846107652 + ] + }, + "properties": { + "id": "meter-5746", + "maker": "Maker J", + "model": "Model 5746", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.27313811141789, + 19.803931038030118 + ] + }, + "properties": { + "id": "meter-5747", + "maker": "Maker B", + "model": "Model 5747", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65564249237875, + 24.791825442310273 + ] + }, + "properties": { + "id": "meter-5748", + "maker": "Maker J", + "model": "Model 5748", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23549001404032, + 21.53115282002963 + ] + }, + "properties": { + "id": "meter-5749", + "maker": "Maker G", + "model": "Model 5749", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.94199027216048, + 30.719410588702285 + ] + }, + "properties": { + "id": "meter-5750", + "maker": "Maker C", + "model": "Model 5750", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08894824641969, + 26.42356258685012 + ] + }, + "properties": { + "id": "meter-5751", + "maker": "Maker A", + "model": "Model 5751", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.56185273891874, + 24.823721771032385 + ] + }, + "properties": { + "id": "meter-5752", + "maker": "Maker D", + "model": "Model 5752", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07788136343807, + 26.44627619695206 + ] + }, + "properties": { + "id": "meter-5753", + "maker": "Maker D", + "model": "Model 5753", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.107759077821136, + 26.34077224704037 + ] + }, + "properties": { + "id": "meter-5754", + "maker": "Maker D", + "model": "Model 5754", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.678314198891165, + 24.718452345021788 + ] + }, + "properties": { + "id": "meter-5755", + "maker": "Maker A", + "model": "Model 5755", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.84890429283647, + 30.943019699259338 + ] + }, + "properties": { + "id": "meter-5756", + "maker": "Maker E", + "model": "Model 5756", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.09644649780165, + 30.96039440537659 + ] + }, + "properties": { + "id": "meter-5757", + "maker": "Maker G", + "model": "Model 5757", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.850134971245986, + 21.39254288530084 + ] + }, + "properties": { + "id": "meter-5758", + "maker": "Maker C", + "model": "Model 5758", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.657357813875585, + 28.27983031014998 + ] + }, + "properties": { + "id": "meter-5759", + "maker": "Maker J", + "model": "Model 5759", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94967635179, + 26.45846394817124 + ] + }, + "properties": { + "id": "meter-5760", + "maker": "Maker E", + "model": "Model 5760", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.64910386288598, + 25.305330342249185 + ] + }, + "properties": { + "id": "meter-5761", + "maker": "Maker D", + "model": "Model 5761", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05947035019893, + 26.401294875884695 + ] + }, + "properties": { + "id": "meter-5762", + "maker": "Maker G", + "model": "Model 5762", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.57104475923371, + 28.419911375171615 + ] + }, + "properties": { + "id": "meter-5763", + "maker": "Maker I", + "model": "Model 5763", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.698255393242675, + 27.512165002772925 + ] + }, + "properties": { + "id": "meter-5764", + "maker": "Maker F", + "model": "Model 5764", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.497006915857064, + 25.40379950303615 + ] + }, + "properties": { + "id": "meter-5765", + "maker": "Maker B", + "model": "Model 5765", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.11516603167826, + 30.72777610175597 + ] + }, + "properties": { + "id": "meter-5766", + "maker": "Maker J", + "model": "Model 5766", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.771809918096274, + 24.588029447616915 + ] + }, + "properties": { + "id": "meter-5767", + "maker": "Maker B", + "model": "Model 5767", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25353878188199, + 21.525327431937498 + ] + }, + "properties": { + "id": "meter-5768", + "maker": "Maker J", + "model": "Model 5768", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05117102638906, + 24.129742829178497 + ] + }, + "properties": { + "id": "meter-5769", + "maker": "Maker I", + "model": "Model 5769", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.61408630390553, + 25.326115248907428 + ] + }, + "properties": { + "id": "meter-5770", + "maker": "Maker D", + "model": "Model 5770", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.40732865333339, + 21.531094207061994 + ] + }, + "properties": { + "id": "meter-5771", + "maker": "Maker E", + "model": "Model 5771", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15670814696915, + 26.23246057077678 + ] + }, + "properties": { + "id": "meter-5772", + "maker": "Maker G", + "model": "Model 5772", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.451820175841426, + 24.82502132147986 + ] + }, + "properties": { + "id": "meter-5773", + "maker": "Maker E", + "model": "Model 5773", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.57678025066337, + 28.609215655368736 + ] + }, + "properties": { + "id": "meter-5774", + "maker": "Maker B", + "model": "Model 5774", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.113805050139234, + 21.6451874692148 + ] + }, + "properties": { + "id": "meter-5775", + "maker": "Maker H", + "model": "Model 5775", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.88075586054322, + 30.89040553625084 + ] + }, + "properties": { + "id": "meter-5776", + "maker": "Maker A", + "model": "Model 5776", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.47025725685179, + 24.565885360597733 + ] + }, + "properties": { + "id": "meter-5777", + "maker": "Maker I", + "model": "Model 5777", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.447315549214906, + 24.48403095268635 + ] + }, + "properties": { + "id": "meter-5778", + "maker": "Maker B", + "model": "Model 5778", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02291588828973, + 26.36445840958998 + ] + }, + "properties": { + "id": "meter-5779", + "maker": "Maker C", + "model": "Model 5779", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.14086703090166, + 24.064215904350643 + ] + }, + "properties": { + "id": "meter-5780", + "maker": "Maker F", + "model": "Model 5780", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58648488501014, + 25.34868818471703 + ] + }, + "properties": { + "id": "meter-5781", + "maker": "Maker A", + "model": "Model 5781", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.236360113122764, + 21.479736336013705 + ] + }, + "properties": { + "id": "meter-5782", + "maker": "Maker D", + "model": "Model 5782", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.8145573155673, + 21.370256101556944 + ] + }, + "properties": { + "id": "meter-5783", + "maker": "Maker J", + "model": "Model 5783", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57009578994706, + 25.348736451596007 + ] + }, + "properties": { + "id": "meter-5784", + "maker": "Maker D", + "model": "Model 5784", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19664810281008, + 26.273798109478452 + ] + }, + "properties": { + "id": "meter-5785", + "maker": "Maker A", + "model": "Model 5785", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.251196327926706, + 24.132744965067698 + ] + }, + "properties": { + "id": "meter-5786", + "maker": "Maker H", + "model": "Model 5786", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10121228328911, + 26.22427242558641 + ] + }, + "properties": { + "id": "meter-5787", + "maker": "Maker H", + "model": "Model 5787", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.28715107380882, + 30.05402417618856 + ] + }, + "properties": { + "id": "meter-5788", + "maker": "Maker E", + "model": "Model 5788", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.942187141030345, + 21.508678911893163 + ] + }, + "properties": { + "id": "meter-5789", + "maker": "Maker H", + "model": "Model 5789", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67809785888715, + 24.368275732767597 + ] + }, + "properties": { + "id": "meter-5790", + "maker": "Maker H", + "model": "Model 5790", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.22357936953472, + 21.47412435511374 + ] + }, + "properties": { + "id": "meter-5791", + "maker": "Maker C", + "model": "Model 5791", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13259972289174, + 26.401625806428218 + ] + }, + "properties": { + "id": "meter-5792", + "maker": "Maker D", + "model": "Model 5792", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.200429213708695, + 26.207210812015166 + ] + }, + "properties": { + "id": "meter-5793", + "maker": "Maker J", + "model": "Model 5793", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.62751728797124, + 24.67299557254326 + ] + }, + "properties": { + "id": "meter-5794", + "maker": "Maker F", + "model": "Model 5794", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.020053544185735, + 26.46611511049799 + ] + }, + "properties": { + "id": "meter-5795", + "maker": "Maker C", + "model": "Model 5795", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.66363127148387, + 24.509064387479793 + ] + }, + "properties": { + "id": "meter-5796", + "maker": "Maker G", + "model": "Model 5796", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.113092115119116, + 26.156450625170958 + ] + }, + "properties": { + "id": "meter-5797", + "maker": "Maker F", + "model": "Model 5797", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01979909798241, + 17.755765177986863 + ] + }, + "properties": { + "id": "meter-5798", + "maker": "Maker J", + "model": "Model 5798", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.9254843087984, + 30.0456683049816 + ] + }, + "properties": { + "id": "meter-5799", + "maker": "Maker J", + "model": "Model 5799", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.813144112696484, + 21.401547445157405 + ] + }, + "properties": { + "id": "meter-5800", + "maker": "Maker D", + "model": "Model 5800", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.00801532662716, + 30.827180367199656 + ] + }, + "properties": { + "id": "meter-5801", + "maker": "Maker F", + "model": "Model 5801", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.701859487067914, + 24.620453385146373 + ] + }, + "properties": { + "id": "meter-5802", + "maker": "Maker J", + "model": "Model 5802", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.56659808149536, + 28.313662527589145 + ] + }, + "properties": { + "id": "meter-5803", + "maker": "Maker C", + "model": "Model 5803", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.07488350724922, + 26.074378217657546 + ] + }, + "properties": { + "id": "meter-5804", + "maker": "Maker H", + "model": "Model 5804", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.37529007288884, + 25.409931712143532 + ] + }, + "properties": { + "id": "meter-5805", + "maker": "Maker B", + "model": "Model 5805", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86904938981753, + 21.39055366295868 + ] + }, + "properties": { + "id": "meter-5806", + "maker": "Maker E", + "model": "Model 5806", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.851166510008404, + 18.140774438705588 + ] + }, + "properties": { + "id": "meter-5807", + "maker": "Maker G", + "model": "Model 5807", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.837447486509, + 21.383181334465633 + ] + }, + "properties": { + "id": "meter-5808", + "maker": "Maker A", + "model": "Model 5808", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.23299939741318, + 17.569488617185765 + ] + }, + "properties": { + "id": "meter-5809", + "maker": "Maker J", + "model": "Model 5809", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.87046331426483, + 24.706517260935556 + ] + }, + "properties": { + "id": "meter-5810", + "maker": "Maker F", + "model": "Model 5810", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.194288746605025, + 20.130579431174432 + ] + }, + "properties": { + "id": "meter-5811", + "maker": "Maker D", + "model": "Model 5811", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.046044827192, + 26.270723631935766 + ] + }, + "properties": { + "id": "meter-5812", + "maker": "Maker E", + "model": "Model 5812", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.46825302559339, + 18.017871249971513 + ] + }, + "properties": { + "id": "meter-5813", + "maker": "Maker F", + "model": "Model 5813", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.59653641474705, + 20.199909218758833 + ] + }, + "properties": { + "id": "meter-5814", + "maker": "Maker B", + "model": "Model 5814", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.1217233877047, + 21.3833623099495 + ] + }, + "properties": { + "id": "meter-5815", + "maker": "Maker F", + "model": "Model 5815", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.887640713295866, + 21.37174534926791 + ] + }, + "properties": { + "id": "meter-5816", + "maker": "Maker E", + "model": "Model 5816", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.26348987349002, + 29.87381010168365 + ] + }, + "properties": { + "id": "meter-5817", + "maker": "Maker C", + "model": "Model 5817", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.685747402343615, + 26.26115611003507 + ] + }, + "properties": { + "id": "meter-5818", + "maker": "Maker D", + "model": "Model 5818", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.19597658652684, + 21.52010285353314 + ] + }, + "properties": { + "id": "meter-5819", + "maker": "Maker H", + "model": "Model 5819", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01600120507106, + 26.377354126075414 + ] + }, + "properties": { + "id": "meter-5820", + "maker": "Maker I", + "model": "Model 5820", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.639729358703235, + 25.230420802803064 + ] + }, + "properties": { + "id": "meter-5821", + "maker": "Maker H", + "model": "Model 5821", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.16471672337048, + 29.889860977452248 + ] + }, + "properties": { + "id": "meter-5822", + "maker": "Maker H", + "model": "Model 5822", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.18999218416718, + 29.94811679117252 + ] + }, + "properties": { + "id": "meter-5823", + "maker": "Maker E", + "model": "Model 5823", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.42118267161794, + 18.244642820880905 + ] + }, + "properties": { + "id": "meter-5824", + "maker": "Maker C", + "model": "Model 5824", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.41159474452133, + 19.97771819229389 + ] + }, + "properties": { + "id": "meter-5825", + "maker": "Maker G", + "model": "Model 5825", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.078873630343345, + 26.409703774396498 + ] + }, + "properties": { + "id": "meter-5826", + "maker": "Maker C", + "model": "Model 5826", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98313142465497, + 26.533081933415094 + ] + }, + "properties": { + "id": "meter-5827", + "maker": "Maker D", + "model": "Model 5827", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13751758051135, + 17.56408923769226 + ] + }, + "properties": { + "id": "meter-5828", + "maker": "Maker H", + "model": "Model 5828", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.70542239397742, + 24.722215944509216 + ] + }, + "properties": { + "id": "meter-5829", + "maker": "Maker C", + "model": "Model 5829", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.75080207469159, + 21.277309238226476 + ] + }, + "properties": { + "id": "meter-5830", + "maker": "Maker C", + "model": "Model 5830", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.29873777675533, + 24.17255511783635 + ] + }, + "properties": { + "id": "meter-5831", + "maker": "Maker C", + "model": "Model 5831", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.17036761794121, + 21.538642864941338 + ] + }, + "properties": { + "id": "meter-5832", + "maker": "Maker J", + "model": "Model 5832", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.892750560755154, + 24.77163543301098 + ] + }, + "properties": { + "id": "meter-5833", + "maker": "Maker E", + "model": "Model 5833", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55695581748592, + 19.938143301210534 + ] + }, + "properties": { + "id": "meter-5834", + "maker": "Maker J", + "model": "Model 5834", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.751747322419845, + 18.218606331867903 + ] + }, + "properties": { + "id": "meter-5835", + "maker": "Maker E", + "model": "Model 5835", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.55601803230024, + 28.573961101276694 + ] + }, + "properties": { + "id": "meter-5836", + "maker": "Maker G", + "model": "Model 5836", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.70097416497519, + 24.6253086746693 + ] + }, + "properties": { + "id": "meter-5837", + "maker": "Maker I", + "model": "Model 5837", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.700558378869154, + 25.235254103655798 + ] + }, + "properties": { + "id": "meter-5838", + "maker": "Maker A", + "model": "Model 5838", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.63048641215802, + 18.295767955741773 + ] + }, + "properties": { + "id": "meter-5839", + "maker": "Maker A", + "model": "Model 5839", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05445057518343, + 26.275574673592104 + ] + }, + "properties": { + "id": "meter-5840", + "maker": "Maker B", + "model": "Model 5840", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.676251988144905, + 24.68972049205432 + ] + }, + "properties": { + "id": "meter-5841", + "maker": "Maker B", + "model": "Model 5841", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.562356149943334, + 24.814172906243748 + ] + }, + "properties": { + "id": "meter-5842", + "maker": "Maker E", + "model": "Model 5842", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.61720741658155, + 18.13885260495709 + ] + }, + "properties": { + "id": "meter-5843", + "maker": "Maker A", + "model": "Model 5843", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.429201125166685, + 19.986189262237023 + ] + }, + "properties": { + "id": "meter-5844", + "maker": "Maker J", + "model": "Model 5844", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.869605470084885, + 27.34453565617124 + ] + }, + "properties": { + "id": "meter-5845", + "maker": "Maker E", + "model": "Model 5845", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.320020532710416, + 21.69559022088307 + ] + }, + "properties": { + "id": "meter-5846", + "maker": "Maker A", + "model": "Model 5846", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.93762848439872, + 26.314525873740898 + ] + }, + "properties": { + "id": "meter-5847", + "maker": "Maker G", + "model": "Model 5847", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.567357178884826, + 25.358980246616795 + ] + }, + "properties": { + "id": "meter-5848", + "maker": "Maker C", + "model": "Model 5848", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.61368429443554, + 28.38263891461027 + ] + }, + "properties": { + "id": "meter-5849", + "maker": "Maker D", + "model": "Model 5849", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.19492249256411, + 24.303963085937976 + ] + }, + "properties": { + "id": "meter-5850", + "maker": "Maker C", + "model": "Model 5850", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.182430825168126, + 30.043939187897973 + ] + }, + "properties": { + "id": "meter-5851", + "maker": "Maker J", + "model": "Model 5851", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.32587992904591, + 29.93706155291981 + ] + }, + "properties": { + "id": "meter-5852", + "maker": "Maker C", + "model": "Model 5852", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.755817929481985, + 21.27860579583819 + ] + }, + "properties": { + "id": "meter-5853", + "maker": "Maker A", + "model": "Model 5853", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.135001890740384, + 26.374220483010816 + ] + }, + "properties": { + "id": "meter-5854", + "maker": "Maker F", + "model": "Model 5854", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01515149207578, + 26.34131355974752 + ] + }, + "properties": { + "id": "meter-5855", + "maker": "Maker D", + "model": "Model 5855", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.42563880815434, + 28.217906312409482 + ] + }, + "properties": { + "id": "meter-5856", + "maker": "Maker I", + "model": "Model 5856", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98302023587834, + 26.287017237880224 + ] + }, + "properties": { + "id": "meter-5857", + "maker": "Maker E", + "model": "Model 5857", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.37475036526419, + 24.462215997345876 + ] + }, + "properties": { + "id": "meter-5858", + "maker": "Maker E", + "model": "Model 5858", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.171546015693174, + 21.604541577452668 + ] + }, + "properties": { + "id": "meter-5859", + "maker": "Maker E", + "model": "Model 5859", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.504434744518285, + 20.050305631510017 + ] + }, + "properties": { + "id": "meter-5860", + "maker": "Maker J", + "model": "Model 5860", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1178243547993, + 26.303233451734133 + ] + }, + "properties": { + "id": "meter-5861", + "maker": "Maker E", + "model": "Model 5861", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54439500460877, + 25.3369598596361 + ] + }, + "properties": { + "id": "meter-5862", + "maker": "Maker D", + "model": "Model 5862", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.479348512037554, + 24.52578194808931 + ] + }, + "properties": { + "id": "meter-5863", + "maker": "Maker H", + "model": "Model 5863", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.78569420412285, + 28.506292838443958 + ] + }, + "properties": { + "id": "meter-5864", + "maker": "Maker B", + "model": "Model 5864", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00905442754535, + 26.229763535787534 + ] + }, + "properties": { + "id": "meter-5865", + "maker": "Maker J", + "model": "Model 5865", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03828697596215, + 26.37920266309607 + ] + }, + "properties": { + "id": "meter-5866", + "maker": "Maker A", + "model": "Model 5866", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50356102157827, + 28.395638058530498 + ] + }, + "properties": { + "id": "meter-5867", + "maker": "Maker C", + "model": "Model 5867", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.980679035220746, + 24.197684113074274 + ] + }, + "properties": { + "id": "meter-5868", + "maker": "Maker E", + "model": "Model 5868", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.511454990519475, + 24.492148070666374 + ] + }, + "properties": { + "id": "meter-5869", + "maker": "Maker J", + "model": "Model 5869", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17964237830665, + 26.313808748499625 + ] + }, + "properties": { + "id": "meter-5870", + "maker": "Maker F", + "model": "Model 5870", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.613829138057916, + 24.6715846882621 + ] + }, + "properties": { + "id": "meter-5871", + "maker": "Maker G", + "model": "Model 5871", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00613152691045, + 26.40122519352625 + ] + }, + "properties": { + "id": "meter-5872", + "maker": "Maker D", + "model": "Model 5872", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98865503683515, + 26.501609345820743 + ] + }, + "properties": { + "id": "meter-5873", + "maker": "Maker D", + "model": "Model 5873", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.103240207875245, + 26.167206149905997 + ] + }, + "properties": { + "id": "meter-5874", + "maker": "Maker G", + "model": "Model 5874", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.84829760129832, + 26.4398536109947 + ] + }, + "properties": { + "id": "meter-5875", + "maker": "Maker G", + "model": "Model 5875", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.3276250842275, + 17.473259096151697 + ] + }, + "properties": { + "id": "meter-5876", + "maker": "Maker C", + "model": "Model 5876", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.34376782076095, + 29.72588739951926 + ] + }, + "properties": { + "id": "meter-5877", + "maker": "Maker G", + "model": "Model 5877", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.157269523523404, + 30.015341240693953 + ] + }, + "properties": { + "id": "meter-5878", + "maker": "Maker J", + "model": "Model 5878", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.62562647344431, + 25.327419719066327 + ] + }, + "properties": { + "id": "meter-5879", + "maker": "Maker I", + "model": "Model 5879", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.212977133921704, + 26.324092448657982 + ] + }, + "properties": { + "id": "meter-5880", + "maker": "Maker E", + "model": "Model 5880", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.64349982463527, + 25.471922784570463 + ] + }, + "properties": { + "id": "meter-5881", + "maker": "Maker G", + "model": "Model 5881", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.80139107567643, + 21.435745407163303 + ] + }, + "properties": { + "id": "meter-5882", + "maker": "Maker E", + "model": "Model 5882", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.952048108211905, + 26.482230173148356 + ] + }, + "properties": { + "id": "meter-5883", + "maker": "Maker D", + "model": "Model 5883", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.84248146021933, + 26.725789332470846 + ] + }, + "properties": { + "id": "meter-5884", + "maker": "Maker J", + "model": "Model 5884", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20201095323007, + 26.274855027512203 + ] + }, + "properties": { + "id": "meter-5885", + "maker": "Maker B", + "model": "Model 5885", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.754680469186304, + 27.5329500973736 + ] + }, + "properties": { + "id": "meter-5886", + "maker": "Maker J", + "model": "Model 5886", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13288647058774, + 26.41913648688943 + ] + }, + "properties": { + "id": "meter-5887", + "maker": "Maker H", + "model": "Model 5887", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.9626877588665, + 31.175660885923524 + ] + }, + "properties": { + "id": "meter-5888", + "maker": "Maker B", + "model": "Model 5888", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.858010907760445, + 21.394467889994637 + ] + }, + "properties": { + "id": "meter-5889", + "maker": "Maker B", + "model": "Model 5889", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71999051272332, + 18.249127880720394 + ] + }, + "properties": { + "id": "meter-5890", + "maker": "Maker D", + "model": "Model 5890", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.191210336395145, + 21.47576481038427 + ] + }, + "properties": { + "id": "meter-5891", + "maker": "Maker A", + "model": "Model 5891", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10980746472974, + 17.430364331447677 + ] + }, + "properties": { + "id": "meter-5892", + "maker": "Maker D", + "model": "Model 5892", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09902017620705, + 24.210083190585156 + ] + }, + "properties": { + "id": "meter-5893", + "maker": "Maker B", + "model": "Model 5893", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.99466126142117, + 24.268541222431832 + ] + }, + "properties": { + "id": "meter-5894", + "maker": "Maker B", + "model": "Model 5894", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.960151873113865, + 26.507559663220558 + ] + }, + "properties": { + "id": "meter-5895", + "maker": "Maker B", + "model": "Model 5895", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96116176241825, + 26.74847487058032 + ] + }, + "properties": { + "id": "meter-5896", + "maker": "Maker J", + "model": "Model 5896", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.76707990566834, + 18.3508742214854 + ] + }, + "properties": { + "id": "meter-5897", + "maker": "Maker D", + "model": "Model 5897", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67839422775374, + 24.667661600722248 + ] + }, + "properties": { + "id": "meter-5898", + "maker": "Maker G", + "model": "Model 5898", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06777567208187, + 24.13428004571027 + ] + }, + "properties": { + "id": "meter-5899", + "maker": "Maker A", + "model": "Model 5899", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.518476979217354, + 28.407303763924602 + ] + }, + "properties": { + "id": "meter-5900", + "maker": "Maker E", + "model": "Model 5900", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.82648225090411, + 24.817524709148245 + ] + }, + "properties": { + "id": "meter-5901", + "maker": "Maker C", + "model": "Model 5901", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.573761206132616, + 24.52646289116385 + ] + }, + "properties": { + "id": "meter-5902", + "maker": "Maker J", + "model": "Model 5902", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.31342476316525, + 17.449309407824288 + ] + }, + "properties": { + "id": "meter-5903", + "maker": "Maker I", + "model": "Model 5903", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.085526149420666, + 31.008370498415644 + ] + }, + "properties": { + "id": "meter-5904", + "maker": "Maker F", + "model": "Model 5904", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.83237482111615, + 21.535454165943758 + ] + }, + "properties": { + "id": "meter-5905", + "maker": "Maker I", + "model": "Model 5905", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.69702796398669, + 28.529716571823467 + ] + }, + "properties": { + "id": "meter-5906", + "maker": "Maker E", + "model": "Model 5906", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.63075205713452, + 25.371094338909597 + ] + }, + "properties": { + "id": "meter-5907", + "maker": "Maker D", + "model": "Model 5907", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.770391785464376, + 26.458089129989062 + ] + }, + "properties": { + "id": "meter-5908", + "maker": "Maker H", + "model": "Model 5908", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.018158544584196, + 17.681256597360417 + ] + }, + "properties": { + "id": "meter-5909", + "maker": "Maker G", + "model": "Model 5909", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18817870590261, + 26.28100788565943 + ] + }, + "properties": { + "id": "meter-5910", + "maker": "Maker A", + "model": "Model 5910", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.54429192917066, + 28.29935357572903 + ] + }, + "properties": { + "id": "meter-5911", + "maker": "Maker B", + "model": "Model 5911", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54840551018158, + 25.55887545416776 + ] + }, + "properties": { + "id": "meter-5912", + "maker": "Maker I", + "model": "Model 5912", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.0313348699326, + 30.96242720569225 + ] + }, + "properties": { + "id": "meter-5913", + "maker": "Maker E", + "model": "Model 5913", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.56311410770587, + 20.031744741943143 + ] + }, + "properties": { + "id": "meter-5914", + "maker": "Maker G", + "model": "Model 5914", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01046257102846, + 26.49879245680057 + ] + }, + "properties": { + "id": "meter-5915", + "maker": "Maker I", + "model": "Model 5915", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.26993481223169, + 24.180394791367572 + ] + }, + "properties": { + "id": "meter-5916", + "maker": "Maker F", + "model": "Model 5916", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.63298459819598, + 28.36799623471839 + ] + }, + "properties": { + "id": "meter-5917", + "maker": "Maker E", + "model": "Model 5917", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.15822904763661, + 31.14686127517699 + ] + }, + "properties": { + "id": "meter-5918", + "maker": "Maker I", + "model": "Model 5918", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9687403231574, + 26.373136521390805 + ] + }, + "properties": { + "id": "meter-5919", + "maker": "Maker A", + "model": "Model 5919", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.426389419452704, + 24.73729218075427 + ] + }, + "properties": { + "id": "meter-5920", + "maker": "Maker A", + "model": "Model 5920", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99720776029674, + 26.227454012089158 + ] + }, + "properties": { + "id": "meter-5921", + "maker": "Maker D", + "model": "Model 5921", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.50054202514722, + 27.478697746152044 + ] + }, + "properties": { + "id": "meter-5922", + "maker": "Maker F", + "model": "Model 5922", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.81485374721431, + 27.70189966404107 + ] + }, + "properties": { + "id": "meter-5923", + "maker": "Maker C", + "model": "Model 5923", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.017969061666555, + 26.289771370296172 + ] + }, + "properties": { + "id": "meter-5924", + "maker": "Maker H", + "model": "Model 5924", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.53793821312, + 28.282975951319386 + ] + }, + "properties": { + "id": "meter-5925", + "maker": "Maker F", + "model": "Model 5925", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.05533170374786, + 30.9295479137419 + ] + }, + "properties": { + "id": "meter-5926", + "maker": "Maker I", + "model": "Model 5926", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93089436038139, + 26.62388478483316 + ] + }, + "properties": { + "id": "meter-5927", + "maker": "Maker J", + "model": "Model 5927", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.167868109196824, + 26.280431159570398 + ] + }, + "properties": { + "id": "meter-5928", + "maker": "Maker J", + "model": "Model 5928", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97296909375788, + 26.266998137280634 + ] + }, + "properties": { + "id": "meter-5929", + "maker": "Maker F", + "model": "Model 5929", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12267584069044, + 26.43546489355101 + ] + }, + "properties": { + "id": "meter-5930", + "maker": "Maker I", + "model": "Model 5930", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.83745656413913, + 26.25616223246928 + ] + }, + "properties": { + "id": "meter-5931", + "maker": "Maker F", + "model": "Model 5931", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.90417697619754, + 26.532786595572382 + ] + }, + "properties": { + "id": "meter-5932", + "maker": "Maker I", + "model": "Model 5932", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.64901623507244, + 24.67720087807038 + ] + }, + "properties": { + "id": "meter-5933", + "maker": "Maker E", + "model": "Model 5933", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.111576198663464, + 26.40174220519024 + ] + }, + "properties": { + "id": "meter-5934", + "maker": "Maker E", + "model": "Model 5934", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.879739212679105, + 26.466381339845725 + ] + }, + "properties": { + "id": "meter-5935", + "maker": "Maker D", + "model": "Model 5935", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.74976870425867, + 21.42193965709874 + ] + }, + "properties": { + "id": "meter-5936", + "maker": "Maker D", + "model": "Model 5936", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.2624198012176, + 18.07607446700042 + ] + }, + "properties": { + "id": "meter-5937", + "maker": "Maker B", + "model": "Model 5937", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.03637258451795, + 21.305918053753608 + ] + }, + "properties": { + "id": "meter-5938", + "maker": "Maker G", + "model": "Model 5938", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97249247625095, + 26.342848727313303 + ] + }, + "properties": { + "id": "meter-5939", + "maker": "Maker C", + "model": "Model 5939", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.140726980316124, + 26.361609029160505 + ] + }, + "properties": { + "id": "meter-5940", + "maker": "Maker B", + "model": "Model 5940", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.75941820184914, + 27.51419889130927 + ] + }, + "properties": { + "id": "meter-5941", + "maker": "Maker E", + "model": "Model 5941", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.3851926336605, + 18.411032706301445 + ] + }, + "properties": { + "id": "meter-5942", + "maker": "Maker I", + "model": "Model 5942", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.87026562667939, + 21.27260973074742 + ] + }, + "properties": { + "id": "meter-5943", + "maker": "Maker I", + "model": "Model 5943", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.79518833539116, + 24.93615407715511 + ] + }, + "properties": { + "id": "meter-5944", + "maker": "Maker E", + "model": "Model 5944", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20099177922191, + 26.286077717683018 + ] + }, + "properties": { + "id": "meter-5945", + "maker": "Maker I", + "model": "Model 5945", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07786739874423, + 24.20079517206636 + ] + }, + "properties": { + "id": "meter-5946", + "maker": "Maker B", + "model": "Model 5946", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.58991356939042, + 27.547655072940486 + ] + }, + "properties": { + "id": "meter-5947", + "maker": "Maker I", + "model": "Model 5947", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.21183684828806, + 17.513131328257415 + ] + }, + "properties": { + "id": "meter-5948", + "maker": "Maker B", + "model": "Model 5948", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02684435021933, + 26.540679604733768 + ] + }, + "properties": { + "id": "meter-5949", + "maker": "Maker F", + "model": "Model 5949", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.87758645751903, + 17.50540088013242 + ] + }, + "properties": { + "id": "meter-5950", + "maker": "Maker C", + "model": "Model 5950", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.254920753173536, + 20.024618563512284 + ] + }, + "properties": { + "id": "meter-5951", + "maker": "Maker D", + "model": "Model 5951", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.098859529824736, + 30.171842328557343 + ] + }, + "properties": { + "id": "meter-5952", + "maker": "Maker E", + "model": "Model 5952", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.33595959400005, + 28.260933071064837 + ] + }, + "properties": { + "id": "meter-5953", + "maker": "Maker C", + "model": "Model 5953", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.757627755435145, + 27.55870755910828 + ] + }, + "properties": { + "id": "meter-5954", + "maker": "Maker C", + "model": "Model 5954", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.59410700692569, + 24.7927696176279 + ] + }, + "properties": { + "id": "meter-5955", + "maker": "Maker F", + "model": "Model 5955", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.8251665198662, + 21.4187583493519 + ] + }, + "properties": { + "id": "meter-5956", + "maker": "Maker B", + "model": "Model 5956", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.973409931132174, + 26.699582087613614 + ] + }, + "properties": { + "id": "meter-5957", + "maker": "Maker D", + "model": "Model 5957", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.27270151201466, + 29.68902491860023 + ] + }, + "properties": { + "id": "meter-5958", + "maker": "Maker C", + "model": "Model 5958", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.320945349986786, + 17.68493422806814 + ] + }, + "properties": { + "id": "meter-5959", + "maker": "Maker B", + "model": "Model 5959", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.61792532242361, + 18.39726345155516 + ] + }, + "properties": { + "id": "meter-5960", + "maker": "Maker H", + "model": "Model 5960", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.46888450345396, + 28.601801600268235 + ] + }, + "properties": { + "id": "meter-5961", + "maker": "Maker J", + "model": "Model 5961", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69218662114462, + 27.56478622223821 + ] + }, + "properties": { + "id": "meter-5962", + "maker": "Maker C", + "model": "Model 5962", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.70550804058, + 28.27234913584286 + ] + }, + "properties": { + "id": "meter-5963", + "maker": "Maker B", + "model": "Model 5963", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.39029928326904, + 21.477954468750514 + ] + }, + "properties": { + "id": "meter-5964", + "maker": "Maker E", + "model": "Model 5964", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.71158438550847, + 24.70470034639528 + ] + }, + "properties": { + "id": "meter-5965", + "maker": "Maker F", + "model": "Model 5965", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.982986878359576, + 24.156988772492976 + ] + }, + "properties": { + "id": "meter-5966", + "maker": "Maker I", + "model": "Model 5966", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.62010380884449, + 25.34709853008996 + ] + }, + "properties": { + "id": "meter-5967", + "maker": "Maker D", + "model": "Model 5967", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20328116228372, + 26.342615832239925 + ] + }, + "properties": { + "id": "meter-5968", + "maker": "Maker C", + "model": "Model 5968", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.80966723207856, + 26.524123375234172 + ] + }, + "properties": { + "id": "meter-5969", + "maker": "Maker F", + "model": "Model 5969", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.38334844645953, + 20.00764117124353 + ] + }, + "properties": { + "id": "meter-5970", + "maker": "Maker G", + "model": "Model 5970", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.993529303801736, + 26.234564781168892 + ] + }, + "properties": { + "id": "meter-5971", + "maker": "Maker D", + "model": "Model 5971", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.05377556933192, + 26.531085451403623 + ] + }, + "properties": { + "id": "meter-5972", + "maker": "Maker E", + "model": "Model 5972", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.5921431995567, + 25.321696065056734 + ] + }, + "properties": { + "id": "meter-5973", + "maker": "Maker I", + "model": "Model 5973", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.76022630248049, + 18.235945110458427 + ] + }, + "properties": { + "id": "meter-5974", + "maker": "Maker D", + "model": "Model 5974", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.44101739215593, + 20.01143066732604 + ] + }, + "properties": { + "id": "meter-5975", + "maker": "Maker I", + "model": "Model 5975", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13181660228344, + 17.48733132591586 + ] + }, + "properties": { + "id": "meter-5976", + "maker": "Maker D", + "model": "Model 5976", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.97256512106755, + 21.352215201858016 + ] + }, + "properties": { + "id": "meter-5977", + "maker": "Maker G", + "model": "Model 5977", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.4706326172298, + 28.381987419996648 + ] + }, + "properties": { + "id": "meter-5978", + "maker": "Maker H", + "model": "Model 5978", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00059134383054, + 26.320402430928596 + ] + }, + "properties": { + "id": "meter-5979", + "maker": "Maker J", + "model": "Model 5979", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00016908171026, + 26.373874193275043 + ] + }, + "properties": { + "id": "meter-5980", + "maker": "Maker I", + "model": "Model 5980", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.77333023618882, + 24.711308774644532 + ] + }, + "properties": { + "id": "meter-5981", + "maker": "Maker A", + "model": "Model 5981", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.108857462126664, + 29.707266479688954 + ] + }, + "properties": { + "id": "meter-5982", + "maker": "Maker F", + "model": "Model 5982", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.20656597213757, + 21.463896007819937 + ] + }, + "properties": { + "id": "meter-5983", + "maker": "Maker G", + "model": "Model 5983", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.586206642689504, + 25.324990926897172 + ] + }, + "properties": { + "id": "meter-5984", + "maker": "Maker D", + "model": "Model 5984", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.866502887113214, + 24.38453133126733 + ] + }, + "properties": { + "id": "meter-5985", + "maker": "Maker I", + "model": "Model 5985", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.682652413151565, + 28.33996371813723 + ] + }, + "properties": { + "id": "meter-5986", + "maker": "Maker E", + "model": "Model 5986", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.39516830351552, + 25.22699511826372 + ] + }, + "properties": { + "id": "meter-5987", + "maker": "Maker D", + "model": "Model 5987", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.653254519802374, + 25.331699193877846 + ] + }, + "properties": { + "id": "meter-5988", + "maker": "Maker F", + "model": "Model 5988", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.327369649074136, + 21.62311992032664 + ] + }, + "properties": { + "id": "meter-5989", + "maker": "Maker I", + "model": "Model 5989", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21376610236432, + 29.97623344846603 + ] + }, + "properties": { + "id": "meter-5990", + "maker": "Maker G", + "model": "Model 5990", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.48612376418801, + 24.62987423925719 + ] + }, + "properties": { + "id": "meter-5991", + "maker": "Maker G", + "model": "Model 5991", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.51777982167666, + 20.223381939395555 + ] + }, + "properties": { + "id": "meter-5992", + "maker": "Maker E", + "model": "Model 5992", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.00613518033245, + 24.297721673121583 + ] + }, + "properties": { + "id": "meter-5993", + "maker": "Maker J", + "model": "Model 5993", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.287590516246794, + 21.450597642690383 + ] + }, + "properties": { + "id": "meter-5994", + "maker": "Maker A", + "model": "Model 5994", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09672149088894, + 26.433658922144435 + ] + }, + "properties": { + "id": "meter-5995", + "maker": "Maker F", + "model": "Model 5995", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23436102512739, + 29.867951773915365 + ] + }, + "properties": { + "id": "meter-5996", + "maker": "Maker I", + "model": "Model 5996", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23534392834184, + 21.507520032251197 + ] + }, + "properties": { + "id": "meter-5997", + "maker": "Maker H", + "model": "Model 5997", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.9244315270791, + 21.39077676721846 + ] + }, + "properties": { + "id": "meter-5998", + "maker": "Maker B", + "model": "Model 5998", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.059111641128126, + 26.248608484938206 + ] + }, + "properties": { + "id": "meter-5999", + "maker": "Maker A", + "model": "Model 5999", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.19025634029405, + 17.578684721040204 + ] + }, + "properties": { + "id": "meter-6000", + "maker": "Maker C", + "model": "Model 6000", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.481190273191324, + 20.112842802021937 + ] + }, + "properties": { + "id": "meter-6001", + "maker": "Maker D", + "model": "Model 6001", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.124030535245204, + 30.925136578470738 + ] + }, + "properties": { + "id": "meter-6002", + "maker": "Maker C", + "model": "Model 6002", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.00958405763522, + 31.029947292219354 + ] + }, + "properties": { + "id": "meter-6003", + "maker": "Maker B", + "model": "Model 6003", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.222524883287036, + 26.332189254720344 + ] + }, + "properties": { + "id": "meter-6004", + "maker": "Maker A", + "model": "Model 6004", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.57460408549381, + 24.874657150458543 + ] + }, + "properties": { + "id": "meter-6005", + "maker": "Maker H", + "model": "Model 6005", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.06677676953015, + 31.078782804251052 + ] + }, + "properties": { + "id": "meter-6006", + "maker": "Maker H", + "model": "Model 6006", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.56088056876235, + 25.378425673294686 + ] + }, + "properties": { + "id": "meter-6007", + "maker": "Maker G", + "model": "Model 6007", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.8558229202093, + 18.259096029771282 + ] + }, + "properties": { + "id": "meter-6008", + "maker": "Maker J", + "model": "Model 6008", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.93514521107386, + 31.172723256810418 + ] + }, + "properties": { + "id": "meter-6009", + "maker": "Maker B", + "model": "Model 6009", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.511594862032936, + 27.500719589233576 + ] + }, + "properties": { + "id": "meter-6010", + "maker": "Maker E", + "model": "Model 6010", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.80782681350351, + 21.37210770880154 + ] + }, + "properties": { + "id": "meter-6011", + "maker": "Maker F", + "model": "Model 6011", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.7700177859501, + 18.27956732913717 + ] + }, + "properties": { + "id": "meter-6012", + "maker": "Maker D", + "model": "Model 6012", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91102766795507, + 26.301871875663522 + ] + }, + "properties": { + "id": "meter-6013", + "maker": "Maker A", + "model": "Model 6013", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.156274391188, + 26.42506540260405 + ] + }, + "properties": { + "id": "meter-6014", + "maker": "Maker E", + "model": "Model 6014", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98458833673827, + 26.37138542024814 + ] + }, + "properties": { + "id": "meter-6015", + "maker": "Maker D", + "model": "Model 6015", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07223377586626, + 26.37879099956045 + ] + }, + "properties": { + "id": "meter-6016", + "maker": "Maker I", + "model": "Model 6016", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72924600128276, + 18.378372978781833 + ] + }, + "properties": { + "id": "meter-6017", + "maker": "Maker G", + "model": "Model 6017", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.809373731770286, + 31.04917538284135 + ] + }, + "properties": { + "id": "meter-6018", + "maker": "Maker G", + "model": "Model 6018", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.12465503592512, + 24.119596268722987 + ] + }, + "properties": { + "id": "meter-6019", + "maker": "Maker I", + "model": "Model 6019", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.49275944279469, + 25.286945946511512 + ] + }, + "properties": { + "id": "meter-6020", + "maker": "Maker G", + "model": "Model 6020", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03055476098062, + 31.164832093135928 + ] + }, + "properties": { + "id": "meter-6021", + "maker": "Maker J", + "model": "Model 6021", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.09808039527738, + 21.412630519267076 + ] + }, + "properties": { + "id": "meter-6022", + "maker": "Maker D", + "model": "Model 6022", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.57201532936271, + 24.717091253980385 + ] + }, + "properties": { + "id": "meter-6023", + "maker": "Maker A", + "model": "Model 6023", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.44818897369068, + 25.304408964916515 + ] + }, + "properties": { + "id": "meter-6024", + "maker": "Maker I", + "model": "Model 6024", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.28079509250682, + 21.502390854558357 + ] + }, + "properties": { + "id": "meter-6025", + "maker": "Maker D", + "model": "Model 6025", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.604341781211716, + 18.563184610663964 + ] + }, + "properties": { + "id": "meter-6026", + "maker": "Maker B", + "model": "Model 6026", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.51431643590671, + 24.875860361519937 + ] + }, + "properties": { + "id": "meter-6027", + "maker": "Maker F", + "model": "Model 6027", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.52921501578581, + 28.22258297150666 + ] + }, + "properties": { + "id": "meter-6028", + "maker": "Maker E", + "model": "Model 6028", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.73672818420883, + 25.447995168080915 + ] + }, + "properties": { + "id": "meter-6029", + "maker": "Maker E", + "model": "Model 6029", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.214834179606825, + 26.285301101021854 + ] + }, + "properties": { + "id": "meter-6030", + "maker": "Maker C", + "model": "Model 6030", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.011741361110474, + 26.523129144286454 + ] + }, + "properties": { + "id": "meter-6031", + "maker": "Maker G", + "model": "Model 6031", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55637185944691, + 20.021765812302384 + ] + }, + "properties": { + "id": "meter-6032", + "maker": "Maker D", + "model": "Model 6032", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.4042082279632, + 29.859204966028 + ] + }, + "properties": { + "id": "meter-6033", + "maker": "Maker F", + "model": "Model 6033", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03512390163093, + 17.43573604966708 + ] + }, + "properties": { + "id": "meter-6034", + "maker": "Maker F", + "model": "Model 6034", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.60552466887532, + 18.281499840100476 + ] + }, + "properties": { + "id": "meter-6035", + "maker": "Maker A", + "model": "Model 6035", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.16504198960334, + 29.82673443505418 + ] + }, + "properties": { + "id": "meter-6036", + "maker": "Maker I", + "model": "Model 6036", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.76781978436369, + 27.51059872347773 + ] + }, + "properties": { + "id": "meter-6037", + "maker": "Maker G", + "model": "Model 6037", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.159569863541385, + 24.128051318986206 + ] + }, + "properties": { + "id": "meter-6038", + "maker": "Maker G", + "model": "Model 6038", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.49441612229769, + 24.85741323778735 + ] + }, + "properties": { + "id": "meter-6039", + "maker": "Maker E", + "model": "Model 6039", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.154728193687454, + 26.333330453847058 + ] + }, + "properties": { + "id": "meter-6040", + "maker": "Maker F", + "model": "Model 6040", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.32710967894869, + 18.265737857786473 + ] + }, + "properties": { + "id": "meter-6041", + "maker": "Maker H", + "model": "Model 6041", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.177314579591545, + 26.282919790830707 + ] + }, + "properties": { + "id": "meter-6042", + "maker": "Maker H", + "model": "Model 6042", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94236350742344, + 26.240844175999747 + ] + }, + "properties": { + "id": "meter-6043", + "maker": "Maker E", + "model": "Model 6043", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.44902008359913, + 28.476756679669972 + ] + }, + "properties": { + "id": "meter-6044", + "maker": "Maker E", + "model": "Model 6044", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.656271137757734, + 18.520274870459666 + ] + }, + "properties": { + "id": "meter-6045", + "maker": "Maker E", + "model": "Model 6045", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.44868327670775, + 24.645292128554704 + ] + }, + "properties": { + "id": "meter-6046", + "maker": "Maker B", + "model": "Model 6046", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21884532726639, + 30.03431786025922 + ] + }, + "properties": { + "id": "meter-6047", + "maker": "Maker I", + "model": "Model 6047", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.73175585544785, + 25.35195507623835 + ] + }, + "properties": { + "id": "meter-6048", + "maker": "Maker I", + "model": "Model 6048", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.4600113461108, + 24.332731694530732 + ] + }, + "properties": { + "id": "meter-6049", + "maker": "Maker H", + "model": "Model 6049", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.000771817444694, + 26.301708339305076 + ] + }, + "properties": { + "id": "meter-6050", + "maker": "Maker J", + "model": "Model 6050", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.667526690847254, + 27.298126412457357 + ] + }, + "properties": { + "id": "meter-6051", + "maker": "Maker H", + "model": "Model 6051", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67999608843214, + 27.382292832072928 + ] + }, + "properties": { + "id": "meter-6052", + "maker": "Maker I", + "model": "Model 6052", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.097868166387414, + 26.444624861475216 + ] + }, + "properties": { + "id": "meter-6053", + "maker": "Maker E", + "model": "Model 6053", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01941853792769, + 17.51324696937409 + ] + }, + "properties": { + "id": "meter-6054", + "maker": "Maker G", + "model": "Model 6054", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.4716341336498, + 24.732246616817868 + ] + }, + "properties": { + "id": "meter-6055", + "maker": "Maker J", + "model": "Model 6055", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.27823193130703, + 17.50380045518998 + ] + }, + "properties": { + "id": "meter-6056", + "maker": "Maker B", + "model": "Model 6056", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42309497451943, + 27.493055706542137 + ] + }, + "properties": { + "id": "meter-6057", + "maker": "Maker D", + "model": "Model 6057", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.53141525979406, + 25.068343080004745 + ] + }, + "properties": { + "id": "meter-6058", + "maker": "Maker G", + "model": "Model 6058", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.16601089986806, + 29.809337261865828 + ] + }, + "properties": { + "id": "meter-6059", + "maker": "Maker I", + "model": "Model 6059", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.484908448108996, + 18.27861611331904 + ] + }, + "properties": { + "id": "meter-6060", + "maker": "Maker H", + "model": "Model 6060", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.71432071249869, + 24.71121530243051 + ] + }, + "properties": { + "id": "meter-6061", + "maker": "Maker A", + "model": "Model 6061", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.48709840562018, + 24.376928150420728 + ] + }, + "properties": { + "id": "meter-6062", + "maker": "Maker I", + "model": "Model 6062", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.844788152408206, + 18.27016995865698 + ] + }, + "properties": { + "id": "meter-6063", + "maker": "Maker G", + "model": "Model 6063", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.701564173007014, + 21.274926718981085 + ] + }, + "properties": { + "id": "meter-6064", + "maker": "Maker C", + "model": "Model 6064", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.999656201252975, + 26.233572020150493 + ] + }, + "properties": { + "id": "meter-6065", + "maker": "Maker B", + "model": "Model 6065", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.123508805993275, + 31.252655569922133 + ] + }, + "properties": { + "id": "meter-6066", + "maker": "Maker E", + "model": "Model 6066", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.914638230303964, + 30.87073918775855 + ] + }, + "properties": { + "id": "meter-6067", + "maker": "Maker D", + "model": "Model 6067", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.61074145364901, + 18.272184402016297 + ] + }, + "properties": { + "id": "meter-6068", + "maker": "Maker F", + "model": "Model 6068", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.64890417111998, + 25.199312235433624 + ] + }, + "properties": { + "id": "meter-6069", + "maker": "Maker E", + "model": "Model 6069", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.947433848023664, + 21.615930177419102 + ] + }, + "properties": { + "id": "meter-6070", + "maker": "Maker I", + "model": "Model 6070", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.72334422874981, + 24.586722120486197 + ] + }, + "properties": { + "id": "meter-6071", + "maker": "Maker A", + "model": "Model 6071", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.80393325156886, + 26.68265884944098 + ] + }, + "properties": { + "id": "meter-6072", + "maker": "Maker B", + "model": "Model 6072", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.64055944395213, + 20.013465856755346 + ] + }, + "properties": { + "id": "meter-6073", + "maker": "Maker G", + "model": "Model 6073", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88889996015889, + 21.434698994854 + ] + }, + "properties": { + "id": "meter-6074", + "maker": "Maker F", + "model": "Model 6074", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.76108761729845, + 21.242292452476875 + ] + }, + "properties": { + "id": "meter-6075", + "maker": "Maker B", + "model": "Model 6075", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.43069137617813, + 24.711728917395927 + ] + }, + "properties": { + "id": "meter-6076", + "maker": "Maker I", + "model": "Model 6076", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.61154819666583, + 28.374952266845852 + ] + }, + "properties": { + "id": "meter-6077", + "maker": "Maker F", + "model": "Model 6077", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13305799632408, + 17.49068402378853 + ] + }, + "properties": { + "id": "meter-6078", + "maker": "Maker D", + "model": "Model 6078", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.59688421494289, + 27.365594626066443 + ] + }, + "properties": { + "id": "meter-6079", + "maker": "Maker E", + "model": "Model 6079", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.5115818828509, + 18.01500138115731 + ] + }, + "properties": { + "id": "meter-6080", + "maker": "Maker B", + "model": "Model 6080", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.451481821630686, + 19.96373142584015 + ] + }, + "properties": { + "id": "meter-6081", + "maker": "Maker F", + "model": "Model 6081", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65463612738158, + 24.49427975648295 + ] + }, + "properties": { + "id": "meter-6082", + "maker": "Maker C", + "model": "Model 6082", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.05951073434987, + 30.913024705161696 + ] + }, + "properties": { + "id": "meter-6083", + "maker": "Maker J", + "model": "Model 6083", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66545922338856, + 18.167104202537704 + ] + }, + "properties": { + "id": "meter-6084", + "maker": "Maker J", + "model": "Model 6084", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.3748803811404, + 29.82261174231149 + ] + }, + "properties": { + "id": "meter-6085", + "maker": "Maker H", + "model": "Model 6085", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.28641341130184, + 21.3931421850043 + ] + }, + "properties": { + "id": "meter-6086", + "maker": "Maker A", + "model": "Model 6086", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48852395749071, + 20.034626481392277 + ] + }, + "properties": { + "id": "meter-6087", + "maker": "Maker H", + "model": "Model 6087", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.42423874927912, + 18.478118110652993 + ] + }, + "properties": { + "id": "meter-6088", + "maker": "Maker C", + "model": "Model 6088", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.50052688958998, + 24.3316483653792 + ] + }, + "properties": { + "id": "meter-6089", + "maker": "Maker F", + "model": "Model 6089", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67402372213778, + 24.712477918213615 + ] + }, + "properties": { + "id": "meter-6090", + "maker": "Maker H", + "model": "Model 6090", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.054950840540215, + 21.373182521334936 + ] + }, + "properties": { + "id": "meter-6091", + "maker": "Maker B", + "model": "Model 6091", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.43032216260259, + 24.63769145508058 + ] + }, + "properties": { + "id": "meter-6092", + "maker": "Maker E", + "model": "Model 6092", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18306597201632, + 26.332765755456563 + ] + }, + "properties": { + "id": "meter-6093", + "maker": "Maker H", + "model": "Model 6093", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.740335657466765, + 21.215466927641472 + ] + }, + "properties": { + "id": "meter-6094", + "maker": "Maker F", + "model": "Model 6094", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.57931510360948, + 19.894147773617416 + ] + }, + "properties": { + "id": "meter-6095", + "maker": "Maker J", + "model": "Model 6095", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.8747968519039, + 28.338652956866042 + ] + }, + "properties": { + "id": "meter-6096", + "maker": "Maker I", + "model": "Model 6096", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.0892535534144, + 17.666780647353544 + ] + }, + "properties": { + "id": "meter-6097", + "maker": "Maker G", + "model": "Model 6097", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.48097925495821, + 24.551619577550973 + ] + }, + "properties": { + "id": "meter-6098", + "maker": "Maker B", + "model": "Model 6098", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10765767401434, + 26.380005748815258 + ] + }, + "properties": { + "id": "meter-6099", + "maker": "Maker A", + "model": "Model 6099", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.610940993821146, + 25.55362806029152 + ] + }, + "properties": { + "id": "meter-6100", + "maker": "Maker D", + "model": "Model 6100", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.60033958524017, + 18.30948132978582 + ] + }, + "properties": { + "id": "meter-6101", + "maker": "Maker G", + "model": "Model 6101", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1245831917428, + 17.495126326625446 + ] + }, + "properties": { + "id": "meter-6102", + "maker": "Maker I", + "model": "Model 6102", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.662511481508005, + 24.722300026211574 + ] + }, + "properties": { + "id": "meter-6103", + "maker": "Maker G", + "model": "Model 6103", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10504794850178, + 17.46756616229305 + ] + }, + "properties": { + "id": "meter-6104", + "maker": "Maker F", + "model": "Model 6104", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.79338151185909, + 31.03949199050856 + ] + }, + "properties": { + "id": "meter-6105", + "maker": "Maker E", + "model": "Model 6105", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.087251864726035, + 26.306639960553973 + ] + }, + "properties": { + "id": "meter-6106", + "maker": "Maker C", + "model": "Model 6106", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.8303825943866, + 26.444682566901346 + ] + }, + "properties": { + "id": "meter-6107", + "maker": "Maker F", + "model": "Model 6107", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.77315002588762, + 24.835138654595408 + ] + }, + "properties": { + "id": "meter-6108", + "maker": "Maker D", + "model": "Model 6108", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.215498997898706, + 29.968236795785106 + ] + }, + "properties": { + "id": "meter-6109", + "maker": "Maker F", + "model": "Model 6109", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63553508029758, + 24.366779903593024 + ] + }, + "properties": { + "id": "meter-6110", + "maker": "Maker C", + "model": "Model 6110", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.27984545582028, + 17.48190816096906 + ] + }, + "properties": { + "id": "meter-6111", + "maker": "Maker F", + "model": "Model 6111", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.066390976406296, + 24.177392174518737 + ] + }, + "properties": { + "id": "meter-6112", + "maker": "Maker G", + "model": "Model 6112", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.60610102869152, + 25.527148650752896 + ] + }, + "properties": { + "id": "meter-6113", + "maker": "Maker J", + "model": "Model 6113", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.83664259988273, + 26.327668483217348 + ] + }, + "properties": { + "id": "meter-6114", + "maker": "Maker E", + "model": "Model 6114", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.634310748249796, + 28.40730721258137 + ] + }, + "properties": { + "id": "meter-6115", + "maker": "Maker G", + "model": "Model 6115", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97297445067017, + 26.587412665234716 + ] + }, + "properties": { + "id": "meter-6116", + "maker": "Maker B", + "model": "Model 6116", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.901492255671634, + 26.274165339614612 + ] + }, + "properties": { + "id": "meter-6117", + "maker": "Maker J", + "model": "Model 6117", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.942107181422614, + 26.758455938075663 + ] + }, + "properties": { + "id": "meter-6118", + "maker": "Maker E", + "model": "Model 6118", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45250485367022, + 18.43109009489858 + ] + }, + "properties": { + "id": "meter-6119", + "maker": "Maker B", + "model": "Model 6119", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98956008865113, + 26.191665727511747 + ] + }, + "properties": { + "id": "meter-6120", + "maker": "Maker J", + "model": "Model 6120", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69721778770824, + 18.336024076013825 + ] + }, + "properties": { + "id": "meter-6121", + "maker": "Maker G", + "model": "Model 6121", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.680431557038624, + 24.677899978295848 + ] + }, + "properties": { + "id": "meter-6122", + "maker": "Maker I", + "model": "Model 6122", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.854571345755126, + 31.03511922565926 + ] + }, + "properties": { + "id": "meter-6123", + "maker": "Maker F", + "model": "Model 6123", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11941907658591, + 26.201895027194517 + ] + }, + "properties": { + "id": "meter-6124", + "maker": "Maker B", + "model": "Model 6124", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.88270487045779, + 26.404015579052725 + ] + }, + "properties": { + "id": "meter-6125", + "maker": "Maker A", + "model": "Model 6125", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.63235806509374, + 25.091241174363734 + ] + }, + "properties": { + "id": "meter-6126", + "maker": "Maker A", + "model": "Model 6126", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03095233126018, + 26.278742249655483 + ] + }, + "properties": { + "id": "meter-6127", + "maker": "Maker D", + "model": "Model 6127", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.97796293531725, + 31.06361997091532 + ] + }, + "properties": { + "id": "meter-6128", + "maker": "Maker B", + "model": "Model 6128", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.53796953738367, + 28.421532325199188 + ] + }, + "properties": { + "id": "meter-6129", + "maker": "Maker E", + "model": "Model 6129", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.67803083865365, + 18.353942578870782 + ] + }, + "properties": { + "id": "meter-6130", + "maker": "Maker F", + "model": "Model 6130", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.66269089763323, + 24.44106780532493 + ] + }, + "properties": { + "id": "meter-6131", + "maker": "Maker A", + "model": "Model 6131", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.80858464006229, + 31.16054643895696 + ] + }, + "properties": { + "id": "meter-6132", + "maker": "Maker E", + "model": "Model 6132", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.681891440483824, + 24.71307308543942 + ] + }, + "properties": { + "id": "meter-6133", + "maker": "Maker B", + "model": "Model 6133", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.42984650359209, + 18.286312798033958 + ] + }, + "properties": { + "id": "meter-6134", + "maker": "Maker E", + "model": "Model 6134", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.203888328145176, + 19.960967170432568 + ] + }, + "properties": { + "id": "meter-6135", + "maker": "Maker G", + "model": "Model 6135", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20765535598375, + 26.279129098447974 + ] + }, + "properties": { + "id": "meter-6136", + "maker": "Maker E", + "model": "Model 6136", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.458181866701636, + 18.162020464884126 + ] + }, + "properties": { + "id": "meter-6137", + "maker": "Maker F", + "model": "Model 6137", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.90349085823515, + 27.398478880259137 + ] + }, + "properties": { + "id": "meter-6138", + "maker": "Maker D", + "model": "Model 6138", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.153894030861046, + 17.534492634697546 + ] + }, + "properties": { + "id": "meter-6139", + "maker": "Maker J", + "model": "Model 6139", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.87842012966618, + 21.349874623091733 + ] + }, + "properties": { + "id": "meter-6140", + "maker": "Maker H", + "model": "Model 6140", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.06610668233828, + 30.782099827710258 + ] + }, + "properties": { + "id": "meter-6141", + "maker": "Maker E", + "model": "Model 6141", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.63421487448717, + 18.090100436730108 + ] + }, + "properties": { + "id": "meter-6142", + "maker": "Maker A", + "model": "Model 6142", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.499568159573855, + 18.207513937227397 + ] + }, + "properties": { + "id": "meter-6143", + "maker": "Maker D", + "model": "Model 6143", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08046137170919, + 17.67092202174746 + ] + }, + "properties": { + "id": "meter-6144", + "maker": "Maker H", + "model": "Model 6144", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.518565255844905, + 27.598967383927008 + ] + }, + "properties": { + "id": "meter-6145", + "maker": "Maker H", + "model": "Model 6145", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.581498359735534, + 25.24059708557746 + ] + }, + "properties": { + "id": "meter-6146", + "maker": "Maker I", + "model": "Model 6146", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.797844551953986, + 18.32566732940116 + ] + }, + "properties": { + "id": "meter-6147", + "maker": "Maker I", + "model": "Model 6147", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.909542507543364, + 18.541813774638364 + ] + }, + "properties": { + "id": "meter-6148", + "maker": "Maker C", + "model": "Model 6148", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68959566512195, + 18.5977543205127 + ] + }, + "properties": { + "id": "meter-6149", + "maker": "Maker I", + "model": "Model 6149", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.75427284398944, + 21.27222322017184 + ] + }, + "properties": { + "id": "meter-6150", + "maker": "Maker H", + "model": "Model 6150", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.13880684300869, + 24.15730312335167 + ] + }, + "properties": { + "id": "meter-6151", + "maker": "Maker C", + "model": "Model 6151", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.43180644802892, + 20.07303888928624 + ] + }, + "properties": { + "id": "meter-6152", + "maker": "Maker E", + "model": "Model 6152", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69177869674474, + 27.562708933198696 + ] + }, + "properties": { + "id": "meter-6153", + "maker": "Maker D", + "model": "Model 6153", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.64570074667403, + 18.396674253237347 + ] + }, + "properties": { + "id": "meter-6154", + "maker": "Maker B", + "model": "Model 6154", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99984424376253, + 26.48597625460543 + ] + }, + "properties": { + "id": "meter-6155", + "maker": "Maker D", + "model": "Model 6155", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.346875134434725, + 21.364522034907715 + ] + }, + "properties": { + "id": "meter-6156", + "maker": "Maker B", + "model": "Model 6156", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.56595339742711, + 18.180521628310434 + ] + }, + "properties": { + "id": "meter-6157", + "maker": "Maker G", + "model": "Model 6157", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99749039949564, + 26.51057198583258 + ] + }, + "properties": { + "id": "meter-6158", + "maker": "Maker B", + "model": "Model 6158", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.467248432760115, + 19.978968032994985 + ] + }, + "properties": { + "id": "meter-6159", + "maker": "Maker H", + "model": "Model 6159", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23076831195226, + 21.531745020033807 + ] + }, + "properties": { + "id": "meter-6160", + "maker": "Maker G", + "model": "Model 6160", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4544560127609, + 20.01125578849899 + ] + }, + "properties": { + "id": "meter-6161", + "maker": "Maker B", + "model": "Model 6161", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96348223551606, + 26.42481988432905 + ] + }, + "properties": { + "id": "meter-6162", + "maker": "Maker F", + "model": "Model 6162", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.697306077182304, + 24.69881335975937 + ] + }, + "properties": { + "id": "meter-6163", + "maker": "Maker H", + "model": "Model 6163", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.51386887197763, + 24.938460807836208 + ] + }, + "properties": { + "id": "meter-6164", + "maker": "Maker F", + "model": "Model 6164", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.59542645578643, + 18.048499033465085 + ] + }, + "properties": { + "id": "meter-6165", + "maker": "Maker C", + "model": "Model 6165", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.389360535944384, + 21.286949411456963 + ] + }, + "properties": { + "id": "meter-6166", + "maker": "Maker B", + "model": "Model 6166", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.32440629368199, + 24.57839866913266 + ] + }, + "properties": { + "id": "meter-6167", + "maker": "Maker D", + "model": "Model 6167", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.25334380862119, + 26.28191979455859 + ] + }, + "properties": { + "id": "meter-6168", + "maker": "Maker H", + "model": "Model 6168", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.56315535948011, + 27.289158834542253 + ] + }, + "properties": { + "id": "meter-6169", + "maker": "Maker F", + "model": "Model 6169", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21113851941062, + 26.28032017570458 + ] + }, + "properties": { + "id": "meter-6170", + "maker": "Maker G", + "model": "Model 6170", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.763593131660606, + 25.542791736408834 + ] + }, + "properties": { + "id": "meter-6171", + "maker": "Maker F", + "model": "Model 6171", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.40755592411361, + 21.48063927375085 + ] + }, + "properties": { + "id": "meter-6172", + "maker": "Maker H", + "model": "Model 6172", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.51441518579058, + 19.749085624654462 + ] + }, + "properties": { + "id": "meter-6173", + "maker": "Maker J", + "model": "Model 6173", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.551918714797274, + 25.52569493726914 + ] + }, + "properties": { + "id": "meter-6174", + "maker": "Maker J", + "model": "Model 6174", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.76019438537725, + 27.225381472441622 + ] + }, + "properties": { + "id": "meter-6175", + "maker": "Maker A", + "model": "Model 6175", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.84555690898284, + 26.221499883473054 + ] + }, + "properties": { + "id": "meter-6176", + "maker": "Maker J", + "model": "Model 6176", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.78063278268432, + 21.354880932740933 + ] + }, + "properties": { + "id": "meter-6177", + "maker": "Maker C", + "model": "Model 6177", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.66387404239411, + 21.436946817567183 + ] + }, + "properties": { + "id": "meter-6178", + "maker": "Maker H", + "model": "Model 6178", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01827415477124, + 26.500146186947052 + ] + }, + "properties": { + "id": "meter-6179", + "maker": "Maker F", + "model": "Model 6179", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.35077682876393, + 21.56522482231125 + ] + }, + "properties": { + "id": "meter-6180", + "maker": "Maker G", + "model": "Model 6180", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.55778061255492, + 28.363773887480242 + ] + }, + "properties": { + "id": "meter-6181", + "maker": "Maker B", + "model": "Model 6181", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.62004132152738, + 18.370749212552955 + ] + }, + "properties": { + "id": "meter-6182", + "maker": "Maker G", + "model": "Model 6182", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.036385314312696, + 26.341018047015833 + ] + }, + "properties": { + "id": "meter-6183", + "maker": "Maker D", + "model": "Model 6183", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.197510767315315, + 24.13757657641304 + ] + }, + "properties": { + "id": "meter-6184", + "maker": "Maker I", + "model": "Model 6184", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.51956517507505, + 24.580586760139205 + ] + }, + "properties": { + "id": "meter-6185", + "maker": "Maker B", + "model": "Model 6185", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12548364478271, + 17.487213694841767 + ] + }, + "properties": { + "id": "meter-6186", + "maker": "Maker I", + "model": "Model 6186", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.936339981612015, + 27.457363123553076 + ] + }, + "properties": { + "id": "meter-6187", + "maker": "Maker F", + "model": "Model 6187", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.033072043854624, + 17.400033995611967 + ] + }, + "properties": { + "id": "meter-6188", + "maker": "Maker E", + "model": "Model 6188", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08683211415746, + 26.466130004960434 + ] + }, + "properties": { + "id": "meter-6189", + "maker": "Maker C", + "model": "Model 6189", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.01979059291855, + 30.967736418912203 + ] + }, + "properties": { + "id": "meter-6190", + "maker": "Maker E", + "model": "Model 6190", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.91568264968301, + 21.618492937566845 + ] + }, + "properties": { + "id": "meter-6191", + "maker": "Maker J", + "model": "Model 6191", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.47797817336402, + 28.3285577758864 + ] + }, + "properties": { + "id": "meter-6192", + "maker": "Maker I", + "model": "Model 6192", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.75536149007001, + 21.546710008856145 + ] + }, + "properties": { + "id": "meter-6193", + "maker": "Maker I", + "model": "Model 6193", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.889520953541286, + 17.354919183517197 + ] + }, + "properties": { + "id": "meter-6194", + "maker": "Maker H", + "model": "Model 6194", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.152404081512806, + 26.65343341242882 + ] + }, + "properties": { + "id": "meter-6195", + "maker": "Maker A", + "model": "Model 6195", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12261812236805, + 17.671862803532946 + ] + }, + "properties": { + "id": "meter-6196", + "maker": "Maker I", + "model": "Model 6196", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.89435804301834, + 30.931666314634583 + ] + }, + "properties": { + "id": "meter-6197", + "maker": "Maker D", + "model": "Model 6197", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.235813446825055, + 21.44049037139789 + ] + }, + "properties": { + "id": "meter-6198", + "maker": "Maker A", + "model": "Model 6198", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.69230928028782, + 24.625247593545325 + ] + }, + "properties": { + "id": "meter-6199", + "maker": "Maker G", + "model": "Model 6199", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25459687293598, + 21.59865373353015 + ] + }, + "properties": { + "id": "meter-6200", + "maker": "Maker D", + "model": "Model 6200", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.306233166182764, + 29.957555194533086 + ] + }, + "properties": { + "id": "meter-6201", + "maker": "Maker A", + "model": "Model 6201", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51306865939938, + 28.642321302482433 + ] + }, + "properties": { + "id": "meter-6202", + "maker": "Maker J", + "model": "Model 6202", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.009117639618864, + 26.50560187295182 + ] + }, + "properties": { + "id": "meter-6203", + "maker": "Maker F", + "model": "Model 6203", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.56341677284172, + 24.403350494590985 + ] + }, + "properties": { + "id": "meter-6204", + "maker": "Maker G", + "model": "Model 6204", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.80886824300075, + 24.20368736746397 + ] + }, + "properties": { + "id": "meter-6205", + "maker": "Maker B", + "model": "Model 6205", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.84589785090448, + 26.22927896645749 + ] + }, + "properties": { + "id": "meter-6206", + "maker": "Maker J", + "model": "Model 6206", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.18196641367703, + 30.26535794184851 + ] + }, + "properties": { + "id": "meter-6207", + "maker": "Maker B", + "model": "Model 6207", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.78875348020751, + 30.948692073001595 + ] + }, + "properties": { + "id": "meter-6208", + "maker": "Maker A", + "model": "Model 6208", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09433488211577, + 26.41589133466686 + ] + }, + "properties": { + "id": "meter-6209", + "maker": "Maker J", + "model": "Model 6209", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.151452232717496, + 26.245478945369825 + ] + }, + "properties": { + "id": "meter-6210", + "maker": "Maker G", + "model": "Model 6210", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.641666459530306, + 24.63667789342678 + ] + }, + "properties": { + "id": "meter-6211", + "maker": "Maker H", + "model": "Model 6211", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.17066998582567, + 21.22106053148994 + ] + }, + "properties": { + "id": "meter-6212", + "maker": "Maker D", + "model": "Model 6212", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.045079437811715, + 26.401745623634383 + ] + }, + "properties": { + "id": "meter-6213", + "maker": "Maker B", + "model": "Model 6213", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15091485287608, + 26.349619627751718 + ] + }, + "properties": { + "id": "meter-6214", + "maker": "Maker I", + "model": "Model 6214", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.794725726738285, + 18.334030648418118 + ] + }, + "properties": { + "id": "meter-6215", + "maker": "Maker A", + "model": "Model 6215", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.421203035556175, + 18.282642689769496 + ] + }, + "properties": { + "id": "meter-6216", + "maker": "Maker D", + "model": "Model 6216", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.11105448946554, + 24.335896024601777 + ] + }, + "properties": { + "id": "meter-6217", + "maker": "Maker A", + "model": "Model 6217", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.1159136979426, + 24.097903800735 + ] + }, + "properties": { + "id": "meter-6218", + "maker": "Maker F", + "model": "Model 6218", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.52343426979138, + 20.01670447415505 + ] + }, + "properties": { + "id": "meter-6219", + "maker": "Maker A", + "model": "Model 6219", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.79714153772422, + 26.69085767000912 + ] + }, + "properties": { + "id": "meter-6220", + "maker": "Maker I", + "model": "Model 6220", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06547308673103, + 26.436348847481522 + ] + }, + "properties": { + "id": "meter-6221", + "maker": "Maker E", + "model": "Model 6221", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02252627244132, + 26.394341244246366 + ] + }, + "properties": { + "id": "meter-6222", + "maker": "Maker A", + "model": "Model 6222", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.983104465956295, + 26.324897492030395 + ] + }, + "properties": { + "id": "meter-6223", + "maker": "Maker C", + "model": "Model 6223", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.337556693381025, + 21.50410522783625 + ] + }, + "properties": { + "id": "meter-6224", + "maker": "Maker C", + "model": "Model 6224", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.56826839747228, + 25.412821116051084 + ] + }, + "properties": { + "id": "meter-6225", + "maker": "Maker E", + "model": "Model 6225", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.502256431417464, + 18.21476852815875 + ] + }, + "properties": { + "id": "meter-6226", + "maker": "Maker G", + "model": "Model 6226", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.03254717437393, + 24.118650576887287 + ] + }, + "properties": { + "id": "meter-6227", + "maker": "Maker A", + "model": "Model 6227", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03917410054497, + 26.253840090693163 + ] + }, + "properties": { + "id": "meter-6228", + "maker": "Maker E", + "model": "Model 6228", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.527729021130874, + 21.53364961477588 + ] + }, + "properties": { + "id": "meter-6229", + "maker": "Maker E", + "model": "Model 6229", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04382370945927, + 26.127535363265437 + ] + }, + "properties": { + "id": "meter-6230", + "maker": "Maker G", + "model": "Model 6230", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.71354738819799, + 24.712467947255305 + ] + }, + "properties": { + "id": "meter-6231", + "maker": "Maker D", + "model": "Model 6231", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.613501630936696, + 28.39071728747028 + ] + }, + "properties": { + "id": "meter-6232", + "maker": "Maker C", + "model": "Model 6232", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.77350081005506, + 26.56193597408611 + ] + }, + "properties": { + "id": "meter-6233", + "maker": "Maker B", + "model": "Model 6233", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.37486234560132, + 19.763899216978633 + ] + }, + "properties": { + "id": "meter-6234", + "maker": "Maker A", + "model": "Model 6234", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.950012733094134, + 26.323387026179574 + ] + }, + "properties": { + "id": "meter-6235", + "maker": "Maker E", + "model": "Model 6235", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.99104073100834, + 30.973797004155273 + ] + }, + "properties": { + "id": "meter-6236", + "maker": "Maker H", + "model": "Model 6236", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.483369344326285, + 21.39214247922749 + ] + }, + "properties": { + "id": "meter-6237", + "maker": "Maker E", + "model": "Model 6237", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.9607978340016, + 31.002012097745304 + ] + }, + "properties": { + "id": "meter-6238", + "maker": "Maker A", + "model": "Model 6238", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02778650196283, + 26.221438102587033 + ] + }, + "properties": { + "id": "meter-6239", + "maker": "Maker G", + "model": "Model 6239", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.43410819896702, + 18.16013533975403 + ] + }, + "properties": { + "id": "meter-6240", + "maker": "Maker I", + "model": "Model 6240", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.9492991812164, + 18.426657954738285 + ] + }, + "properties": { + "id": "meter-6241", + "maker": "Maker D", + "model": "Model 6241", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.4556087927201, + 18.31230419304719 + ] + }, + "properties": { + "id": "meter-6242", + "maker": "Maker B", + "model": "Model 6242", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.30257334297136, + 24.033835680506655 + ] + }, + "properties": { + "id": "meter-6243", + "maker": "Maker I", + "model": "Model 6243", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.548385133323244, + 24.84646525130338 + ] + }, + "properties": { + "id": "meter-6244", + "maker": "Maker F", + "model": "Model 6244", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98835917001617, + 26.500534183413553 + ] + }, + "properties": { + "id": "meter-6245", + "maker": "Maker D", + "model": "Model 6245", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9534731382524, + 26.62680291603132 + ] + }, + "properties": { + "id": "meter-6246", + "maker": "Maker D", + "model": "Model 6246", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.233953853095954, + 31.09088039644912 + ] + }, + "properties": { + "id": "meter-6247", + "maker": "Maker G", + "model": "Model 6247", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18463280276277, + 26.255586359110065 + ] + }, + "properties": { + "id": "meter-6248", + "maker": "Maker H", + "model": "Model 6248", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.83377252865592, + 26.109230153506537 + ] + }, + "properties": { + "id": "meter-6249", + "maker": "Maker I", + "model": "Model 6249", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.67806177194734, + 28.191529120477757 + ] + }, + "properties": { + "id": "meter-6250", + "maker": "Maker I", + "model": "Model 6250", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.05643695055556, + 29.738489831599228 + ] + }, + "properties": { + "id": "meter-6251", + "maker": "Maker G", + "model": "Model 6251", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.076262173446274, + 26.167881669606995 + ] + }, + "properties": { + "id": "meter-6252", + "maker": "Maker G", + "model": "Model 6252", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.918487788929234, + 26.667393296587466 + ] + }, + "properties": { + "id": "meter-6253", + "maker": "Maker C", + "model": "Model 6253", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.4637027457114, + 28.412739401236784 + ] + }, + "properties": { + "id": "meter-6254", + "maker": "Maker J", + "model": "Model 6254", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26158736741105, + 21.50657206015894 + ] + }, + "properties": { + "id": "meter-6255", + "maker": "Maker D", + "model": "Model 6255", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.713811099351666, + 26.40496926795839 + ] + }, + "properties": { + "id": "meter-6256", + "maker": "Maker G", + "model": "Model 6256", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.85970044012818, + 18.370848611205112 + ] + }, + "properties": { + "id": "meter-6257", + "maker": "Maker H", + "model": "Model 6257", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92154894107725, + 17.472976314859434 + ] + }, + "properties": { + "id": "meter-6258", + "maker": "Maker A", + "model": "Model 6258", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99724243396466, + 26.424662749169165 + ] + }, + "properties": { + "id": "meter-6259", + "maker": "Maker D", + "model": "Model 6259", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49498612246893, + 18.230839507112755 + ] + }, + "properties": { + "id": "meter-6260", + "maker": "Maker F", + "model": "Model 6260", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55788005854576, + 27.446101869000714 + ] + }, + "properties": { + "id": "meter-6261", + "maker": "Maker I", + "model": "Model 6261", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67618911915446, + 24.802581042290733 + ] + }, + "properties": { + "id": "meter-6262", + "maker": "Maker H", + "model": "Model 6262", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.40055127750353, + 29.849967309230596 + ] + }, + "properties": { + "id": "meter-6263", + "maker": "Maker B", + "model": "Model 6263", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.64476075523259, + 27.758622010071605 + ] + }, + "properties": { + "id": "meter-6264", + "maker": "Maker G", + "model": "Model 6264", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.971323703143064, + 26.235607735972696 + ] + }, + "properties": { + "id": "meter-6265", + "maker": "Maker G", + "model": "Model 6265", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59619855655565, + 25.179467370507382 + ] + }, + "properties": { + "id": "meter-6266", + "maker": "Maker C", + "model": "Model 6266", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4498774010762, + 19.72447684022908 + ] + }, + "properties": { + "id": "meter-6267", + "maker": "Maker D", + "model": "Model 6267", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.933758880105465, + 18.322255355334104 + ] + }, + "properties": { + "id": "meter-6268", + "maker": "Maker F", + "model": "Model 6268", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.803107543239165, + 28.476453042499596 + ] + }, + "properties": { + "id": "meter-6269", + "maker": "Maker A", + "model": "Model 6269", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.760804422094395, + 28.42760817862526 + ] + }, + "properties": { + "id": "meter-6270", + "maker": "Maker F", + "model": "Model 6270", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.725868416387485, + 20.10361653266192 + ] + }, + "properties": { + "id": "meter-6271", + "maker": "Maker I", + "model": "Model 6271", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.79625014419321, + 18.324972955274887 + ] + }, + "properties": { + "id": "meter-6272", + "maker": "Maker D", + "model": "Model 6272", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.525989659072614, + 28.665604420760626 + ] + }, + "properties": { + "id": "meter-6273", + "maker": "Maker F", + "model": "Model 6273", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.200793539637736, + 26.350870695823932 + ] + }, + "properties": { + "id": "meter-6274", + "maker": "Maker A", + "model": "Model 6274", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.81768605615001, + 18.388008282471883 + ] + }, + "properties": { + "id": "meter-6275", + "maker": "Maker I", + "model": "Model 6275", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.662668177642544, + 24.779518601618 + ] + }, + "properties": { + "id": "meter-6276", + "maker": "Maker H", + "model": "Model 6276", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.79263273569178, + 18.250624846633354 + ] + }, + "properties": { + "id": "meter-6277", + "maker": "Maker F", + "model": "Model 6277", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.646776235824156, + 24.595927409799646 + ] + }, + "properties": { + "id": "meter-6278", + "maker": "Maker H", + "model": "Model 6278", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.72711826476317, + 26.599677424931116 + ] + }, + "properties": { + "id": "meter-6279", + "maker": "Maker F", + "model": "Model 6279", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18751720147818, + 26.304148866129843 + ] + }, + "properties": { + "id": "meter-6280", + "maker": "Maker E", + "model": "Model 6280", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77251485593462, + 21.38364456519765 + ] + }, + "properties": { + "id": "meter-6281", + "maker": "Maker J", + "model": "Model 6281", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.06396598499874, + 17.546800854058077 + ] + }, + "properties": { + "id": "meter-6282", + "maker": "Maker H", + "model": "Model 6282", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.39595420088322, + 18.393259427265967 + ] + }, + "properties": { + "id": "meter-6283", + "maker": "Maker H", + "model": "Model 6283", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.53837348704286, + 28.535324578572855 + ] + }, + "properties": { + "id": "meter-6284", + "maker": "Maker B", + "model": "Model 6284", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45662400745517, + 20.023089825702563 + ] + }, + "properties": { + "id": "meter-6285", + "maker": "Maker E", + "model": "Model 6285", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.200300466860725, + 21.567224343901582 + ] + }, + "properties": { + "id": "meter-6286", + "maker": "Maker B", + "model": "Model 6286", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.749825201415746, + 27.343505627928046 + ] + }, + "properties": { + "id": "meter-6287", + "maker": "Maker F", + "model": "Model 6287", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.489377961635945, + 18.22449471203295 + ] + }, + "properties": { + "id": "meter-6288", + "maker": "Maker E", + "model": "Model 6288", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.30013887514314, + 21.26914814851473 + ] + }, + "properties": { + "id": "meter-6289", + "maker": "Maker C", + "model": "Model 6289", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.287858810518635, + 17.470159953780843 + ] + }, + "properties": { + "id": "meter-6290", + "maker": "Maker D", + "model": "Model 6290", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.16156112331386, + 30.74184979912131 + ] + }, + "properties": { + "id": "meter-6291", + "maker": "Maker F", + "model": "Model 6291", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08604815746172, + 26.426703831166737 + ] + }, + "properties": { + "id": "meter-6292", + "maker": "Maker B", + "model": "Model 6292", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.6852138892502, + 24.68898531532619 + ] + }, + "properties": { + "id": "meter-6293", + "maker": "Maker H", + "model": "Model 6293", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.06272714983592, + 30.942564704617606 + ] + }, + "properties": { + "id": "meter-6294", + "maker": "Maker D", + "model": "Model 6294", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.267342736229615, + 24.025336142486687 + ] + }, + "properties": { + "id": "meter-6295", + "maker": "Maker B", + "model": "Model 6295", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.19661988221407, + 24.17209397852225 + ] + }, + "properties": { + "id": "meter-6296", + "maker": "Maker B", + "model": "Model 6296", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65246533340348, + 27.471865014726678 + ] + }, + "properties": { + "id": "meter-6297", + "maker": "Maker H", + "model": "Model 6297", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.56108174739728, + 27.493764926575164 + ] + }, + "properties": { + "id": "meter-6298", + "maker": "Maker C", + "model": "Model 6298", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.51207655836833, + 24.750842326749716 + ] + }, + "properties": { + "id": "meter-6299", + "maker": "Maker H", + "model": "Model 6299", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59378340808306, + 25.34755421898255 + ] + }, + "properties": { + "id": "meter-6300", + "maker": "Maker A", + "model": "Model 6300", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.429909537010154, + 21.425820572782936 + ] + }, + "properties": { + "id": "meter-6301", + "maker": "Maker C", + "model": "Model 6301", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4024335496026, + 20.24162505118741 + ] + }, + "properties": { + "id": "meter-6302", + "maker": "Maker I", + "model": "Model 6302", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.452015646001016, + 19.814573389296218 + ] + }, + "properties": { + "id": "meter-6303", + "maker": "Maker J", + "model": "Model 6303", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.66703293898784, + 25.310855682078106 + ] + }, + "properties": { + "id": "meter-6304", + "maker": "Maker B", + "model": "Model 6304", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.64434594237773, + 24.639115900648612 + ] + }, + "properties": { + "id": "meter-6305", + "maker": "Maker I", + "model": "Model 6305", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.57717579896206, + 18.209695916294 + ] + }, + "properties": { + "id": "meter-6306", + "maker": "Maker G", + "model": "Model 6306", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.659629617015526, + 27.529981698579846 + ] + }, + "properties": { + "id": "meter-6307", + "maker": "Maker A", + "model": "Model 6307", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95886011249449, + 26.302849346067557 + ] + }, + "properties": { + "id": "meter-6308", + "maker": "Maker G", + "model": "Model 6308", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.15108017959492, + 31.20411709809343 + ] + }, + "properties": { + "id": "meter-6309", + "maker": "Maker I", + "model": "Model 6309", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.77135952454583, + 30.958916869601218 + ] + }, + "properties": { + "id": "meter-6310", + "maker": "Maker D", + "model": "Model 6310", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.983716099939144, + 26.478540930608155 + ] + }, + "properties": { + "id": "meter-6311", + "maker": "Maker A", + "model": "Model 6311", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.828018274310935, + 28.302358957306787 + ] + }, + "properties": { + "id": "meter-6312", + "maker": "Maker D", + "model": "Model 6312", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.02558371651879, + 30.977612751194258 + ] + }, + "properties": { + "id": "meter-6313", + "maker": "Maker I", + "model": "Model 6313", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92918145437474, + 26.263563347293786 + ] + }, + "properties": { + "id": "meter-6314", + "maker": "Maker H", + "model": "Model 6314", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.87367507240111, + 30.999607636944035 + ] + }, + "properties": { + "id": "meter-6315", + "maker": "Maker H", + "model": "Model 6315", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.62572536550524, + 24.672870426841243 + ] + }, + "properties": { + "id": "meter-6316", + "maker": "Maker D", + "model": "Model 6316", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.965509513375075, + 26.289504474970954 + ] + }, + "properties": { + "id": "meter-6317", + "maker": "Maker F", + "model": "Model 6317", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.129654630050304, + 17.48597263267869 + ] + }, + "properties": { + "id": "meter-6318", + "maker": "Maker C", + "model": "Model 6318", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.26220052456589, + 26.24330836577859 + ] + }, + "properties": { + "id": "meter-6319", + "maker": "Maker C", + "model": "Model 6319", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.681870220994654, + 24.43565361957671 + ] + }, + "properties": { + "id": "meter-6320", + "maker": "Maker E", + "model": "Model 6320", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9593370905607, + 26.411224053445245 + ] + }, + "properties": { + "id": "meter-6321", + "maker": "Maker J", + "model": "Model 6321", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65948446280322, + 24.6896834661476 + ] + }, + "properties": { + "id": "meter-6322", + "maker": "Maker F", + "model": "Model 6322", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.051717031477814, + 26.341480190730987 + ] + }, + "properties": { + "id": "meter-6323", + "maker": "Maker E", + "model": "Model 6323", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52487547692884, + 18.130626101677855 + ] + }, + "properties": { + "id": "meter-6324", + "maker": "Maker G", + "model": "Model 6324", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.542307195500804, + 18.17557946415189 + ] + }, + "properties": { + "id": "meter-6325", + "maker": "Maker F", + "model": "Model 6325", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99755172247652, + 26.163140419692617 + ] + }, + "properties": { + "id": "meter-6326", + "maker": "Maker J", + "model": "Model 6326", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.11649845062289, + 31.20076808610294 + ] + }, + "properties": { + "id": "meter-6327", + "maker": "Maker B", + "model": "Model 6327", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.24099922978184, + 29.855740207100848 + ] + }, + "properties": { + "id": "meter-6328", + "maker": "Maker B", + "model": "Model 6328", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.137159650721905, + 26.108050963664407 + ] + }, + "properties": { + "id": "meter-6329", + "maker": "Maker J", + "model": "Model 6329", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.76309567419118, + 26.574106039516295 + ] + }, + "properties": { + "id": "meter-6330", + "maker": "Maker H", + "model": "Model 6330", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.47292325111174, + 18.330871789722128 + ] + }, + "properties": { + "id": "meter-6331", + "maker": "Maker A", + "model": "Model 6331", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.34774559197417, + 21.210393003517115 + ] + }, + "properties": { + "id": "meter-6332", + "maker": "Maker C", + "model": "Model 6332", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.90568375772101, + 26.58448059530497 + ] + }, + "properties": { + "id": "meter-6333", + "maker": "Maker H", + "model": "Model 6333", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.53968735578256, + 28.25542482163909 + ] + }, + "properties": { + "id": "meter-6334", + "maker": "Maker H", + "model": "Model 6334", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.35046054407802, + 21.395550244473604 + ] + }, + "properties": { + "id": "meter-6335", + "maker": "Maker C", + "model": "Model 6335", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.776539269381175, + 21.270260012459417 + ] + }, + "properties": { + "id": "meter-6336", + "maker": "Maker H", + "model": "Model 6336", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.52250572251088, + 24.700281835594556 + ] + }, + "properties": { + "id": "meter-6337", + "maker": "Maker A", + "model": "Model 6337", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.08782705454359, + 30.890090046931935 + ] + }, + "properties": { + "id": "meter-6338", + "maker": "Maker H", + "model": "Model 6338", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.09773459513764, + 30.239216585276512 + ] + }, + "properties": { + "id": "meter-6339", + "maker": "Maker G", + "model": "Model 6339", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.74865953944651, + 26.40730853976933 + ] + }, + "properties": { + "id": "meter-6340", + "maker": "Maker G", + "model": "Model 6340", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.291456527515756, + 20.134386535651917 + ] + }, + "properties": { + "id": "meter-6341", + "maker": "Maker E", + "model": "Model 6341", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.30455152257523, + 30.001094766867922 + ] + }, + "properties": { + "id": "meter-6342", + "maker": "Maker I", + "model": "Model 6342", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.508055829788084, + 18.224058047812814 + ] + }, + "properties": { + "id": "meter-6343", + "maker": "Maker G", + "model": "Model 6343", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.60375640485802, + 18.018662633876925 + ] + }, + "properties": { + "id": "meter-6344", + "maker": "Maker D", + "model": "Model 6344", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.8236181750705, + 25.269574970670785 + ] + }, + "properties": { + "id": "meter-6345", + "maker": "Maker E", + "model": "Model 6345", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67916312627014, + 27.49502879036596 + ] + }, + "properties": { + "id": "meter-6346", + "maker": "Maker G", + "model": "Model 6346", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.787194405911336, + 27.445037620703115 + ] + }, + "properties": { + "id": "meter-6347", + "maker": "Maker J", + "model": "Model 6347", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86293828447996, + 24.617865310885716 + ] + }, + "properties": { + "id": "meter-6348", + "maker": "Maker D", + "model": "Model 6348", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.79142247116799, + 24.61511813429414 + ] + }, + "properties": { + "id": "meter-6349", + "maker": "Maker F", + "model": "Model 6349", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.50093919444231, + 25.552320824775595 + ] + }, + "properties": { + "id": "meter-6350", + "maker": "Maker A", + "model": "Model 6350", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58985436168354, + 25.347248762954266 + ] + }, + "properties": { + "id": "meter-6351", + "maker": "Maker C", + "model": "Model 6351", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94463561943687, + 26.639490289626266 + ] + }, + "properties": { + "id": "meter-6352", + "maker": "Maker J", + "model": "Model 6352", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.48223335254821, + 29.968419699836222 + ] + }, + "properties": { + "id": "meter-6353", + "maker": "Maker E", + "model": "Model 6353", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58090060608012, + 25.342445618031146 + ] + }, + "properties": { + "id": "meter-6354", + "maker": "Maker H", + "model": "Model 6354", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.919446464406136, + 26.61204900710442 + ] + }, + "properties": { + "id": "meter-6355", + "maker": "Maker A", + "model": "Model 6355", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.424429626765736, + 18.262712810392063 + ] + }, + "properties": { + "id": "meter-6356", + "maker": "Maker C", + "model": "Model 6356", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.51932774874981, + 20.034557774270247 + ] + }, + "properties": { + "id": "meter-6357", + "maker": "Maker H", + "model": "Model 6357", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.15642679554437, + 24.21636096126524 + ] + }, + "properties": { + "id": "meter-6358", + "maker": "Maker E", + "model": "Model 6358", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.9020018357512, + 21.094163749615635 + ] + }, + "properties": { + "id": "meter-6359", + "maker": "Maker J", + "model": "Model 6359", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.74455003676941, + 24.308769210145257 + ] + }, + "properties": { + "id": "meter-6360", + "maker": "Maker G", + "model": "Model 6360", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.34115905528484, + 25.410964476817036 + ] + }, + "properties": { + "id": "meter-6361", + "maker": "Maker H", + "model": "Model 6361", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95231598213779, + 26.44531453854383 + ] + }, + "properties": { + "id": "meter-6362", + "maker": "Maker A", + "model": "Model 6362", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.40847361745362, + 18.300288123501744 + ] + }, + "properties": { + "id": "meter-6363", + "maker": "Maker I", + "model": "Model 6363", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42078320148204, + 19.793765969429934 + ] + }, + "properties": { + "id": "meter-6364", + "maker": "Maker G", + "model": "Model 6364", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19971145889838, + 26.234913238042115 + ] + }, + "properties": { + "id": "meter-6365", + "maker": "Maker C", + "model": "Model 6365", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07038857830523, + 26.24326615707693 + ] + }, + "properties": { + "id": "meter-6366", + "maker": "Maker I", + "model": "Model 6366", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.697708113512846, + 27.428072658173246 + ] + }, + "properties": { + "id": "meter-6367", + "maker": "Maker I", + "model": "Model 6367", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.897400173942074, + 26.403100092537667 + ] + }, + "properties": { + "id": "meter-6368", + "maker": "Maker C", + "model": "Model 6368", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.73435720049331, + 26.333459952344704 + ] + }, + "properties": { + "id": "meter-6369", + "maker": "Maker F", + "model": "Model 6369", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.7319189046776, + 24.96741898126674 + ] + }, + "properties": { + "id": "meter-6370", + "maker": "Maker B", + "model": "Model 6370", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.82837084540243, + 18.074846111254566 + ] + }, + "properties": { + "id": "meter-6371", + "maker": "Maker B", + "model": "Model 6371", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.55940999129877, + 18.323061618226117 + ] + }, + "properties": { + "id": "meter-6372", + "maker": "Maker G", + "model": "Model 6372", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.364527816502815, + 24.51016798185045 + ] + }, + "properties": { + "id": "meter-6373", + "maker": "Maker H", + "model": "Model 6373", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.76537263238319, + 28.24810712980854 + ] + }, + "properties": { + "id": "meter-6374", + "maker": "Maker I", + "model": "Model 6374", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.59134501605025, + 24.63252922120407 + ] + }, + "properties": { + "id": "meter-6375", + "maker": "Maker B", + "model": "Model 6375", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03761778694759, + 30.975361549740054 + ] + }, + "properties": { + "id": "meter-6376", + "maker": "Maker C", + "model": "Model 6376", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61721783837189, + 24.75428087518625 + ] + }, + "properties": { + "id": "meter-6377", + "maker": "Maker H", + "model": "Model 6377", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.222203753895904, + 19.866426147784694 + ] + }, + "properties": { + "id": "meter-6378", + "maker": "Maker E", + "model": "Model 6378", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.79429753530768, + 18.596775965939337 + ] + }, + "properties": { + "id": "meter-6379", + "maker": "Maker H", + "model": "Model 6379", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.15712467391499, + 26.31098309317597 + ] + }, + "properties": { + "id": "meter-6380", + "maker": "Maker J", + "model": "Model 6380", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.7679866476168, + 24.556956994985566 + ] + }, + "properties": { + "id": "meter-6381", + "maker": "Maker E", + "model": "Model 6381", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.53835369290672, + 24.429999571184716 + ] + }, + "properties": { + "id": "meter-6382", + "maker": "Maker H", + "model": "Model 6382", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01620595927533, + 26.532310315081226 + ] + }, + "properties": { + "id": "meter-6383", + "maker": "Maker F", + "model": "Model 6383", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.052724854137885, + 26.26214395216578 + ] + }, + "properties": { + "id": "meter-6384", + "maker": "Maker G", + "model": "Model 6384", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.072072197762665, + 26.07986244663548 + ] + }, + "properties": { + "id": "meter-6385", + "maker": "Maker B", + "model": "Model 6385", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46334885718425, + 20.005173600506144 + ] + }, + "properties": { + "id": "meter-6386", + "maker": "Maker H", + "model": "Model 6386", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.28477898951521, + 17.626554150593417 + ] + }, + "properties": { + "id": "meter-6387", + "maker": "Maker J", + "model": "Model 6387", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.253902747872026, + 30.860549995035868 + ] + }, + "properties": { + "id": "meter-6388", + "maker": "Maker I", + "model": "Model 6388", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.731555510219486, + 18.184456040704486 + ] + }, + "properties": { + "id": "meter-6389", + "maker": "Maker I", + "model": "Model 6389", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.663005268193295, + 24.344718073596887 + ] + }, + "properties": { + "id": "meter-6390", + "maker": "Maker B", + "model": "Model 6390", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.560565390220376, + 19.998540212863066 + ] + }, + "properties": { + "id": "meter-6391", + "maker": "Maker J", + "model": "Model 6391", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.264153854577586, + 29.8449286023963 + ] + }, + "properties": { + "id": "meter-6392", + "maker": "Maker J", + "model": "Model 6392", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.19999635879939, + 29.87019591663594 + ] + }, + "properties": { + "id": "meter-6393", + "maker": "Maker G", + "model": "Model 6393", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.97404632211999, + 18.297111075335835 + ] + }, + "properties": { + "id": "meter-6394", + "maker": "Maker H", + "model": "Model 6394", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10377958057739, + 26.206490346935112 + ] + }, + "properties": { + "id": "meter-6395", + "maker": "Maker B", + "model": "Model 6395", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.55564985218623, + 18.067531304845428 + ] + }, + "properties": { + "id": "meter-6396", + "maker": "Maker F", + "model": "Model 6396", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.2804292365955, + 29.824283078560335 + ] + }, + "properties": { + "id": "meter-6397", + "maker": "Maker B", + "model": "Model 6397", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.39060336583086, + 24.52500214412787 + ] + }, + "properties": { + "id": "meter-6398", + "maker": "Maker I", + "model": "Model 6398", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.53486548792068, + 28.63161171083225 + ] + }, + "properties": { + "id": "meter-6399", + "maker": "Maker D", + "model": "Model 6399", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.350332108584475, + 18.31771531080445 + ] + }, + "properties": { + "id": "meter-6400", + "maker": "Maker F", + "model": "Model 6400", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.264889315795415, + 30.235971703595947 + ] + }, + "properties": { + "id": "meter-6401", + "maker": "Maker A", + "model": "Model 6401", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81521232309305, + 21.60315288997796 + ] + }, + "properties": { + "id": "meter-6402", + "maker": "Maker E", + "model": "Model 6402", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.304205687925375, + 18.372478570150744 + ] + }, + "properties": { + "id": "meter-6403", + "maker": "Maker F", + "model": "Model 6403", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.96971859416337, + 31.1859806363728 + ] + }, + "properties": { + "id": "meter-6404", + "maker": "Maker C", + "model": "Model 6404", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.039899631303996, + 30.97456860605588 + ] + }, + "properties": { + "id": "meter-6405", + "maker": "Maker A", + "model": "Model 6405", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.747555516708125, + 24.80724009590619 + ] + }, + "properties": { + "id": "meter-6406", + "maker": "Maker H", + "model": "Model 6406", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.933803432013164, + 30.874009970646252 + ] + }, + "properties": { + "id": "meter-6407", + "maker": "Maker G", + "model": "Model 6407", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.068474007045175, + 26.34344543484828 + ] + }, + "properties": { + "id": "meter-6408", + "maker": "Maker E", + "model": "Model 6408", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14315061936411, + 26.427920929466133 + ] + }, + "properties": { + "id": "meter-6409", + "maker": "Maker F", + "model": "Model 6409", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.84864699898816, + 25.3099694764939 + ] + }, + "properties": { + "id": "meter-6410", + "maker": "Maker F", + "model": "Model 6410", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.34983997599103, + 24.420168881254064 + ] + }, + "properties": { + "id": "meter-6411", + "maker": "Maker B", + "model": "Model 6411", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.401290813871505, + 20.05786221380482 + ] + }, + "properties": { + "id": "meter-6412", + "maker": "Maker C", + "model": "Model 6412", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.93460385124153, + 24.34626921220604 + ] + }, + "properties": { + "id": "meter-6413", + "maker": "Maker F", + "model": "Model 6413", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84066041869572, + 24.539816237179522 + ] + }, + "properties": { + "id": "meter-6414", + "maker": "Maker C", + "model": "Model 6414", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.74624199657062, + 24.765449287039367 + ] + }, + "properties": { + "id": "meter-6415", + "maker": "Maker G", + "model": "Model 6415", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.62964096096167, + 24.530118280109722 + ] + }, + "properties": { + "id": "meter-6416", + "maker": "Maker B", + "model": "Model 6416", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.46603727605065, + 25.375300103399493 + ] + }, + "properties": { + "id": "meter-6417", + "maker": "Maker I", + "model": "Model 6417", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.39220483104553, + 18.069516776869637 + ] + }, + "properties": { + "id": "meter-6418", + "maker": "Maker F", + "model": "Model 6418", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87182623176292, + 26.31525303039143 + ] + }, + "properties": { + "id": "meter-6419", + "maker": "Maker A", + "model": "Model 6419", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.9482698088034, + 21.35425683254624 + ] + }, + "properties": { + "id": "meter-6420", + "maker": "Maker J", + "model": "Model 6420", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.16410270073055, + 26.4045921079689 + ] + }, + "properties": { + "id": "meter-6421", + "maker": "Maker E", + "model": "Model 6421", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.822624049319806, + 18.14234946931558 + ] + }, + "properties": { + "id": "meter-6422", + "maker": "Maker C", + "model": "Model 6422", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6010891728138, + 27.53198977337993 + ] + }, + "properties": { + "id": "meter-6423", + "maker": "Maker F", + "model": "Model 6423", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.919726365158496, + 26.234900522268532 + ] + }, + "properties": { + "id": "meter-6424", + "maker": "Maker G", + "model": "Model 6424", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.35634279011539, + 17.599508188181666 + ] + }, + "properties": { + "id": "meter-6425", + "maker": "Maker H", + "model": "Model 6425", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01901046216272, + 26.049620135089878 + ] + }, + "properties": { + "id": "meter-6426", + "maker": "Maker E", + "model": "Model 6426", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.61374244817367, + 25.2146089841775 + ] + }, + "properties": { + "id": "meter-6427", + "maker": "Maker A", + "model": "Model 6427", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.559287085918584, + 24.485039309130876 + ] + }, + "properties": { + "id": "meter-6428", + "maker": "Maker B", + "model": "Model 6428", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.000080617748004, + 24.22109011331975 + ] + }, + "properties": { + "id": "meter-6429", + "maker": "Maker G", + "model": "Model 6429", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77637187680611, + 24.63763645933475 + ] + }, + "properties": { + "id": "meter-6430", + "maker": "Maker H", + "model": "Model 6430", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01836487488845, + 26.51106120802803 + ] + }, + "properties": { + "id": "meter-6431", + "maker": "Maker A", + "model": "Model 6431", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.46759281132427, + 25.232415842460565 + ] + }, + "properties": { + "id": "meter-6432", + "maker": "Maker A", + "model": "Model 6432", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04749188192275, + 17.464229062418973 + ] + }, + "properties": { + "id": "meter-6433", + "maker": "Maker J", + "model": "Model 6433", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.97412934450138, + 21.341708373575123 + ] + }, + "properties": { + "id": "meter-6434", + "maker": "Maker A", + "model": "Model 6434", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71587880477613, + 18.303487474628763 + ] + }, + "properties": { + "id": "meter-6435", + "maker": "Maker F", + "model": "Model 6435", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.66640861354491, + 27.43780994695116 + ] + }, + "properties": { + "id": "meter-6436", + "maker": "Maker D", + "model": "Model 6436", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.30285466865415, + 29.903418569596845 + ] + }, + "properties": { + "id": "meter-6437", + "maker": "Maker C", + "model": "Model 6437", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.048334222278754, + 17.725178153255275 + ] + }, + "properties": { + "id": "meter-6438", + "maker": "Maker J", + "model": "Model 6438", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.963923196925805, + 30.95103117885238 + ] + }, + "properties": { + "id": "meter-6439", + "maker": "Maker C", + "model": "Model 6439", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.42831838516702, + 21.447792391972563 + ] + }, + "properties": { + "id": "meter-6440", + "maker": "Maker C", + "model": "Model 6440", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.295465384513506, + 20.22776509733627 + ] + }, + "properties": { + "id": "meter-6441", + "maker": "Maker I", + "model": "Model 6441", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14240732295288, + 26.40510007827582 + ] + }, + "properties": { + "id": "meter-6442", + "maker": "Maker H", + "model": "Model 6442", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05351300952596, + 24.122750862885077 + ] + }, + "properties": { + "id": "meter-6443", + "maker": "Maker F", + "model": "Model 6443", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.66573333690372, + 27.44052173727322 + ] + }, + "properties": { + "id": "meter-6444", + "maker": "Maker I", + "model": "Model 6444", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.758240830674346, + 28.471329101970436 + ] + }, + "properties": { + "id": "meter-6445", + "maker": "Maker D", + "model": "Model 6445", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.10898989380852, + 30.967128612715936 + ] + }, + "properties": { + "id": "meter-6446", + "maker": "Maker D", + "model": "Model 6446", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62172374383406, + 27.229731541972907 + ] + }, + "properties": { + "id": "meter-6447", + "maker": "Maker H", + "model": "Model 6447", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.564619072493116, + 28.225211698490956 + ] + }, + "properties": { + "id": "meter-6448", + "maker": "Maker A", + "model": "Model 6448", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.34648104342957, + 24.3977003105521 + ] + }, + "properties": { + "id": "meter-6449", + "maker": "Maker I", + "model": "Model 6449", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08752171224462, + 26.44448686677776 + ] + }, + "properties": { + "id": "meter-6450", + "maker": "Maker C", + "model": "Model 6450", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.83678858769048, + 25.41963851726052 + ] + }, + "properties": { + "id": "meter-6451", + "maker": "Maker D", + "model": "Model 6451", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11778910769719, + 17.597761783542722 + ] + }, + "properties": { + "id": "meter-6452", + "maker": "Maker J", + "model": "Model 6452", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.270791045734306, + 18.217391811690618 + ] + }, + "properties": { + "id": "meter-6453", + "maker": "Maker J", + "model": "Model 6453", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.54486726201747, + 18.191810494471696 + ] + }, + "properties": { + "id": "meter-6454", + "maker": "Maker C", + "model": "Model 6454", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.571350924136944, + 25.331508465861283 + ] + }, + "properties": { + "id": "meter-6455", + "maker": "Maker E", + "model": "Model 6455", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.466614095897405, + 18.43601922726693 + ] + }, + "properties": { + "id": "meter-6456", + "maker": "Maker F", + "model": "Model 6456", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.70898865465323, + 24.69222407411145 + ] + }, + "properties": { + "id": "meter-6457", + "maker": "Maker I", + "model": "Model 6457", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02883751585833, + 26.476636692497244 + ] + }, + "properties": { + "id": "meter-6458", + "maker": "Maker C", + "model": "Model 6458", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.40817443476188, + 29.958421042569952 + ] + }, + "properties": { + "id": "meter-6459", + "maker": "Maker E", + "model": "Model 6459", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.87074928393042, + 18.39046532829763 + ] + }, + "properties": { + "id": "meter-6460", + "maker": "Maker A", + "model": "Model 6460", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.29189653546254, + 21.552699009902256 + ] + }, + "properties": { + "id": "meter-6461", + "maker": "Maker G", + "model": "Model 6461", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.01731209441443, + 31.026489174993323 + ] + }, + "properties": { + "id": "meter-6462", + "maker": "Maker H", + "model": "Model 6462", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.73844793802299, + 21.459472949558034 + ] + }, + "properties": { + "id": "meter-6463", + "maker": "Maker G", + "model": "Model 6463", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15797662497463, + 26.27325260522302 + ] + }, + "properties": { + "id": "meter-6464", + "maker": "Maker G", + "model": "Model 6464", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.804945584093325, + 26.58330967079232 + ] + }, + "properties": { + "id": "meter-6465", + "maker": "Maker J", + "model": "Model 6465", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.3700246369743, + 28.255604677753816 + ] + }, + "properties": { + "id": "meter-6466", + "maker": "Maker D", + "model": "Model 6466", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.76933095942027, + 18.28595231579476 + ] + }, + "properties": { + "id": "meter-6467", + "maker": "Maker I", + "model": "Model 6467", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60608806211716, + 24.61928713569148 + ] + }, + "properties": { + "id": "meter-6468", + "maker": "Maker J", + "model": "Model 6468", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68175890513877, + 24.71749077532437 + ] + }, + "properties": { + "id": "meter-6469", + "maker": "Maker F", + "model": "Model 6469", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.26428716006626, + 31.115864166937598 + ] + }, + "properties": { + "id": "meter-6470", + "maker": "Maker G", + "model": "Model 6470", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.75425391587271, + 24.56369698213118 + ] + }, + "properties": { + "id": "meter-6471", + "maker": "Maker F", + "model": "Model 6471", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18116149406984, + 26.25747345785281 + ] + }, + "properties": { + "id": "meter-6472", + "maker": "Maker A", + "model": "Model 6472", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.26608409891229, + 30.95632226715364 + ] + }, + "properties": { + "id": "meter-6473", + "maker": "Maker A", + "model": "Model 6473", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.37770786788326, + 18.415282232370334 + ] + }, + "properties": { + "id": "meter-6474", + "maker": "Maker F", + "model": "Model 6474", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92872940891494, + 26.688414105872145 + ] + }, + "properties": { + "id": "meter-6475", + "maker": "Maker G", + "model": "Model 6475", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.5416277812041, + 25.31395985330451 + ] + }, + "properties": { + "id": "meter-6476", + "maker": "Maker H", + "model": "Model 6476", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.42686227255946, + 18.335647602317895 + ] + }, + "properties": { + "id": "meter-6477", + "maker": "Maker F", + "model": "Model 6477", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96597739721401, + 26.443934209312452 + ] + }, + "properties": { + "id": "meter-6478", + "maker": "Maker C", + "model": "Model 6478", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.65392045527596, + 24.372433563792548 + ] + }, + "properties": { + "id": "meter-6479", + "maker": "Maker E", + "model": "Model 6479", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.30660107318925, + 29.75133814583554 + ] + }, + "properties": { + "id": "meter-6480", + "maker": "Maker A", + "model": "Model 6480", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.943412090194684, + 26.36983158280623 + ] + }, + "properties": { + "id": "meter-6481", + "maker": "Maker I", + "model": "Model 6481", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.305098009407814, + 21.429653883222798 + ] + }, + "properties": { + "id": "meter-6482", + "maker": "Maker J", + "model": "Model 6482", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85600602244507, + 21.3623747093869 + ] + }, + "properties": { + "id": "meter-6483", + "maker": "Maker J", + "model": "Model 6483", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.70734833150241, + 18.351985686387874 + ] + }, + "properties": { + "id": "meter-6484", + "maker": "Maker H", + "model": "Model 6484", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.785887467551966, + 18.080140791537286 + ] + }, + "properties": { + "id": "meter-6485", + "maker": "Maker G", + "model": "Model 6485", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.64451480058759, + 24.54185770949253 + ] + }, + "properties": { + "id": "meter-6486", + "maker": "Maker J", + "model": "Model 6486", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72455879527165, + 18.182610264076473 + ] + }, + "properties": { + "id": "meter-6487", + "maker": "Maker B", + "model": "Model 6487", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.20536163980078, + 17.417624954115276 + ] + }, + "properties": { + "id": "meter-6488", + "maker": "Maker H", + "model": "Model 6488", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9707936357509, + 26.68837116479373 + ] + }, + "properties": { + "id": "meter-6489", + "maker": "Maker G", + "model": "Model 6489", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.320578362707806, + 28.338737807826977 + ] + }, + "properties": { + "id": "meter-6490", + "maker": "Maker J", + "model": "Model 6490", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.066062964600185, + 26.415615816618942 + ] + }, + "properties": { + "id": "meter-6491", + "maker": "Maker A", + "model": "Model 6491", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02038637627539, + 26.28292339586283 + ] + }, + "properties": { + "id": "meter-6492", + "maker": "Maker B", + "model": "Model 6492", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.44674497017435, + 27.6681292113182 + ] + }, + "properties": { + "id": "meter-6493", + "maker": "Maker J", + "model": "Model 6493", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.620088485823096, + 24.520527834829338 + ] + }, + "properties": { + "id": "meter-6494", + "maker": "Maker D", + "model": "Model 6494", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.56137598654629, + 28.206368040823385 + ] + }, + "properties": { + "id": "meter-6495", + "maker": "Maker G", + "model": "Model 6495", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.33106272881064, + 21.657925790214797 + ] + }, + "properties": { + "id": "meter-6496", + "maker": "Maker A", + "model": "Model 6496", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.082823774197635, + 24.155827271979053 + ] + }, + "properties": { + "id": "meter-6497", + "maker": "Maker B", + "model": "Model 6497", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.043676164925984, + 26.272582129995143 + ] + }, + "properties": { + "id": "meter-6498", + "maker": "Maker J", + "model": "Model 6498", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.064002305487335, + 30.964303782819492 + ] + }, + "properties": { + "id": "meter-6499", + "maker": "Maker H", + "model": "Model 6499", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.68411910388369, + 24.561356446046997 + ] + }, + "properties": { + "id": "meter-6500", + "maker": "Maker J", + "model": "Model 6500", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.56054044853143, + 24.664982118409586 + ] + }, + "properties": { + "id": "meter-6501", + "maker": "Maker B", + "model": "Model 6501", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02900783940059, + 26.24256164942205 + ] + }, + "properties": { + "id": "meter-6502", + "maker": "Maker G", + "model": "Model 6502", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.089087572236146, + 24.076324613144042 + ] + }, + "properties": { + "id": "meter-6503", + "maker": "Maker G", + "model": "Model 6503", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10961755432853, + 17.524656200903213 + ] + }, + "properties": { + "id": "meter-6504", + "maker": "Maker H", + "model": "Model 6504", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.90919840201816, + 21.475508208550107 + ] + }, + "properties": { + "id": "meter-6505", + "maker": "Maker A", + "model": "Model 6505", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.69801689214012, + 24.76960361899704 + ] + }, + "properties": { + "id": "meter-6506", + "maker": "Maker J", + "model": "Model 6506", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.97532019096118, + 24.135329487743636 + ] + }, + "properties": { + "id": "meter-6507", + "maker": "Maker B", + "model": "Model 6507", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46754180771381, + 19.955436850528653 + ] + }, + "properties": { + "id": "meter-6508", + "maker": "Maker C", + "model": "Model 6508", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.536192735625846, + 25.362147015710594 + ] + }, + "properties": { + "id": "meter-6509", + "maker": "Maker H", + "model": "Model 6509", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.58474685011976, + 24.759992812223764 + ] + }, + "properties": { + "id": "meter-6510", + "maker": "Maker J", + "model": "Model 6510", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93648688501824, + 26.681612621828855 + ] + }, + "properties": { + "id": "meter-6511", + "maker": "Maker G", + "model": "Model 6511", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.589240854814676, + 25.267535437464485 + ] + }, + "properties": { + "id": "meter-6512", + "maker": "Maker H", + "model": "Model 6512", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.82508501594673, + 31.151763347760408 + ] + }, + "properties": { + "id": "meter-6513", + "maker": "Maker A", + "model": "Model 6513", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.97842000321475, + 27.529462020050936 + ] + }, + "properties": { + "id": "meter-6514", + "maker": "Maker I", + "model": "Model 6514", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.810542381983126, + 26.337865850994703 + ] + }, + "properties": { + "id": "meter-6515", + "maker": "Maker B", + "model": "Model 6515", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.262299518508016, + 24.10627977313995 + ] + }, + "properties": { + "id": "meter-6516", + "maker": "Maker J", + "model": "Model 6516", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.632088871132055, + 17.96687620956492 + ] + }, + "properties": { + "id": "meter-6517", + "maker": "Maker A", + "model": "Model 6517", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.983253032410346, + 26.34620672749663 + ] + }, + "properties": { + "id": "meter-6518", + "maker": "Maker F", + "model": "Model 6518", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.43293348856068, + 18.257364187605788 + ] + }, + "properties": { + "id": "meter-6519", + "maker": "Maker E", + "model": "Model 6519", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59335346729007, + 25.42227499422004 + ] + }, + "properties": { + "id": "meter-6520", + "maker": "Maker H", + "model": "Model 6520", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.98224601572066, + 24.260047576547414 + ] + }, + "properties": { + "id": "meter-6521", + "maker": "Maker G", + "model": "Model 6521", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.577664155063665, + 28.41598842168324 + ] + }, + "properties": { + "id": "meter-6522", + "maker": "Maker F", + "model": "Model 6522", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.80533427054088, + 25.19745303645343 + ] + }, + "properties": { + "id": "meter-6523", + "maker": "Maker D", + "model": "Model 6523", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.96763069890718, + 21.126665625217672 + ] + }, + "properties": { + "id": "meter-6524", + "maker": "Maker C", + "model": "Model 6524", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.974699709320554, + 24.350626639555813 + ] + }, + "properties": { + "id": "meter-6525", + "maker": "Maker E", + "model": "Model 6525", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.7669759889006, + 27.368904070297106 + ] + }, + "properties": { + "id": "meter-6526", + "maker": "Maker E", + "model": "Model 6526", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.99089530556193, + 24.18532986969896 + ] + }, + "properties": { + "id": "meter-6527", + "maker": "Maker A", + "model": "Model 6527", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.457686043194734, + 21.340729040891915 + ] + }, + "properties": { + "id": "meter-6528", + "maker": "Maker I", + "model": "Model 6528", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.82192737273175, + 21.124000139139778 + ] + }, + "properties": { + "id": "meter-6529", + "maker": "Maker H", + "model": "Model 6529", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.40895098532332, + 28.630381771731635 + ] + }, + "properties": { + "id": "meter-6530", + "maker": "Maker J", + "model": "Model 6530", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07673811846169, + 24.29649392434814 + ] + }, + "properties": { + "id": "meter-6531", + "maker": "Maker E", + "model": "Model 6531", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.40032395190506, + 21.24204857481387 + ] + }, + "properties": { + "id": "meter-6532", + "maker": "Maker I", + "model": "Model 6532", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.153441661490554, + 21.538131271065087 + ] + }, + "properties": { + "id": "meter-6533", + "maker": "Maker H", + "model": "Model 6533", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.558836200125654, + 17.961967106483137 + ] + }, + "properties": { + "id": "meter-6534", + "maker": "Maker E", + "model": "Model 6534", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94353789736067, + 26.41628499910892 + ] + }, + "properties": { + "id": "meter-6535", + "maker": "Maker G", + "model": "Model 6535", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.652568312453695, + 20.138497770860752 + ] + }, + "properties": { + "id": "meter-6536", + "maker": "Maker H", + "model": "Model 6536", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69542304529044, + 27.565503778083485 + ] + }, + "properties": { + "id": "meter-6537", + "maker": "Maker I", + "model": "Model 6537", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.7183659675704, + 19.929305970821652 + ] + }, + "properties": { + "id": "meter-6538", + "maker": "Maker E", + "model": "Model 6538", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.28837939959231, + 30.164801030311203 + ] + }, + "properties": { + "id": "meter-6539", + "maker": "Maker G", + "model": "Model 6539", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6193726357287, + 27.239401260281937 + ] + }, + "properties": { + "id": "meter-6540", + "maker": "Maker F", + "model": "Model 6540", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.48004085719499, + 24.53940007705474 + ] + }, + "properties": { + "id": "meter-6541", + "maker": "Maker F", + "model": "Model 6541", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.698822983783984, + 21.5612638917767 + ] + }, + "properties": { + "id": "meter-6542", + "maker": "Maker F", + "model": "Model 6542", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.20463326536967, + 26.43882009358052 + ] + }, + "properties": { + "id": "meter-6543", + "maker": "Maker J", + "model": "Model 6543", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.4472610985816, + 24.339660954773148 + ] + }, + "properties": { + "id": "meter-6544", + "maker": "Maker B", + "model": "Model 6544", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.5272391122687, + 24.799613036335312 + ] + }, + "properties": { + "id": "meter-6545", + "maker": "Maker C", + "model": "Model 6545", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.210429077468184, + 24.011105667336082 + ] + }, + "properties": { + "id": "meter-6546", + "maker": "Maker A", + "model": "Model 6546", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.88319015638592, + 18.095906749380465 + ] + }, + "properties": { + "id": "meter-6547", + "maker": "Maker A", + "model": "Model 6547", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.43137613218187, + 18.145869921781863 + ] + }, + "properties": { + "id": "meter-6548", + "maker": "Maker G", + "model": "Model 6548", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.543558513041305, + 25.389015773583967 + ] + }, + "properties": { + "id": "meter-6549", + "maker": "Maker D", + "model": "Model 6549", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.036202343517516, + 26.496448023970764 + ] + }, + "properties": { + "id": "meter-6550", + "maker": "Maker J", + "model": "Model 6550", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21018568689163, + 26.29076295951343 + ] + }, + "properties": { + "id": "meter-6551", + "maker": "Maker A", + "model": "Model 6551", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.116841582365865, + 17.524147595501955 + ] + }, + "properties": { + "id": "meter-6552", + "maker": "Maker A", + "model": "Model 6552", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.90180663488974, + 26.525108716693556 + ] + }, + "properties": { + "id": "meter-6553", + "maker": "Maker A", + "model": "Model 6553", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.52970662815978, + 25.288858360034617 + ] + }, + "properties": { + "id": "meter-6554", + "maker": "Maker J", + "model": "Model 6554", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.030545852277726, + 24.122480938878322 + ] + }, + "properties": { + "id": "meter-6555", + "maker": "Maker G", + "model": "Model 6555", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23009517541182, + 21.35522630618884 + ] + }, + "properties": { + "id": "meter-6556", + "maker": "Maker A", + "model": "Model 6556", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20706984508271, + 26.307199257877258 + ] + }, + "properties": { + "id": "meter-6557", + "maker": "Maker H", + "model": "Model 6557", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.22222468739673, + 29.966310580348424 + ] + }, + "properties": { + "id": "meter-6558", + "maker": "Maker J", + "model": "Model 6558", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.37406351177396, + 21.35946004884369 + ] + }, + "properties": { + "id": "meter-6559", + "maker": "Maker F", + "model": "Model 6559", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96960347755995, + 26.30195569480089 + ] + }, + "properties": { + "id": "meter-6560", + "maker": "Maker A", + "model": "Model 6560", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.587885507034414, + 25.488475457576765 + ] + }, + "properties": { + "id": "meter-6561", + "maker": "Maker I", + "model": "Model 6561", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.11777146197799, + 31.05774534128909 + ] + }, + "properties": { + "id": "meter-6562", + "maker": "Maker H", + "model": "Model 6562", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2326684369343, + 21.493374510179695 + ] + }, + "properties": { + "id": "meter-6563", + "maker": "Maker G", + "model": "Model 6563", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.27734430725881, + 24.079649614139868 + ] + }, + "properties": { + "id": "meter-6564", + "maker": "Maker F", + "model": "Model 6564", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.56119619534918, + 24.441667828156792 + ] + }, + "properties": { + "id": "meter-6565", + "maker": "Maker J", + "model": "Model 6565", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.437738525895256, + 25.477716569957973 + ] + }, + "properties": { + "id": "meter-6566", + "maker": "Maker G", + "model": "Model 6566", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.768828747076675, + 21.29667047003158 + ] + }, + "properties": { + "id": "meter-6567", + "maker": "Maker E", + "model": "Model 6567", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.53866944976044, + 27.621976868088485 + ] + }, + "properties": { + "id": "meter-6568", + "maker": "Maker B", + "model": "Model 6568", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.745588656072485, + 24.48142365459911 + ] + }, + "properties": { + "id": "meter-6569", + "maker": "Maker A", + "model": "Model 6569", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.521932765170625, + 25.480477061858256 + ] + }, + "properties": { + "id": "meter-6570", + "maker": "Maker H", + "model": "Model 6570", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63603192762042, + 21.54760444758898 + ] + }, + "properties": { + "id": "meter-6571", + "maker": "Maker B", + "model": "Model 6571", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02185394409021, + 17.431200299416034 + ] + }, + "properties": { + "id": "meter-6572", + "maker": "Maker A", + "model": "Model 6572", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.550098581387196, + 20.12249293759624 + ] + }, + "properties": { + "id": "meter-6573", + "maker": "Maker I", + "model": "Model 6573", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61250192987954, + 24.532051115956406 + ] + }, + "properties": { + "id": "meter-6574", + "maker": "Maker F", + "model": "Model 6574", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.51180566158597, + 21.443794852032877 + ] + }, + "properties": { + "id": "meter-6575", + "maker": "Maker H", + "model": "Model 6575", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.104554789476715, + 17.367753707282354 + ] + }, + "properties": { + "id": "meter-6576", + "maker": "Maker C", + "model": "Model 6576", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23926250809334, + 21.429524730061452 + ] + }, + "properties": { + "id": "meter-6577", + "maker": "Maker A", + "model": "Model 6577", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21359457737024, + 21.40024099692318 + ] + }, + "properties": { + "id": "meter-6578", + "maker": "Maker A", + "model": "Model 6578", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.122833252864915, + 17.495041281717274 + ] + }, + "properties": { + "id": "meter-6579", + "maker": "Maker A", + "model": "Model 6579", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.681023267106646, + 25.49750460278798 + ] + }, + "properties": { + "id": "meter-6580", + "maker": "Maker A", + "model": "Model 6580", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65539676011773, + 24.824822578593768 + ] + }, + "properties": { + "id": "meter-6581", + "maker": "Maker F", + "model": "Model 6581", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.95335329932946, + 27.410738902927406 + ] + }, + "properties": { + "id": "meter-6582", + "maker": "Maker F", + "model": "Model 6582", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.193081061129206, + 29.950833560764142 + ] + }, + "properties": { + "id": "meter-6583", + "maker": "Maker H", + "model": "Model 6583", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.25173300433209, + 19.91227342372894 + ] + }, + "properties": { + "id": "meter-6584", + "maker": "Maker D", + "model": "Model 6584", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.71146794959034, + 24.67240399828679 + ] + }, + "properties": { + "id": "meter-6585", + "maker": "Maker D", + "model": "Model 6585", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.087946549678286, + 26.41714663596343 + ] + }, + "properties": { + "id": "meter-6586", + "maker": "Maker B", + "model": "Model 6586", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.3840308557759, + 24.457039454886623 + ] + }, + "properties": { + "id": "meter-6587", + "maker": "Maker B", + "model": "Model 6587", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.47495560741487, + 25.238049616942867 + ] + }, + "properties": { + "id": "meter-6588", + "maker": "Maker D", + "model": "Model 6588", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69432159495441, + 18.24875412042055 + ] + }, + "properties": { + "id": "meter-6589", + "maker": "Maker D", + "model": "Model 6589", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2961548124311, + 21.74268898612377 + ] + }, + "properties": { + "id": "meter-6590", + "maker": "Maker I", + "model": "Model 6590", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.82350410757855, + 25.33408995699328 + ] + }, + "properties": { + "id": "meter-6591", + "maker": "Maker B", + "model": "Model 6591", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63783892162819, + 24.28587653907865 + ] + }, + "properties": { + "id": "meter-6592", + "maker": "Maker B", + "model": "Model 6592", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.24090459347858, + 26.238863429560503 + ] + }, + "properties": { + "id": "meter-6593", + "maker": "Maker D", + "model": "Model 6593", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00062983288123, + 26.259697696397268 + ] + }, + "properties": { + "id": "meter-6594", + "maker": "Maker B", + "model": "Model 6594", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.519354108914975, + 28.22592323859379 + ] + }, + "properties": { + "id": "meter-6595", + "maker": "Maker I", + "model": "Model 6595", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.46031175009489, + 28.28026619320499 + ] + }, + "properties": { + "id": "meter-6596", + "maker": "Maker J", + "model": "Model 6596", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.967487499517276, + 21.471025330786546 + ] + }, + "properties": { + "id": "meter-6597", + "maker": "Maker J", + "model": "Model 6597", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.507661307201325, + 28.277223432264883 + ] + }, + "properties": { + "id": "meter-6598", + "maker": "Maker C", + "model": "Model 6598", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53390087167161, + 18.127577792063065 + ] + }, + "properties": { + "id": "meter-6599", + "maker": "Maker B", + "model": "Model 6599", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.5959092880545, + 20.276273861150006 + ] + }, + "properties": { + "id": "meter-6600", + "maker": "Maker C", + "model": "Model 6600", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20987592782184, + 29.97744672366824 + ] + }, + "properties": { + "id": "meter-6601", + "maker": "Maker C", + "model": "Model 6601", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.149879729690085, + 21.627186006696952 + ] + }, + "properties": { + "id": "meter-6602", + "maker": "Maker F", + "model": "Model 6602", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.75308925043025, + 24.71700530050335 + ] + }, + "properties": { + "id": "meter-6603", + "maker": "Maker F", + "model": "Model 6603", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.51554038775963, + 25.362500271597785 + ] + }, + "properties": { + "id": "meter-6604", + "maker": "Maker D", + "model": "Model 6604", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.82063851222188, + 26.533579687745952 + ] + }, + "properties": { + "id": "meter-6605", + "maker": "Maker A", + "model": "Model 6605", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.74711925844973, + 18.32185080367861 + ] + }, + "properties": { + "id": "meter-6606", + "maker": "Maker J", + "model": "Model 6606", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.093657901705676, + 30.019337219253803 + ] + }, + "properties": { + "id": "meter-6607", + "maker": "Maker I", + "model": "Model 6607", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.35196355587457, + 25.296543193664743 + ] + }, + "properties": { + "id": "meter-6608", + "maker": "Maker F", + "model": "Model 6608", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.952463177548864, + 27.442304025757036 + ] + }, + "properties": { + "id": "meter-6609", + "maker": "Maker I", + "model": "Model 6609", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.919423226531514, + 26.327947699548172 + ] + }, + "properties": { + "id": "meter-6610", + "maker": "Maker C", + "model": "Model 6610", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.45075436157873, + 30.11589677240813 + ] + }, + "properties": { + "id": "meter-6611", + "maker": "Maker F", + "model": "Model 6611", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59863212168771, + 25.329875099917317 + ] + }, + "properties": { + "id": "meter-6612", + "maker": "Maker F", + "model": "Model 6612", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67676038925885, + 27.35663975304576 + ] + }, + "properties": { + "id": "meter-6613", + "maker": "Maker A", + "model": "Model 6613", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.083848343188926, + 24.11339888755437 + ] + }, + "properties": { + "id": "meter-6614", + "maker": "Maker E", + "model": "Model 6614", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.978261146161614, + 26.402981672350982 + ] + }, + "properties": { + "id": "meter-6615", + "maker": "Maker C", + "model": "Model 6615", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.682393367932136, + 19.894808780921792 + ] + }, + "properties": { + "id": "meter-6616", + "maker": "Maker F", + "model": "Model 6616", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.859417337980034, + 26.27306148558366 + ] + }, + "properties": { + "id": "meter-6617", + "maker": "Maker G", + "model": "Model 6617", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01162398195112, + 26.275032124364984 + ] + }, + "properties": { + "id": "meter-6618", + "maker": "Maker C", + "model": "Model 6618", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.032090830839515, + 17.506984992875726 + ] + }, + "properties": { + "id": "meter-6619", + "maker": "Maker D", + "model": "Model 6619", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.34164700020859, + 21.40494644637327 + ] + }, + "properties": { + "id": "meter-6620", + "maker": "Maker H", + "model": "Model 6620", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.93596506663605, + 30.07034310633433 + ] + }, + "properties": { + "id": "meter-6621", + "maker": "Maker I", + "model": "Model 6621", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.340945141631714, + 18.26194146094497 + ] + }, + "properties": { + "id": "meter-6622", + "maker": "Maker D", + "model": "Model 6622", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01319365615855, + 26.363748376266685 + ] + }, + "properties": { + "id": "meter-6623", + "maker": "Maker F", + "model": "Model 6623", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01167277828979, + 26.50028897275284 + ] + }, + "properties": { + "id": "meter-6624", + "maker": "Maker E", + "model": "Model 6624", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61916628142225, + 24.507546733352758 + ] + }, + "properties": { + "id": "meter-6625", + "maker": "Maker G", + "model": "Model 6625", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.32190112845728, + 29.719485778155125 + ] + }, + "properties": { + "id": "meter-6626", + "maker": "Maker B", + "model": "Model 6626", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.35076859844509, + 28.26099199910238 + ] + }, + "properties": { + "id": "meter-6627", + "maker": "Maker G", + "model": "Model 6627", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.02166700625322, + 30.932204754973146 + ] + }, + "properties": { + "id": "meter-6628", + "maker": "Maker I", + "model": "Model 6628", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.9415006996703, + 24.709841118272 + ] + }, + "properties": { + "id": "meter-6629", + "maker": "Maker I", + "model": "Model 6629", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.04842073991699, + 21.482804681292706 + ] + }, + "properties": { + "id": "meter-6630", + "maker": "Maker E", + "model": "Model 6630", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.73278874237497, + 19.87817584492958 + ] + }, + "properties": { + "id": "meter-6631", + "maker": "Maker C", + "model": "Model 6631", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.636633186921784, + 20.220411996168878 + ] + }, + "properties": { + "id": "meter-6632", + "maker": "Maker G", + "model": "Model 6632", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.206658221095644, + 17.432379505254175 + ] + }, + "properties": { + "id": "meter-6633", + "maker": "Maker E", + "model": "Model 6633", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.960079706490085, + 30.973970520013072 + ] + }, + "properties": { + "id": "meter-6634", + "maker": "Maker F", + "model": "Model 6634", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.512837120116934, + 19.98070632986931 + ] + }, + "properties": { + "id": "meter-6635", + "maker": "Maker J", + "model": "Model 6635", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0135241161529, + 26.511847037447218 + ] + }, + "properties": { + "id": "meter-6636", + "maker": "Maker C", + "model": "Model 6636", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.62124261192311, + 24.62393529151904 + ] + }, + "properties": { + "id": "meter-6637", + "maker": "Maker D", + "model": "Model 6637", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.8121020469742, + 18.17156769810611 + ] + }, + "properties": { + "id": "meter-6638", + "maker": "Maker G", + "model": "Model 6638", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.011233808743455, + 29.744709673513242 + ] + }, + "properties": { + "id": "meter-6639", + "maker": "Maker A", + "model": "Model 6639", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.89243298907108, + 26.471468902645377 + ] + }, + "properties": { + "id": "meter-6640", + "maker": "Maker A", + "model": "Model 6640", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.48809523027702, + 28.26064041016127 + ] + }, + "properties": { + "id": "meter-6641", + "maker": "Maker E", + "model": "Model 6641", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48384556502439, + 20.038203204538174 + ] + }, + "properties": { + "id": "meter-6642", + "maker": "Maker A", + "model": "Model 6642", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.005315590115245, + 24.115578377835615 + ] + }, + "properties": { + "id": "meter-6643", + "maker": "Maker B", + "model": "Model 6643", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.537862707240066, + 25.464409076836052 + ] + }, + "properties": { + "id": "meter-6644", + "maker": "Maker A", + "model": "Model 6644", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.74454736781409, + 21.461897286880042 + ] + }, + "properties": { + "id": "meter-6645", + "maker": "Maker H", + "model": "Model 6645", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01000968522547, + 26.529778509332015 + ] + }, + "properties": { + "id": "meter-6646", + "maker": "Maker H", + "model": "Model 6646", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.144273529376655, + 17.415953016169414 + ] + }, + "properties": { + "id": "meter-6647", + "maker": "Maker A", + "model": "Model 6647", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65340866453495, + 24.49737902737854 + ] + }, + "properties": { + "id": "meter-6648", + "maker": "Maker D", + "model": "Model 6648", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.944079248167014, + 17.36202641583678 + ] + }, + "properties": { + "id": "meter-6649", + "maker": "Maker H", + "model": "Model 6649", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.49909767304735, + 25.47847186283349 + ] + }, + "properties": { + "id": "meter-6650", + "maker": "Maker I", + "model": "Model 6650", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00477098478788, + 26.505586312660455 + ] + }, + "properties": { + "id": "meter-6651", + "maker": "Maker F", + "model": "Model 6651", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.73772546797, + 25.422981938063124 + ] + }, + "properties": { + "id": "meter-6652", + "maker": "Maker F", + "model": "Model 6652", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21374305208085, + 21.498746508705747 + ] + }, + "properties": { + "id": "meter-6653", + "maker": "Maker E", + "model": "Model 6653", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.100823440282696, + 31.0758530580311 + ] + }, + "properties": { + "id": "meter-6654", + "maker": "Maker I", + "model": "Model 6654", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.57599153378461, + 18.252331068781178 + ] + }, + "properties": { + "id": "meter-6655", + "maker": "Maker D", + "model": "Model 6655", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.06876826700547, + 29.954414381574583 + ] + }, + "properties": { + "id": "meter-6656", + "maker": "Maker D", + "model": "Model 6656", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.63336868144795, + 25.291620921400348 + ] + }, + "properties": { + "id": "meter-6657", + "maker": "Maker A", + "model": "Model 6657", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.58988820305498, + 28.46089680813229 + ] + }, + "properties": { + "id": "meter-6658", + "maker": "Maker C", + "model": "Model 6658", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04137002628598, + 17.367648483367685 + ] + }, + "properties": { + "id": "meter-6659", + "maker": "Maker H", + "model": "Model 6659", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.99374199784821, + 24.14214116147881 + ] + }, + "properties": { + "id": "meter-6660", + "maker": "Maker F", + "model": "Model 6660", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0740018701307, + 26.359757279376435 + ] + }, + "properties": { + "id": "meter-6661", + "maker": "Maker J", + "model": "Model 6661", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.615217795998255, + 24.531925130706583 + ] + }, + "properties": { + "id": "meter-6662", + "maker": "Maker B", + "model": "Model 6662", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.4728975651142, + 28.443022144175785 + ] + }, + "properties": { + "id": "meter-6663", + "maker": "Maker I", + "model": "Model 6663", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.830872090333955, + 18.094133623447153 + ] + }, + "properties": { + "id": "meter-6664", + "maker": "Maker D", + "model": "Model 6664", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.64369248275096, + 27.527791146286763 + ] + }, + "properties": { + "id": "meter-6665", + "maker": "Maker H", + "model": "Model 6665", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.66886539587478, + 28.49108875276878 + ] + }, + "properties": { + "id": "meter-6666", + "maker": "Maker A", + "model": "Model 6666", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45715912932038, + 18.323432396167597 + ] + }, + "properties": { + "id": "meter-6667", + "maker": "Maker A", + "model": "Model 6667", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.706727258581466, + 21.318356150134434 + ] + }, + "properties": { + "id": "meter-6668", + "maker": "Maker J", + "model": "Model 6668", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.17935988699452, + 29.94854614479172 + ] + }, + "properties": { + "id": "meter-6669", + "maker": "Maker A", + "model": "Model 6669", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.29061779087494, + 24.042936449437466 + ] + }, + "properties": { + "id": "meter-6670", + "maker": "Maker A", + "model": "Model 6670", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.02204089882731, + 30.95765392711045 + ] + }, + "properties": { + "id": "meter-6671", + "maker": "Maker C", + "model": "Model 6671", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.598343444861925, + 24.65794920888286 + ] + }, + "properties": { + "id": "meter-6672", + "maker": "Maker E", + "model": "Model 6672", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.25304813751595, + 20.1298003844283 + ] + }, + "properties": { + "id": "meter-6673", + "maker": "Maker F", + "model": "Model 6673", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.75611547700152, + 24.607513173463918 + ] + }, + "properties": { + "id": "meter-6674", + "maker": "Maker E", + "model": "Model 6674", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.64281717270792, + 24.267126160059853 + ] + }, + "properties": { + "id": "meter-6675", + "maker": "Maker E", + "model": "Model 6675", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.6544954914007, + 28.323066298627133 + ] + }, + "properties": { + "id": "meter-6676", + "maker": "Maker G", + "model": "Model 6676", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24816044860329, + 21.416332604941 + ] + }, + "properties": { + "id": "meter-6677", + "maker": "Maker E", + "model": "Model 6677", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.672376923586235, + 20.203097195894912 + ] + }, + "properties": { + "id": "meter-6678", + "maker": "Maker C", + "model": "Model 6678", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.966430380350694, + 26.250512673511533 + ] + }, + "properties": { + "id": "meter-6679", + "maker": "Maker I", + "model": "Model 6679", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07567085765967, + 26.38070452318655 + ] + }, + "properties": { + "id": "meter-6680", + "maker": "Maker I", + "model": "Model 6680", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.73482213335924, + 21.420888694858377 + ] + }, + "properties": { + "id": "meter-6681", + "maker": "Maker D", + "model": "Model 6681", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02459301659282, + 26.21871814627191 + ] + }, + "properties": { + "id": "meter-6682", + "maker": "Maker F", + "model": "Model 6682", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.76253861118442, + 24.695837828384526 + ] + }, + "properties": { + "id": "meter-6683", + "maker": "Maker G", + "model": "Model 6683", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.613236302605266, + 24.847430040818914 + ] + }, + "properties": { + "id": "meter-6684", + "maker": "Maker G", + "model": "Model 6684", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19933231126835, + 26.28440858485721 + ] + }, + "properties": { + "id": "meter-6685", + "maker": "Maker E", + "model": "Model 6685", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.258890326312304, + 29.844063389603505 + ] + }, + "properties": { + "id": "meter-6686", + "maker": "Maker D", + "model": "Model 6686", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.101203569427106, + 29.972687007287217 + ] + }, + "properties": { + "id": "meter-6687", + "maker": "Maker A", + "model": "Model 6687", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1059240005962, + 26.510508813821232 + ] + }, + "properties": { + "id": "meter-6688", + "maker": "Maker D", + "model": "Model 6688", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.33409580499114, + 24.542104593494766 + ] + }, + "properties": { + "id": "meter-6689", + "maker": "Maker F", + "model": "Model 6689", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09509298241094, + 17.518799607633756 + ] + }, + "properties": { + "id": "meter-6690", + "maker": "Maker E", + "model": "Model 6690", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6730876377301, + 27.5176615626422 + ] + }, + "properties": { + "id": "meter-6691", + "maker": "Maker A", + "model": "Model 6691", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.95189359331358, + 21.438502118749664 + ] + }, + "properties": { + "id": "meter-6692", + "maker": "Maker B", + "model": "Model 6692", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.05637609543642, + 30.047230124985074 + ] + }, + "properties": { + "id": "meter-6693", + "maker": "Maker G", + "model": "Model 6693", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.7951566263162, + 28.604174624606003 + ] + }, + "properties": { + "id": "meter-6694", + "maker": "Maker E", + "model": "Model 6694", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68881014418367, + 18.410395245400057 + ] + }, + "properties": { + "id": "meter-6695", + "maker": "Maker F", + "model": "Model 6695", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.05525967779364, + 30.097611263890467 + ] + }, + "properties": { + "id": "meter-6696", + "maker": "Maker C", + "model": "Model 6696", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00045035189495, + 26.519953774849437 + ] + }, + "properties": { + "id": "meter-6697", + "maker": "Maker J", + "model": "Model 6697", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.59455907549094, + 24.564208344383545 + ] + }, + "properties": { + "id": "meter-6698", + "maker": "Maker D", + "model": "Model 6698", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.20547253284937, + 30.912308878946895 + ] + }, + "properties": { + "id": "meter-6699", + "maker": "Maker H", + "model": "Model 6699", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.940635045815036, + 17.322032731877147 + ] + }, + "properties": { + "id": "meter-6700", + "maker": "Maker I", + "model": "Model 6700", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21200020114798, + 21.51106613010362 + ] + }, + "properties": { + "id": "meter-6701", + "maker": "Maker E", + "model": "Model 6701", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85179947276328, + 24.427458175179233 + ] + }, + "properties": { + "id": "meter-6702", + "maker": "Maker J", + "model": "Model 6702", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.42003892227074, + 25.424762484104836 + ] + }, + "properties": { + "id": "meter-6703", + "maker": "Maker I", + "model": "Model 6703", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.42734793172133, + 24.408532354856508 + ] + }, + "properties": { + "id": "meter-6704", + "maker": "Maker J", + "model": "Model 6704", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.06859969510532, + 26.194646443667988 + ] + }, + "properties": { + "id": "meter-6705", + "maker": "Maker H", + "model": "Model 6705", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87111664600591, + 26.44579875241432 + ] + }, + "properties": { + "id": "meter-6706", + "maker": "Maker I", + "model": "Model 6706", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.961566084242406, + 26.330064249957296 + ] + }, + "properties": { + "id": "meter-6707", + "maker": "Maker A", + "model": "Model 6707", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13206040300907, + 17.542724140880022 + ] + }, + "properties": { + "id": "meter-6708", + "maker": "Maker H", + "model": "Model 6708", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12377189056848, + 17.48200891095197 + ] + }, + "properties": { + "id": "meter-6709", + "maker": "Maker E", + "model": "Model 6709", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.0323373803576, + 31.21758862640723 + ] + }, + "properties": { + "id": "meter-6710", + "maker": "Maker J", + "model": "Model 6710", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08196857060202, + 26.39297789601649 + ] + }, + "properties": { + "id": "meter-6711", + "maker": "Maker J", + "model": "Model 6711", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.09394040664459, + 21.67910442875535 + ] + }, + "properties": { + "id": "meter-6712", + "maker": "Maker F", + "model": "Model 6712", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.48611014328678, + 24.72404778783079 + ] + }, + "properties": { + "id": "meter-6713", + "maker": "Maker A", + "model": "Model 6713", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65696283540295, + 27.502019682061114 + ] + }, + "properties": { + "id": "meter-6714", + "maker": "Maker J", + "model": "Model 6714", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54429058624049, + 25.372022756906308 + ] + }, + "properties": { + "id": "meter-6715", + "maker": "Maker A", + "model": "Model 6715", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.205258723298634, + 17.469806641180753 + ] + }, + "properties": { + "id": "meter-6716", + "maker": "Maker F", + "model": "Model 6716", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.984712222478755, + 26.492747226517558 + ] + }, + "properties": { + "id": "meter-6717", + "maker": "Maker H", + "model": "Model 6717", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21736693753008, + 30.022173438363623 + ] + }, + "properties": { + "id": "meter-6718", + "maker": "Maker B", + "model": "Model 6718", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.40685596740648, + 20.202719924020176 + ] + }, + "properties": { + "id": "meter-6719", + "maker": "Maker C", + "model": "Model 6719", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85412786290924, + 21.391929610930358 + ] + }, + "properties": { + "id": "meter-6720", + "maker": "Maker C", + "model": "Model 6720", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.1049966261325, + 24.10228911257791 + ] + }, + "properties": { + "id": "meter-6721", + "maker": "Maker A", + "model": "Model 6721", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.726639903448074, + 24.438618948231618 + ] + }, + "properties": { + "id": "meter-6722", + "maker": "Maker B", + "model": "Model 6722", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.71607885969957, + 27.684903657377404 + ] + }, + "properties": { + "id": "meter-6723", + "maker": "Maker E", + "model": "Model 6723", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.15157972879993, + 31.062019631687686 + ] + }, + "properties": { + "id": "meter-6724", + "maker": "Maker G", + "model": "Model 6724", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.57376267446753, + 18.243731820933643 + ] + }, + "properties": { + "id": "meter-6725", + "maker": "Maker G", + "model": "Model 6725", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.604047280920675, + 21.31910488859558 + ] + }, + "properties": { + "id": "meter-6726", + "maker": "Maker D", + "model": "Model 6726", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.15254687963766, + 21.284112897488516 + ] + }, + "properties": { + "id": "meter-6727", + "maker": "Maker E", + "model": "Model 6727", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.82384671356331, + 28.39679290076557 + ] + }, + "properties": { + "id": "meter-6728", + "maker": "Maker E", + "model": "Model 6728", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67042436237548, + 27.44471271169074 + ] + }, + "properties": { + "id": "meter-6729", + "maker": "Maker F", + "model": "Model 6729", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.53299929645152, + 28.510972782856552 + ] + }, + "properties": { + "id": "meter-6730", + "maker": "Maker C", + "model": "Model 6730", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14517677231819, + 26.25501967774325 + ] + }, + "properties": { + "id": "meter-6731", + "maker": "Maker A", + "model": "Model 6731", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.87572357076799, + 17.642434801825416 + ] + }, + "properties": { + "id": "meter-6732", + "maker": "Maker G", + "model": "Model 6732", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18063026696424, + 26.236333256086844 + ] + }, + "properties": { + "id": "meter-6733", + "maker": "Maker B", + "model": "Model 6733", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.16851259288005, + 21.674221580786426 + ] + }, + "properties": { + "id": "meter-6734", + "maker": "Maker D", + "model": "Model 6734", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97505791167642, + 26.325906229911766 + ] + }, + "properties": { + "id": "meter-6735", + "maker": "Maker F", + "model": "Model 6735", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.063452917717306, + 24.088385464335197 + ] + }, + "properties": { + "id": "meter-6736", + "maker": "Maker A", + "model": "Model 6736", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.62250987130045, + 28.621417662566824 + ] + }, + "properties": { + "id": "meter-6737", + "maker": "Maker A", + "model": "Model 6737", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.927800929731454, + 31.083989830325713 + ] + }, + "properties": { + "id": "meter-6738", + "maker": "Maker F", + "model": "Model 6738", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.51076707794647, + 18.228337786358107 + ] + }, + "properties": { + "id": "meter-6739", + "maker": "Maker B", + "model": "Model 6739", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.46718404181551, + 21.452563301858575 + ] + }, + "properties": { + "id": "meter-6740", + "maker": "Maker B", + "model": "Model 6740", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.614946455325935, + 28.45864274176338 + ] + }, + "properties": { + "id": "meter-6741", + "maker": "Maker E", + "model": "Model 6741", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08889270264308, + 26.401928001754428 + ] + }, + "properties": { + "id": "meter-6742", + "maker": "Maker E", + "model": "Model 6742", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19005871901088, + 26.30075706667654 + ] + }, + "properties": { + "id": "meter-6743", + "maker": "Maker D", + "model": "Model 6743", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.723746004341656, + 28.41523809831067 + ] + }, + "properties": { + "id": "meter-6744", + "maker": "Maker D", + "model": "Model 6744", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.344760797851606, + 28.45797935256428 + ] + }, + "properties": { + "id": "meter-6745", + "maker": "Maker I", + "model": "Model 6745", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.38107399027308, + 19.955399411545407 + ] + }, + "properties": { + "id": "meter-6746", + "maker": "Maker F", + "model": "Model 6746", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.27335116788213, + 30.057946131386647 + ] + }, + "properties": { + "id": "meter-6747", + "maker": "Maker I", + "model": "Model 6747", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.972636217453854, + 26.36202812053555 + ] + }, + "properties": { + "id": "meter-6748", + "maker": "Maker G", + "model": "Model 6748", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.853479399704554, + 26.416298879341486 + ] + }, + "properties": { + "id": "meter-6749", + "maker": "Maker G", + "model": "Model 6749", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.02697476755359, + 30.942079743730975 + ] + }, + "properties": { + "id": "meter-6750", + "maker": "Maker E", + "model": "Model 6750", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.6061897399161, + 24.333008492994715 + ] + }, + "properties": { + "id": "meter-6751", + "maker": "Maker I", + "model": "Model 6751", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.01526332223932, + 30.92121184091062 + ] + }, + "properties": { + "id": "meter-6752", + "maker": "Maker E", + "model": "Model 6752", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03033286227175, + 17.427672598863644 + ] + }, + "properties": { + "id": "meter-6753", + "maker": "Maker D", + "model": "Model 6753", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96840444608142, + 26.467274807658427 + ] + }, + "properties": { + "id": "meter-6754", + "maker": "Maker F", + "model": "Model 6754", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91239277152612, + 26.581177118042106 + ] + }, + "properties": { + "id": "meter-6755", + "maker": "Maker G", + "model": "Model 6755", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.92953481125691, + 21.158480145744228 + ] + }, + "properties": { + "id": "meter-6756", + "maker": "Maker I", + "model": "Model 6756", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.356008802147706, + 21.442624254301464 + ] + }, + "properties": { + "id": "meter-6757", + "maker": "Maker B", + "model": "Model 6757", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.95863182663055, + 30.727395908368397 + ] + }, + "properties": { + "id": "meter-6758", + "maker": "Maker F", + "model": "Model 6758", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.29959005900798, + 29.839507424226095 + ] + }, + "properties": { + "id": "meter-6759", + "maker": "Maker C", + "model": "Model 6759", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.862014378824625, + 28.282205168071222 + ] + }, + "properties": { + "id": "meter-6760", + "maker": "Maker A", + "model": "Model 6760", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.856454910130594, + 21.589185927666634 + ] + }, + "properties": { + "id": "meter-6761", + "maker": "Maker F", + "model": "Model 6761", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69471419550126, + 18.574857519352616 + ] + }, + "properties": { + "id": "meter-6762", + "maker": "Maker C", + "model": "Model 6762", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.00432564263888, + 30.84076040674737 + ] + }, + "properties": { + "id": "meter-6763", + "maker": "Maker H", + "model": "Model 6763", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.51968463727871, + 18.2232697484494 + ] + }, + "properties": { + "id": "meter-6764", + "maker": "Maker F", + "model": "Model 6764", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.43311163875114, + 19.941226656781534 + ] + }, + "properties": { + "id": "meter-6765", + "maker": "Maker E", + "model": "Model 6765", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.44866728688105, + 25.366002504064245 + ] + }, + "properties": { + "id": "meter-6766", + "maker": "Maker C", + "model": "Model 6766", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69661685385612, + 27.554700597642878 + ] + }, + "properties": { + "id": "meter-6767", + "maker": "Maker H", + "model": "Model 6767", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.246095278929886, + 21.46957784082556 + ] + }, + "properties": { + "id": "meter-6768", + "maker": "Maker H", + "model": "Model 6768", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.354674611642345, + 21.408384985171143 + ] + }, + "properties": { + "id": "meter-6769", + "maker": "Maker G", + "model": "Model 6769", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.005456282930545, + 30.902088721904843 + ] + }, + "properties": { + "id": "meter-6770", + "maker": "Maker J", + "model": "Model 6770", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.07425686403345, + 30.968562800701484 + ] + }, + "properties": { + "id": "meter-6771", + "maker": "Maker B", + "model": "Model 6771", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.610866522296405, + 24.469424313859527 + ] + }, + "properties": { + "id": "meter-6772", + "maker": "Maker H", + "model": "Model 6772", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.635780749252554, + 24.701447461665165 + ] + }, + "properties": { + "id": "meter-6773", + "maker": "Maker F", + "model": "Model 6773", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.055715120047125, + 30.935275469582432 + ] + }, + "properties": { + "id": "meter-6774", + "maker": "Maker C", + "model": "Model 6774", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21193341774305, + 26.278065228872293 + ] + }, + "properties": { + "id": "meter-6775", + "maker": "Maker H", + "model": "Model 6775", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.55814661578434, + 18.227860471252683 + ] + }, + "properties": { + "id": "meter-6776", + "maker": "Maker E", + "model": "Model 6776", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00009701589167, + 26.614578700488767 + ] + }, + "properties": { + "id": "meter-6777", + "maker": "Maker H", + "model": "Model 6777", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.22213753839261, + 21.56492780080275 + ] + }, + "properties": { + "id": "meter-6778", + "maker": "Maker G", + "model": "Model 6778", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.541357644003625, + 27.717422244371893 + ] + }, + "properties": { + "id": "meter-6779", + "maker": "Maker J", + "model": "Model 6779", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.157203024219754, + 30.750058767911707 + ] + }, + "properties": { + "id": "meter-6780", + "maker": "Maker I", + "model": "Model 6780", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.04889021875525, + 26.399309277459757 + ] + }, + "properties": { + "id": "meter-6781", + "maker": "Maker J", + "model": "Model 6781", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11406884005617, + 26.17116690757779 + ] + }, + "properties": { + "id": "meter-6782", + "maker": "Maker F", + "model": "Model 6782", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.89607384036099, + 26.52558431565217 + ] + }, + "properties": { + "id": "meter-6783", + "maker": "Maker C", + "model": "Model 6783", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.3418577737488, + 21.376976812288525 + ] + }, + "properties": { + "id": "meter-6784", + "maker": "Maker C", + "model": "Model 6784", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.101394494395116, + 21.5707683873959 + ] + }, + "properties": { + "id": "meter-6785", + "maker": "Maker E", + "model": "Model 6785", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.8526139616359, + 24.67534414795911 + ] + }, + "properties": { + "id": "meter-6786", + "maker": "Maker I", + "model": "Model 6786", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.27017612111142, + 20.132722411922256 + ] + }, + "properties": { + "id": "meter-6787", + "maker": "Maker B", + "model": "Model 6787", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61856656255636, + 24.510349724183126 + ] + }, + "properties": { + "id": "meter-6788", + "maker": "Maker E", + "model": "Model 6788", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.75741038403922, + 18.59354053130865 + ] + }, + "properties": { + "id": "meter-6789", + "maker": "Maker I", + "model": "Model 6789", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54388633034175, + 25.398391144961334 + ] + }, + "properties": { + "id": "meter-6790", + "maker": "Maker J", + "model": "Model 6790", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85901596632588, + 21.449920513077895 + ] + }, + "properties": { + "id": "meter-6791", + "maker": "Maker H", + "model": "Model 6791", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02834095317127, + 26.258759417218627 + ] + }, + "properties": { + "id": "meter-6792", + "maker": "Maker E", + "model": "Model 6792", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.379409962301864, + 18.136458086617154 + ] + }, + "properties": { + "id": "meter-6793", + "maker": "Maker H", + "model": "Model 6793", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.19669367375597, + 23.99385589075134 + ] + }, + "properties": { + "id": "meter-6794", + "maker": "Maker C", + "model": "Model 6794", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01381370543803, + 17.519610833563494 + ] + }, + "properties": { + "id": "meter-6795", + "maker": "Maker G", + "model": "Model 6795", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.581883767994164, + 24.464611246174734 + ] + }, + "properties": { + "id": "meter-6796", + "maker": "Maker I", + "model": "Model 6796", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.29235475773922, + 17.410232652024945 + ] + }, + "properties": { + "id": "meter-6797", + "maker": "Maker D", + "model": "Model 6797", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.40906243247756, + 28.242543144324426 + ] + }, + "properties": { + "id": "meter-6798", + "maker": "Maker C", + "model": "Model 6798", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.28862103712613, + 21.52912053708719 + ] + }, + "properties": { + "id": "meter-6799", + "maker": "Maker A", + "model": "Model 6799", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21418521646571, + 21.355620292065872 + ] + }, + "properties": { + "id": "meter-6800", + "maker": "Maker D", + "model": "Model 6800", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.529986024699994, + 28.374309767771276 + ] + }, + "properties": { + "id": "meter-6801", + "maker": "Maker G", + "model": "Model 6801", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.262940934433686, + 21.497786545028212 + ] + }, + "properties": { + "id": "meter-6802", + "maker": "Maker D", + "model": "Model 6802", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.86758346877878, + 26.287926422486386 + ] + }, + "properties": { + "id": "meter-6803", + "maker": "Maker C", + "model": "Model 6803", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.939658778818206, + 26.26047346106245 + ] + }, + "properties": { + "id": "meter-6804", + "maker": "Maker G", + "model": "Model 6804", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46302976248964, + 19.946610679760767 + ] + }, + "properties": { + "id": "meter-6805", + "maker": "Maker D", + "model": "Model 6805", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.59841051329306, + 24.751510284219133 + ] + }, + "properties": { + "id": "meter-6806", + "maker": "Maker E", + "model": "Model 6806", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.17713673392442, + 21.566906510328415 + ] + }, + "properties": { + "id": "meter-6807", + "maker": "Maker A", + "model": "Model 6807", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.937705627124224, + 26.472659539828104 + ] + }, + "properties": { + "id": "meter-6808", + "maker": "Maker C", + "model": "Model 6808", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.34290416432967, + 18.33252372773966 + ] + }, + "properties": { + "id": "meter-6809", + "maker": "Maker J", + "model": "Model 6809", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.353577316667575, + 19.915482651864306 + ] + }, + "properties": { + "id": "meter-6810", + "maker": "Maker G", + "model": "Model 6810", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.714146196363316, + 24.440504843933176 + ] + }, + "properties": { + "id": "meter-6811", + "maker": "Maker B", + "model": "Model 6811", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.68594989659175, + 21.24591109509821 + ] + }, + "properties": { + "id": "meter-6812", + "maker": "Maker J", + "model": "Model 6812", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11424695985778, + 26.32745746461102 + ] + }, + "properties": { + "id": "meter-6813", + "maker": "Maker C", + "model": "Model 6813", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.171354798911224, + 26.233933959181464 + ] + }, + "properties": { + "id": "meter-6814", + "maker": "Maker A", + "model": "Model 6814", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69370425510911, + 20.19292194257723 + ] + }, + "properties": { + "id": "meter-6815", + "maker": "Maker E", + "model": "Model 6815", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.495473529445164, + 20.04965391983596 + ] + }, + "properties": { + "id": "meter-6816", + "maker": "Maker G", + "model": "Model 6816", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.06186093454321, + 26.575754871207447 + ] + }, + "properties": { + "id": "meter-6817", + "maker": "Maker I", + "model": "Model 6817", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.97594837985431, + 21.21789950365849 + ] + }, + "properties": { + "id": "meter-6818", + "maker": "Maker D", + "model": "Model 6818", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06204120942665, + 24.08130122896118 + ] + }, + "properties": { + "id": "meter-6819", + "maker": "Maker B", + "model": "Model 6819", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.78752462794222, + 18.29663884849698 + ] + }, + "properties": { + "id": "meter-6820", + "maker": "Maker B", + "model": "Model 6820", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.42685995388386, + 28.211807956168922 + ] + }, + "properties": { + "id": "meter-6821", + "maker": "Maker F", + "model": "Model 6821", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.211027172996715, + 26.25614555486886 + ] + }, + "properties": { + "id": "meter-6822", + "maker": "Maker A", + "model": "Model 6822", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.33037632686029, + 21.473104331653207 + ] + }, + "properties": { + "id": "meter-6823", + "maker": "Maker I", + "model": "Model 6823", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.938053638718124, + 26.402767621973574 + ] + }, + "properties": { + "id": "meter-6824", + "maker": "Maker J", + "model": "Model 6824", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.58409811721193, + 24.60632366905281 + ] + }, + "properties": { + "id": "meter-6825", + "maker": "Maker A", + "model": "Model 6825", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21353140378035, + 29.732513314715916 + ] + }, + "properties": { + "id": "meter-6826", + "maker": "Maker A", + "model": "Model 6826", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.61175417100054, + 27.635723820205467 + ] + }, + "properties": { + "id": "meter-6827", + "maker": "Maker D", + "model": "Model 6827", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.56178450364684, + 20.098882517217845 + ] + }, + "properties": { + "id": "meter-6828", + "maker": "Maker C", + "model": "Model 6828", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26074790861652, + 21.65797393011584 + ] + }, + "properties": { + "id": "meter-6829", + "maker": "Maker H", + "model": "Model 6829", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69573088694632, + 18.09992548838883 + ] + }, + "properties": { + "id": "meter-6830", + "maker": "Maker I", + "model": "Model 6830", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89127249634517, + 21.16139326750802 + ] + }, + "properties": { + "id": "meter-6831", + "maker": "Maker E", + "model": "Model 6831", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.000757833625684, + 24.103832845486895 + ] + }, + "properties": { + "id": "meter-6832", + "maker": "Maker I", + "model": "Model 6832", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.836442875009816, + 18.449842489197852 + ] + }, + "properties": { + "id": "meter-6833", + "maker": "Maker H", + "model": "Model 6833", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.66933169835515, + 19.87998031302247 + ] + }, + "properties": { + "id": "meter-6834", + "maker": "Maker E", + "model": "Model 6834", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.97252752628078, + 21.343400834204264 + ] + }, + "properties": { + "id": "meter-6835", + "maker": "Maker F", + "model": "Model 6835", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.387264902077845, + 21.69529821884436 + ] + }, + "properties": { + "id": "meter-6836", + "maker": "Maker E", + "model": "Model 6836", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.83354658928755, + 26.275580181336984 + ] + }, + "properties": { + "id": "meter-6837", + "maker": "Maker J", + "model": "Model 6837", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.8066782149886, + 24.596221078577937 + ] + }, + "properties": { + "id": "meter-6838", + "maker": "Maker J", + "model": "Model 6838", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.19340269956518, + 21.597254418074165 + ] + }, + "properties": { + "id": "meter-6839", + "maker": "Maker G", + "model": "Model 6839", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.167394629983306, + 29.855967849190968 + ] + }, + "properties": { + "id": "meter-6840", + "maker": "Maker F", + "model": "Model 6840", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65509641088259, + 24.711835135964765 + ] + }, + "properties": { + "id": "meter-6841", + "maker": "Maker J", + "model": "Model 6841", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.98844612273111, + 30.05595487289938 + ] + }, + "properties": { + "id": "meter-6842", + "maker": "Maker I", + "model": "Model 6842", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.20609809675635, + 21.48719736661666 + ] + }, + "properties": { + "id": "meter-6843", + "maker": "Maker H", + "model": "Model 6843", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10629770386586, + 17.474155529063694 + ] + }, + "properties": { + "id": "meter-6844", + "maker": "Maker I", + "model": "Model 6844", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.38996217671859, + 21.533316219417255 + ] + }, + "properties": { + "id": "meter-6845", + "maker": "Maker G", + "model": "Model 6845", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.79997450747234, + 26.1720849365761 + ] + }, + "properties": { + "id": "meter-6846", + "maker": "Maker I", + "model": "Model 6846", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.112366031531856, + 26.182768644591256 + ] + }, + "properties": { + "id": "meter-6847", + "maker": "Maker E", + "model": "Model 6847", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.400376486847385, + 17.540000719820533 + ] + }, + "properties": { + "id": "meter-6848", + "maker": "Maker C", + "model": "Model 6848", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.47378964837192, + 25.466878960168323 + ] + }, + "properties": { + "id": "meter-6849", + "maker": "Maker H", + "model": "Model 6849", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.783008199419065, + 26.294955201075307 + ] + }, + "properties": { + "id": "meter-6850", + "maker": "Maker F", + "model": "Model 6850", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.94993142482947, + 24.246795162263666 + ] + }, + "properties": { + "id": "meter-6851", + "maker": "Maker B", + "model": "Model 6851", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.9278667752663, + 21.252207387029962 + ] + }, + "properties": { + "id": "meter-6852", + "maker": "Maker A", + "model": "Model 6852", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.43029348964765, + 25.30540552729906 + ] + }, + "properties": { + "id": "meter-6853", + "maker": "Maker A", + "model": "Model 6853", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.7393214661883, + 28.599458584542752 + ] + }, + "properties": { + "id": "meter-6854", + "maker": "Maker C", + "model": "Model 6854", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.52256211853183, + 24.413062404021115 + ] + }, + "properties": { + "id": "meter-6855", + "maker": "Maker A", + "model": "Model 6855", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.927724264244226, + 24.302135331324372 + ] + }, + "properties": { + "id": "meter-6856", + "maker": "Maker G", + "model": "Model 6856", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.45577143994466, + 28.325343376605197 + ] + }, + "properties": { + "id": "meter-6857", + "maker": "Maker J", + "model": "Model 6857", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.807659517727416, + 21.37774108543909 + ] + }, + "properties": { + "id": "meter-6858", + "maker": "Maker I", + "model": "Model 6858", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.65802535047517, + 18.305905421602585 + ] + }, + "properties": { + "id": "meter-6859", + "maker": "Maker F", + "model": "Model 6859", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.013575468682255, + 26.37020660266491 + ] + }, + "properties": { + "id": "meter-6860", + "maker": "Maker B", + "model": "Model 6860", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.791444335205306, + 18.301366164264323 + ] + }, + "properties": { + "id": "meter-6861", + "maker": "Maker C", + "model": "Model 6861", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.76367546794838, + 25.46209388239205 + ] + }, + "properties": { + "id": "meter-6862", + "maker": "Maker I", + "model": "Model 6862", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07774757338063, + 24.329131857524732 + ] + }, + "properties": { + "id": "meter-6863", + "maker": "Maker I", + "model": "Model 6863", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.47017965009479, + 29.992676437637176 + ] + }, + "properties": { + "id": "meter-6864", + "maker": "Maker F", + "model": "Model 6864", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14293626791952, + 26.319670411188017 + ] + }, + "properties": { + "id": "meter-6865", + "maker": "Maker E", + "model": "Model 6865", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.823855843844925, + 30.923082505621963 + ] + }, + "properties": { + "id": "meter-6866", + "maker": "Maker F", + "model": "Model 6866", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.985302889405375, + 26.22893560840322 + ] + }, + "properties": { + "id": "meter-6867", + "maker": "Maker G", + "model": "Model 6867", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.719811216823125, + 18.01030518909044 + ] + }, + "properties": { + "id": "meter-6868", + "maker": "Maker B", + "model": "Model 6868", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.702659291083464, + 25.292236311400934 + ] + }, + "properties": { + "id": "meter-6869", + "maker": "Maker C", + "model": "Model 6869", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60827638835172, + 24.579875095174163 + ] + }, + "properties": { + "id": "meter-6870", + "maker": "Maker E", + "model": "Model 6870", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94865339426868, + 26.2712254480016 + ] + }, + "properties": { + "id": "meter-6871", + "maker": "Maker A", + "model": "Model 6871", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.76387139887633, + 21.528317708591963 + ] + }, + "properties": { + "id": "meter-6872", + "maker": "Maker C", + "model": "Model 6872", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.78855701722693, + 24.942314120066033 + ] + }, + "properties": { + "id": "meter-6873", + "maker": "Maker B", + "model": "Model 6873", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.60890716664327, + 19.795948478418417 + ] + }, + "properties": { + "id": "meter-6874", + "maker": "Maker B", + "model": "Model 6874", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.570253301053064, + 28.421392458926316 + ] + }, + "properties": { + "id": "meter-6875", + "maker": "Maker I", + "model": "Model 6875", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.57094389780283, + 24.634285671715062 + ] + }, + "properties": { + "id": "meter-6876", + "maker": "Maker B", + "model": "Model 6876", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.48764484040068, + 21.616120042189404 + ] + }, + "properties": { + "id": "meter-6877", + "maker": "Maker C", + "model": "Model 6877", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.952454967664295, + 30.992810034250653 + ] + }, + "properties": { + "id": "meter-6878", + "maker": "Maker D", + "model": "Model 6878", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.65350442108668, + 24.429309127848338 + ] + }, + "properties": { + "id": "meter-6879", + "maker": "Maker E", + "model": "Model 6879", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.74937726585976, + 24.790041673328727 + ] + }, + "properties": { + "id": "meter-6880", + "maker": "Maker E", + "model": "Model 6880", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.566220670917176, + 18.210463212968726 + ] + }, + "properties": { + "id": "meter-6881", + "maker": "Maker C", + "model": "Model 6881", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.38585512329951, + 18.12032068178826 + ] + }, + "properties": { + "id": "meter-6882", + "maker": "Maker C", + "model": "Model 6882", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.85985211515891, + 18.379780967379133 + ] + }, + "properties": { + "id": "meter-6883", + "maker": "Maker C", + "model": "Model 6883", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.132348785412475, + 31.026324570994372 + ] + }, + "properties": { + "id": "meter-6884", + "maker": "Maker B", + "model": "Model 6884", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.979853156360434, + 24.26223726709779 + ] + }, + "properties": { + "id": "meter-6885", + "maker": "Maker C", + "model": "Model 6885", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09817501069568, + 17.491037697131592 + ] + }, + "properties": { + "id": "meter-6886", + "maker": "Maker H", + "model": "Model 6886", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.86214377622787, + 31.071361447408233 + ] + }, + "properties": { + "id": "meter-6887", + "maker": "Maker D", + "model": "Model 6887", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.628027059822344, + 24.632956695443383 + ] + }, + "properties": { + "id": "meter-6888", + "maker": "Maker J", + "model": "Model 6888", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.990474689035445, + 21.460406447397503 + ] + }, + "properties": { + "id": "meter-6889", + "maker": "Maker I", + "model": "Model 6889", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.080581115973715, + 24.15495640252259 + ] + }, + "properties": { + "id": "meter-6890", + "maker": "Maker I", + "model": "Model 6890", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.100057232950974, + 26.210611856122323 + ] + }, + "properties": { + "id": "meter-6891", + "maker": "Maker J", + "model": "Model 6891", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.18611559194002, + 29.937113175165713 + ] + }, + "properties": { + "id": "meter-6892", + "maker": "Maker F", + "model": "Model 6892", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.160532478073755, + 30.005355076459626 + ] + }, + "properties": { + "id": "meter-6893", + "maker": "Maker I", + "model": "Model 6893", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.0939840912138, + 31.217106848923567 + ] + }, + "properties": { + "id": "meter-6894", + "maker": "Maker C", + "model": "Model 6894", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99947312692693, + 26.609659644310216 + ] + }, + "properties": { + "id": "meter-6895", + "maker": "Maker J", + "model": "Model 6895", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.814298276827046, + 21.364079855332257 + ] + }, + "properties": { + "id": "meter-6896", + "maker": "Maker D", + "model": "Model 6896", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.495933499240635, + 27.539528278674652 + ] + }, + "properties": { + "id": "meter-6897", + "maker": "Maker D", + "model": "Model 6897", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.776917105421276, + 21.32357565477548 + ] + }, + "properties": { + "id": "meter-6898", + "maker": "Maker E", + "model": "Model 6898", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.498386541082596, + 20.015319783368646 + ] + }, + "properties": { + "id": "meter-6899", + "maker": "Maker C", + "model": "Model 6899", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.99632086822398, + 31.17379415843882 + ] + }, + "properties": { + "id": "meter-6900", + "maker": "Maker J", + "model": "Model 6900", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.571182437121614, + 18.15525102822225 + ] + }, + "properties": { + "id": "meter-6901", + "maker": "Maker D", + "model": "Model 6901", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.13898961610952, + 31.033012198725007 + ] + }, + "properties": { + "id": "meter-6902", + "maker": "Maker I", + "model": "Model 6902", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.13212458684466, + 30.87710883226898 + ] + }, + "properties": { + "id": "meter-6903", + "maker": "Maker I", + "model": "Model 6903", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.68988601173287, + 24.61486089370505 + ] + }, + "properties": { + "id": "meter-6904", + "maker": "Maker A", + "model": "Model 6904", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.19087845574198, + 17.647790598072376 + ] + }, + "properties": { + "id": "meter-6905", + "maker": "Maker F", + "model": "Model 6905", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12306826288742, + 17.502724077098698 + ] + }, + "properties": { + "id": "meter-6906", + "maker": "Maker G", + "model": "Model 6906", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47025108403096, + 20.040317360686235 + ] + }, + "properties": { + "id": "meter-6907", + "maker": "Maker A", + "model": "Model 6907", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.158054134017995, + 26.31211228181505 + ] + }, + "properties": { + "id": "meter-6908", + "maker": "Maker B", + "model": "Model 6908", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.9810613794134, + 26.326867987663583 + ] + }, + "properties": { + "id": "meter-6909", + "maker": "Maker J", + "model": "Model 6909", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.18281581360074, + 21.609964389982917 + ] + }, + "properties": { + "id": "meter-6910", + "maker": "Maker F", + "model": "Model 6910", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.08760081083514, + 30.056949300295067 + ] + }, + "properties": { + "id": "meter-6911", + "maker": "Maker I", + "model": "Model 6911", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.768351501842396, + 27.269800954584447 + ] + }, + "properties": { + "id": "meter-6912", + "maker": "Maker G", + "model": "Model 6912", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.54443328247628, + 28.334212343219995 + ] + }, + "properties": { + "id": "meter-6913", + "maker": "Maker B", + "model": "Model 6913", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.470618498878004, + 24.55009813396473 + ] + }, + "properties": { + "id": "meter-6914", + "maker": "Maker F", + "model": "Model 6914", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.807185172519404, + 27.595781742834035 + ] + }, + "properties": { + "id": "meter-6915", + "maker": "Maker E", + "model": "Model 6915", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.6293208856449, + 18.078160989452734 + ] + }, + "properties": { + "id": "meter-6916", + "maker": "Maker A", + "model": "Model 6916", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97464910665203, + 26.275676150113675 + ] + }, + "properties": { + "id": "meter-6917", + "maker": "Maker D", + "model": "Model 6917", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.486151458083704, + 27.552206362681275 + ] + }, + "properties": { + "id": "meter-6918", + "maker": "Maker D", + "model": "Model 6918", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04608021435178, + 24.081373606779483 + ] + }, + "properties": { + "id": "meter-6919", + "maker": "Maker E", + "model": "Model 6919", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09916986814425, + 26.24017513901484 + ] + }, + "properties": { + "id": "meter-6920", + "maker": "Maker F", + "model": "Model 6920", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.078971054415774, + 26.385700214426997 + ] + }, + "properties": { + "id": "meter-6921", + "maker": "Maker G", + "model": "Model 6921", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07445951210533, + 26.41989332092272 + ] + }, + "properties": { + "id": "meter-6922", + "maker": "Maker C", + "model": "Model 6922", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.56947523833945, + 24.687745081006224 + ] + }, + "properties": { + "id": "meter-6923", + "maker": "Maker C", + "model": "Model 6923", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.84597933137737, + 31.121415658229875 + ] + }, + "properties": { + "id": "meter-6924", + "maker": "Maker D", + "model": "Model 6924", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.320792569665606, + 24.556816104424403 + ] + }, + "properties": { + "id": "meter-6925", + "maker": "Maker F", + "model": "Model 6925", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.910673718330976, + 26.44346031222332 + ] + }, + "properties": { + "id": "meter-6926", + "maker": "Maker B", + "model": "Model 6926", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.43725702847678, + 21.41240283263683 + ] + }, + "properties": { + "id": "meter-6927", + "maker": "Maker E", + "model": "Model 6927", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.20150310468066, + 21.400319620610905 + ] + }, + "properties": { + "id": "meter-6928", + "maker": "Maker G", + "model": "Model 6928", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55350257124942, + 27.624682021276264 + ] + }, + "properties": { + "id": "meter-6929", + "maker": "Maker A", + "model": "Model 6929", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.54702294442257, + 24.443756727112053 + ] + }, + "properties": { + "id": "meter-6930", + "maker": "Maker J", + "model": "Model 6930", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.668027051543284, + 27.69615955683969 + ] + }, + "properties": { + "id": "meter-6931", + "maker": "Maker B", + "model": "Model 6931", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85311892310707, + 21.353005925607405 + ] + }, + "properties": { + "id": "meter-6932", + "maker": "Maker I", + "model": "Model 6932", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05579989550423, + 26.43507784833759 + ] + }, + "properties": { + "id": "meter-6933", + "maker": "Maker B", + "model": "Model 6933", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.9204359386393, + 26.42634909660362 + ] + }, + "properties": { + "id": "meter-6934", + "maker": "Maker J", + "model": "Model 6934", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.55582815020235, + 24.51164766442253 + ] + }, + "properties": { + "id": "meter-6935", + "maker": "Maker J", + "model": "Model 6935", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.528701286247646, + 24.798740549155635 + ] + }, + "properties": { + "id": "meter-6936", + "maker": "Maker G", + "model": "Model 6936", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.82148374440927, + 31.01078978982471 + ] + }, + "properties": { + "id": "meter-6937", + "maker": "Maker B", + "model": "Model 6937", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.24139937420674, + 29.989539360975318 + ] + }, + "properties": { + "id": "meter-6938", + "maker": "Maker B", + "model": "Model 6938", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.22514154258321, + 29.989644249664742 + ] + }, + "properties": { + "id": "meter-6939", + "maker": "Maker J", + "model": "Model 6939", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.56390805190529, + 20.082924125059332 + ] + }, + "properties": { + "id": "meter-6940", + "maker": "Maker A", + "model": "Model 6940", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.743656745861735, + 26.46334431357122 + ] + }, + "properties": { + "id": "meter-6941", + "maker": "Maker F", + "model": "Model 6941", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.630761374766315, + 28.23720274742016 + ] + }, + "properties": { + "id": "meter-6942", + "maker": "Maker D", + "model": "Model 6942", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.73903276018767, + 27.61603340599342 + ] + }, + "properties": { + "id": "meter-6943", + "maker": "Maker G", + "model": "Model 6943", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99723316249928, + 26.442506943688915 + ] + }, + "properties": { + "id": "meter-6944", + "maker": "Maker B", + "model": "Model 6944", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.74914557837366, + 18.073004268824974 + ] + }, + "properties": { + "id": "meter-6945", + "maker": "Maker C", + "model": "Model 6945", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.22454279060647, + 20.150141209355052 + ] + }, + "properties": { + "id": "meter-6946", + "maker": "Maker F", + "model": "Model 6946", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97035040394475, + 26.4883348892385 + ] + }, + "properties": { + "id": "meter-6947", + "maker": "Maker H", + "model": "Model 6947", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.00480776197025, + 31.053276190073657 + ] + }, + "properties": { + "id": "meter-6948", + "maker": "Maker G", + "model": "Model 6948", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.95390749285167, + 24.151915327604517 + ] + }, + "properties": { + "id": "meter-6949", + "maker": "Maker A", + "model": "Model 6949", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.953337646199245, + 21.46562171250486 + ] + }, + "properties": { + "id": "meter-6950", + "maker": "Maker F", + "model": "Model 6950", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67464460703852, + 24.727950462808867 + ] + }, + "properties": { + "id": "meter-6951", + "maker": "Maker C", + "model": "Model 6951", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.90005809279899, + 31.13245532810986 + ] + }, + "properties": { + "id": "meter-6952", + "maker": "Maker J", + "model": "Model 6952", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03149215723125, + 30.980783749110117 + ] + }, + "properties": { + "id": "meter-6953", + "maker": "Maker A", + "model": "Model 6953", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.70316112145449, + 18.189904227970953 + ] + }, + "properties": { + "id": "meter-6954", + "maker": "Maker F", + "model": "Model 6954", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21207939557201, + 29.97244074488811 + ] + }, + "properties": { + "id": "meter-6955", + "maker": "Maker I", + "model": "Model 6955", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.98773117341502, + 30.14221397515137 + ] + }, + "properties": { + "id": "meter-6956", + "maker": "Maker B", + "model": "Model 6956", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.91239909202271, + 26.279312027791182 + ] + }, + "properties": { + "id": "meter-6957", + "maker": "Maker H", + "model": "Model 6957", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.692976993084734, + 18.365295596926092 + ] + }, + "properties": { + "id": "meter-6958", + "maker": "Maker A", + "model": "Model 6958", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54315604107385, + 25.332246933531177 + ] + }, + "properties": { + "id": "meter-6959", + "maker": "Maker H", + "model": "Model 6959", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.022160789169156, + 17.40255033596242 + ] + }, + "properties": { + "id": "meter-6960", + "maker": "Maker C", + "model": "Model 6960", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.51509325897559, + 25.354702208699305 + ] + }, + "properties": { + "id": "meter-6961", + "maker": "Maker D", + "model": "Model 6961", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.44723944195054, + 25.420237459513164 + ] + }, + "properties": { + "id": "meter-6962", + "maker": "Maker I", + "model": "Model 6962", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.98693171782774, + 31.05826007972982 + ] + }, + "properties": { + "id": "meter-6963", + "maker": "Maker J", + "model": "Model 6963", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.74338624672808, + 26.393716037235002 + ] + }, + "properties": { + "id": "meter-6964", + "maker": "Maker H", + "model": "Model 6964", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.675234415557554, + 24.36275451435879 + ] + }, + "properties": { + "id": "meter-6965", + "maker": "Maker B", + "model": "Model 6965", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.19704738271741, + 21.399405699420406 + ] + }, + "properties": { + "id": "meter-6966", + "maker": "Maker I", + "model": "Model 6966", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.89899892482381, + 26.25362525477109 + ] + }, + "properties": { + "id": "meter-6967", + "maker": "Maker A", + "model": "Model 6967", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19447076038887, + 26.254879997781117 + ] + }, + "properties": { + "id": "meter-6968", + "maker": "Maker F", + "model": "Model 6968", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96888069438512, + 26.596175094209425 + ] + }, + "properties": { + "id": "meter-6969", + "maker": "Maker J", + "model": "Model 6969", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.066774608593484, + 26.444838187364017 + ] + }, + "properties": { + "id": "meter-6970", + "maker": "Maker J", + "model": "Model 6970", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.228321792823046, + 19.946190807722807 + ] + }, + "properties": { + "id": "meter-6971", + "maker": "Maker A", + "model": "Model 6971", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.709298603273325, + 20.11373785896097 + ] + }, + "properties": { + "id": "meter-6972", + "maker": "Maker D", + "model": "Model 6972", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.47209125868441, + 28.53065198842783 + ] + }, + "properties": { + "id": "meter-6973", + "maker": "Maker F", + "model": "Model 6973", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2739188372475, + 21.52310084821597 + ] + }, + "properties": { + "id": "meter-6974", + "maker": "Maker E", + "model": "Model 6974", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.25301503612625, + 24.153177946958227 + ] + }, + "properties": { + "id": "meter-6975", + "maker": "Maker A", + "model": "Model 6975", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.15114357629431, + 30.033477512579672 + ] + }, + "properties": { + "id": "meter-6976", + "maker": "Maker H", + "model": "Model 6976", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.506116569173685, + 18.21043893268864 + ] + }, + "properties": { + "id": "meter-6977", + "maker": "Maker C", + "model": "Model 6977", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96452893080041, + 26.507480353196456 + ] + }, + "properties": { + "id": "meter-6978", + "maker": "Maker B", + "model": "Model 6978", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1052710538168, + 26.266532930088427 + ] + }, + "properties": { + "id": "meter-6979", + "maker": "Maker G", + "model": "Model 6979", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.71509571699466, + 28.569737531506554 + ] + }, + "properties": { + "id": "meter-6980", + "maker": "Maker I", + "model": "Model 6980", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.5616208167905, + 25.40441877578971 + ] + }, + "properties": { + "id": "meter-6981", + "maker": "Maker H", + "model": "Model 6981", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.781179248620376, + 18.44886286178143 + ] + }, + "properties": { + "id": "meter-6982", + "maker": "Maker J", + "model": "Model 6982", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.252929724345805, + 21.315661103356323 + ] + }, + "properties": { + "id": "meter-6983", + "maker": "Maker J", + "model": "Model 6983", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.347878413088615, + 30.041365079322844 + ] + }, + "properties": { + "id": "meter-6984", + "maker": "Maker A", + "model": "Model 6984", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.56412398448145, + 18.368126182193663 + ] + }, + "properties": { + "id": "meter-6985", + "maker": "Maker I", + "model": "Model 6985", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.86648963728192, + 26.409244862417133 + ] + }, + "properties": { + "id": "meter-6986", + "maker": "Maker G", + "model": "Model 6986", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65031363954286, + 24.687656171315552 + ] + }, + "properties": { + "id": "meter-6987", + "maker": "Maker D", + "model": "Model 6987", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.09686291741511, + 21.5808272372482 + ] + }, + "properties": { + "id": "meter-6988", + "maker": "Maker J", + "model": "Model 6988", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.62359362693583, + 21.33205362834937 + ] + }, + "properties": { + "id": "meter-6989", + "maker": "Maker H", + "model": "Model 6989", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.37741745522753, + 17.98322875853609 + ] + }, + "properties": { + "id": "meter-6990", + "maker": "Maker I", + "model": "Model 6990", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.967853957140804, + 26.214302347484292 + ] + }, + "properties": { + "id": "meter-6991", + "maker": "Maker F", + "model": "Model 6991", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.3217548540406, + 20.12724964535465 + ] + }, + "properties": { + "id": "meter-6992", + "maker": "Maker B", + "model": "Model 6992", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.914741409061044, + 26.5596270215969 + ] + }, + "properties": { + "id": "meter-6993", + "maker": "Maker C", + "model": "Model 6993", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.31672287343095, + 29.95242314217866 + ] + }, + "properties": { + "id": "meter-6994", + "maker": "Maker I", + "model": "Model 6994", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.71373963743472, + 27.63996427973387 + ] + }, + "properties": { + "id": "meter-6995", + "maker": "Maker F", + "model": "Model 6995", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.28381158590945, + 29.94671099678259 + ] + }, + "properties": { + "id": "meter-6996", + "maker": "Maker H", + "model": "Model 6996", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07883393188662, + 26.450199310832684 + ] + }, + "properties": { + "id": "meter-6997", + "maker": "Maker G", + "model": "Model 6997", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.14664001949832, + 30.061665314004962 + ] + }, + "properties": { + "id": "meter-6998", + "maker": "Maker J", + "model": "Model 6998", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.501728136996704, + 18.189046034665715 + ] + }, + "properties": { + "id": "meter-6999", + "maker": "Maker F", + "model": "Model 6999", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67724463857062, + 24.57916718903796 + ] + }, + "properties": { + "id": "meter-7000", + "maker": "Maker A", + "model": "Model 7000", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.671241126788246, + 24.730284693064316 + ] + }, + "properties": { + "id": "meter-7001", + "maker": "Maker H", + "model": "Model 7001", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.28833135123921, + 18.292599833582017 + ] + }, + "properties": { + "id": "meter-7002", + "maker": "Maker C", + "model": "Model 7002", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.41839126507919, + 25.19916871393003 + ] + }, + "properties": { + "id": "meter-7003", + "maker": "Maker E", + "model": "Model 7003", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67732888450634, + 24.384062692945765 + ] + }, + "properties": { + "id": "meter-7004", + "maker": "Maker B", + "model": "Model 7004", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.82466303997961, + 24.88225796205691 + ] + }, + "properties": { + "id": "meter-7005", + "maker": "Maker D", + "model": "Model 7005", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.83857669814962, + 26.290998761209146 + ] + }, + "properties": { + "id": "meter-7006", + "maker": "Maker A", + "model": "Model 7006", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.126318748982904, + 26.39578903776705 + ] + }, + "properties": { + "id": "meter-7007", + "maker": "Maker G", + "model": "Model 7007", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.01943647309537, + 30.003213479257415 + ] + }, + "properties": { + "id": "meter-7008", + "maker": "Maker J", + "model": "Model 7008", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.644440420971726, + 28.37953413430642 + ] + }, + "properties": { + "id": "meter-7009", + "maker": "Maker I", + "model": "Model 7009", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.64161865017975, + 24.650396763159804 + ] + }, + "properties": { + "id": "meter-7010", + "maker": "Maker G", + "model": "Model 7010", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.63440349489485, + 25.2281633278365 + ] + }, + "properties": { + "id": "meter-7011", + "maker": "Maker D", + "model": "Model 7011", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.40777233795159, + 18.259884860480135 + ] + }, + "properties": { + "id": "meter-7012", + "maker": "Maker G", + "model": "Model 7012", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61160685872671, + 24.532871353170666 + ] + }, + "properties": { + "id": "meter-7013", + "maker": "Maker C", + "model": "Model 7013", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.18784017786439, + 20.09674254693565 + ] + }, + "properties": { + "id": "meter-7014", + "maker": "Maker D", + "model": "Model 7014", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77636159598616, + 21.148133040825105 + ] + }, + "properties": { + "id": "meter-7015", + "maker": "Maker E", + "model": "Model 7015", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.064441103933724, + 21.44951461942446 + ] + }, + "properties": { + "id": "meter-7016", + "maker": "Maker H", + "model": "Model 7016", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.7733576386464, + 26.495022223295862 + ] + }, + "properties": { + "id": "meter-7017", + "maker": "Maker H", + "model": "Model 7017", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.30615252765787, + 21.443648818064865 + ] + }, + "properties": { + "id": "meter-7018", + "maker": "Maker F", + "model": "Model 7018", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.62752751436478, + 25.358935233417593 + ] + }, + "properties": { + "id": "meter-7019", + "maker": "Maker E", + "model": "Model 7019", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85396015216265, + 21.386005331132147 + ] + }, + "properties": { + "id": "meter-7020", + "maker": "Maker G", + "model": "Model 7020", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.679722361234596, + 25.07870387507184 + ] + }, + "properties": { + "id": "meter-7021", + "maker": "Maker H", + "model": "Model 7021", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.022652934794735, + 17.510869062470334 + ] + }, + "properties": { + "id": "meter-7022", + "maker": "Maker H", + "model": "Model 7022", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.642226911333644, + 18.291833559897658 + ] + }, + "properties": { + "id": "meter-7023", + "maker": "Maker G", + "model": "Model 7023", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.050748047266644, + 31.070540034721674 + ] + }, + "properties": { + "id": "meter-7024", + "maker": "Maker B", + "model": "Model 7024", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.71054672458365, + 21.46258415845604 + ] + }, + "properties": { + "id": "meter-7025", + "maker": "Maker G", + "model": "Model 7025", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1478454959828, + 26.311712832431894 + ] + }, + "properties": { + "id": "meter-7026", + "maker": "Maker F", + "model": "Model 7026", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53750046360128, + 18.173074878820735 + ] + }, + "properties": { + "id": "meter-7027", + "maker": "Maker I", + "model": "Model 7027", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.78904472174188, + 30.987861905590346 + ] + }, + "properties": { + "id": "meter-7028", + "maker": "Maker B", + "model": "Model 7028", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89653834659827, + 21.350353427804816 + ] + }, + "properties": { + "id": "meter-7029", + "maker": "Maker G", + "model": "Model 7029", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.258960314409634, + 21.42551403143771 + ] + }, + "properties": { + "id": "meter-7030", + "maker": "Maker D", + "model": "Model 7030", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.52654443275413, + 24.790073335134338 + ] + }, + "properties": { + "id": "meter-7031", + "maker": "Maker I", + "model": "Model 7031", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.772726517466225, + 24.450651605543992 + ] + }, + "properties": { + "id": "meter-7032", + "maker": "Maker F", + "model": "Model 7032", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.10107456292593, + 24.122860194711564 + ] + }, + "properties": { + "id": "meter-7033", + "maker": "Maker C", + "model": "Model 7033", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.49434573274061, + 28.678338674365275 + ] + }, + "properties": { + "id": "meter-7034", + "maker": "Maker G", + "model": "Model 7034", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11227519157274, + 17.508127836648672 + ] + }, + "properties": { + "id": "meter-7035", + "maker": "Maker A", + "model": "Model 7035", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.79160096102763, + 28.308157724659722 + ] + }, + "properties": { + "id": "meter-7036", + "maker": "Maker F", + "model": "Model 7036", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11452833524083, + 17.54254705652137 + ] + }, + "properties": { + "id": "meter-7037", + "maker": "Maker J", + "model": "Model 7037", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.79692430212153, + 25.43266329184496 + ] + }, + "properties": { + "id": "meter-7038", + "maker": "Maker I", + "model": "Model 7038", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.322950466502306, + 18.05761748825082 + ] + }, + "properties": { + "id": "meter-7039", + "maker": "Maker G", + "model": "Model 7039", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.415196132642286, + 24.64865509940137 + ] + }, + "properties": { + "id": "meter-7040", + "maker": "Maker J", + "model": "Model 7040", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15526372920203, + 26.656007764882343 + ] + }, + "properties": { + "id": "meter-7041", + "maker": "Maker F", + "model": "Model 7041", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.626445498211524, + 28.597850854442154 + ] + }, + "properties": { + "id": "meter-7042", + "maker": "Maker A", + "model": "Model 7042", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.0874664578346, + 31.03368232016016 + ] + }, + "properties": { + "id": "meter-7043", + "maker": "Maker I", + "model": "Model 7043", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.012216083083885, + 26.432463487908187 + ] + }, + "properties": { + "id": "meter-7044", + "maker": "Maker B", + "model": "Model 7044", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.752450419096945, + 18.3696364113314 + ] + }, + "properties": { + "id": "meter-7045", + "maker": "Maker B", + "model": "Model 7045", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01856953051786, + 26.45676938132325 + ] + }, + "properties": { + "id": "meter-7046", + "maker": "Maker J", + "model": "Model 7046", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.54918547960712, + 18.147009851281528 + ] + }, + "properties": { + "id": "meter-7047", + "maker": "Maker E", + "model": "Model 7047", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14198328025582, + 17.49904960947672 + ] + }, + "properties": { + "id": "meter-7048", + "maker": "Maker I", + "model": "Model 7048", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.07672096494732, + 17.625174483401086 + ] + }, + "properties": { + "id": "meter-7049", + "maker": "Maker E", + "model": "Model 7049", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24021239632418, + 21.48364278138512 + ] + }, + "properties": { + "id": "meter-7050", + "maker": "Maker I", + "model": "Model 7050", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.01037885883691, + 31.013423074612373 + ] + }, + "properties": { + "id": "meter-7051", + "maker": "Maker G", + "model": "Model 7051", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.00326865329671, + 30.90188798038828 + ] + }, + "properties": { + "id": "meter-7052", + "maker": "Maker I", + "model": "Model 7052", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.873926774227705, + 30.758285598250023 + ] + }, + "properties": { + "id": "meter-7053", + "maker": "Maker J", + "model": "Model 7053", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.234622561021204, + 29.79851218340989 + ] + }, + "properties": { + "id": "meter-7054", + "maker": "Maker D", + "model": "Model 7054", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.72950296883349, + 24.75295908699413 + ] + }, + "properties": { + "id": "meter-7055", + "maker": "Maker C", + "model": "Model 7055", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57988207926888, + 25.28930460398714 + ] + }, + "properties": { + "id": "meter-7056", + "maker": "Maker B", + "model": "Model 7056", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.64433587122143, + 25.57831709823385 + ] + }, + "properties": { + "id": "meter-7057", + "maker": "Maker G", + "model": "Model 7057", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.79291884457848, + 18.27514382157842 + ] + }, + "properties": { + "id": "meter-7058", + "maker": "Maker G", + "model": "Model 7058", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.85891012566736, + 30.751524644258584 + ] + }, + "properties": { + "id": "meter-7059", + "maker": "Maker H", + "model": "Model 7059", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.91820561784061, + 27.455718746775442 + ] + }, + "properties": { + "id": "meter-7060", + "maker": "Maker J", + "model": "Model 7060", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.22644130374613, + 17.545170659976183 + ] + }, + "properties": { + "id": "meter-7061", + "maker": "Maker F", + "model": "Model 7061", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.89940150738884, + 27.341353656184687 + ] + }, + "properties": { + "id": "meter-7062", + "maker": "Maker C", + "model": "Model 7062", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.35220509408915, + 25.17198853197233 + ] + }, + "properties": { + "id": "meter-7063", + "maker": "Maker J", + "model": "Model 7063", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.32852947701463, + 21.771249250449547 + ] + }, + "properties": { + "id": "meter-7064", + "maker": "Maker J", + "model": "Model 7064", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24106820794346, + 21.46320122649457 + ] + }, + "properties": { + "id": "meter-7065", + "maker": "Maker B", + "model": "Model 7065", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.232495343647784, + 29.938913217922867 + ] + }, + "properties": { + "id": "meter-7066", + "maker": "Maker F", + "model": "Model 7066", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94242997463347, + 17.53428180399078 + ] + }, + "properties": { + "id": "meter-7067", + "maker": "Maker D", + "model": "Model 7067", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70820070368767, + 27.504297763436835 + ] + }, + "properties": { + "id": "meter-7068", + "maker": "Maker F", + "model": "Model 7068", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20392870940979, + 26.210416254197934 + ] + }, + "properties": { + "id": "meter-7069", + "maker": "Maker A", + "model": "Model 7069", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00124518974297, + 26.532167952635493 + ] + }, + "properties": { + "id": "meter-7070", + "maker": "Maker A", + "model": "Model 7070", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.29054856087088, + 21.420317649495765 + ] + }, + "properties": { + "id": "meter-7071", + "maker": "Maker B", + "model": "Model 7071", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.78019064979703, + 21.437888712447467 + ] + }, + "properties": { + "id": "meter-7072", + "maker": "Maker B", + "model": "Model 7072", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24310348953484, + 21.492373075974474 + ] + }, + "properties": { + "id": "meter-7073", + "maker": "Maker I", + "model": "Model 7073", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.767994296544344, + 18.30244151015995 + ] + }, + "properties": { + "id": "meter-7074", + "maker": "Maker F", + "model": "Model 7074", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.593372351773226, + 28.32178448833173 + ] + }, + "properties": { + "id": "meter-7075", + "maker": "Maker J", + "model": "Model 7075", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.41251729028803, + 25.159824772166235 + ] + }, + "properties": { + "id": "meter-7076", + "maker": "Maker A", + "model": "Model 7076", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23066467100855, + 21.479577095263394 + ] + }, + "properties": { + "id": "meter-7077", + "maker": "Maker C", + "model": "Model 7077", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.908432576349135, + 18.328694990281782 + ] + }, + "properties": { + "id": "meter-7078", + "maker": "Maker J", + "model": "Model 7078", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.97311265726063, + 31.02469551071135 + ] + }, + "properties": { + "id": "meter-7079", + "maker": "Maker I", + "model": "Model 7079", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.588215134404976, + 25.350615816195692 + ] + }, + "properties": { + "id": "meter-7080", + "maker": "Maker F", + "model": "Model 7080", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.688031810052536, + 24.64051422505259 + ] + }, + "properties": { + "id": "meter-7081", + "maker": "Maker G", + "model": "Model 7081", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.040230498269636, + 17.38550966190906 + ] + }, + "properties": { + "id": "meter-7082", + "maker": "Maker G", + "model": "Model 7082", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.945376999355446, + 18.48253399563281 + ] + }, + "properties": { + "id": "meter-7083", + "maker": "Maker J", + "model": "Model 7083", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.940264400293245, + 26.497483099373788 + ] + }, + "properties": { + "id": "meter-7084", + "maker": "Maker D", + "model": "Model 7084", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.739832640446735, + 28.25671695701551 + ] + }, + "properties": { + "id": "meter-7085", + "maker": "Maker A", + "model": "Model 7085", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.7514883002429, + 24.91288427830178 + ] + }, + "properties": { + "id": "meter-7086", + "maker": "Maker J", + "model": "Model 7086", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11438940617782, + 26.2543267914617 + ] + }, + "properties": { + "id": "meter-7087", + "maker": "Maker J", + "model": "Model 7087", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12220029949633, + 26.356173342869145 + ] + }, + "properties": { + "id": "meter-7088", + "maker": "Maker F", + "model": "Model 7088", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.81383973365769, + 18.40845765990389 + ] + }, + "properties": { + "id": "meter-7089", + "maker": "Maker G", + "model": "Model 7089", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.4417702277885, + 18.35022950851495 + ] + }, + "properties": { + "id": "meter-7090", + "maker": "Maker J", + "model": "Model 7090", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.921910055206595, + 27.625757641305626 + ] + }, + "properties": { + "id": "meter-7091", + "maker": "Maker B", + "model": "Model 7091", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.403030929100495, + 27.536896614692765 + ] + }, + "properties": { + "id": "meter-7092", + "maker": "Maker E", + "model": "Model 7092", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.98724616876465, + 29.884813362421525 + ] + }, + "properties": { + "id": "meter-7093", + "maker": "Maker B", + "model": "Model 7093", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.161350238708316, + 29.94850304054893 + ] + }, + "properties": { + "id": "meter-7094", + "maker": "Maker H", + "model": "Model 7094", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48304739522691, + 20.021520664532307 + ] + }, + "properties": { + "id": "meter-7095", + "maker": "Maker I", + "model": "Model 7095", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.056661951455254, + 30.90526032096132 + ] + }, + "properties": { + "id": "meter-7096", + "maker": "Maker F", + "model": "Model 7096", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.38840214302223, + 24.53107563462039 + ] + }, + "properties": { + "id": "meter-7097", + "maker": "Maker D", + "model": "Model 7097", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.40975182645787, + 25.286922869900895 + ] + }, + "properties": { + "id": "meter-7098", + "maker": "Maker E", + "model": "Model 7098", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99816436863305, + 26.302812955928115 + ] + }, + "properties": { + "id": "meter-7099", + "maker": "Maker B", + "model": "Model 7099", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.44826710367419, + 18.382955497418067 + ] + }, + "properties": { + "id": "meter-7100", + "maker": "Maker J", + "model": "Model 7100", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.35795123781989, + 21.29315159111946 + ] + }, + "properties": { + "id": "meter-7101", + "maker": "Maker J", + "model": "Model 7101", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.61309465221119, + 28.411167846052678 + ] + }, + "properties": { + "id": "meter-7102", + "maker": "Maker C", + "model": "Model 7102", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.13451147983964, + 24.048074189474402 + ] + }, + "properties": { + "id": "meter-7103", + "maker": "Maker D", + "model": "Model 7103", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.02789258505207, + 24.359767835111867 + ] + }, + "properties": { + "id": "meter-7104", + "maker": "Maker J", + "model": "Model 7104", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.71309807584069, + 25.51855012573829 + ] + }, + "properties": { + "id": "meter-7105", + "maker": "Maker H", + "model": "Model 7105", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09959021428652, + 24.168805588453907 + ] + }, + "properties": { + "id": "meter-7106", + "maker": "Maker D", + "model": "Model 7106", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.964132984802404, + 26.39147388822743 + ] + }, + "properties": { + "id": "meter-7107", + "maker": "Maker F", + "model": "Model 7107", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19817548112456, + 26.308988860241577 + ] + }, + "properties": { + "id": "meter-7108", + "maker": "Maker H", + "model": "Model 7108", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.366119693212724, + 20.023355436819784 + ] + }, + "properties": { + "id": "meter-7109", + "maker": "Maker J", + "model": "Model 7109", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12314825630064, + 17.488086039107863 + ] + }, + "properties": { + "id": "meter-7110", + "maker": "Maker E", + "model": "Model 7110", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.34337435208222, + 28.45775058375672 + ] + }, + "properties": { + "id": "meter-7111", + "maker": "Maker G", + "model": "Model 7111", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.97137606351865, + 30.947739802692894 + ] + }, + "properties": { + "id": "meter-7112", + "maker": "Maker D", + "model": "Model 7112", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.548534019787915, + 20.13679851733294 + ] + }, + "properties": { + "id": "meter-7113", + "maker": "Maker C", + "model": "Model 7113", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02080769853899, + 26.327494487447876 + ] + }, + "properties": { + "id": "meter-7114", + "maker": "Maker J", + "model": "Model 7114", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.50571493599432, + 24.920156464084418 + ] + }, + "properties": { + "id": "meter-7115", + "maker": "Maker I", + "model": "Model 7115", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2801216304488, + 21.626245666378168 + ] + }, + "properties": { + "id": "meter-7116", + "maker": "Maker B", + "model": "Model 7116", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.10215992585929, + 30.847010325113438 + ] + }, + "properties": { + "id": "meter-7117", + "maker": "Maker F", + "model": "Model 7117", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08791952317052, + 26.420800969274538 + ] + }, + "properties": { + "id": "meter-7118", + "maker": "Maker H", + "model": "Model 7118", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.41495078470293, + 21.65676951031928 + ] + }, + "properties": { + "id": "meter-7119", + "maker": "Maker E", + "model": "Model 7119", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.54542412086813, + 24.503421183070493 + ] + }, + "properties": { + "id": "meter-7120", + "maker": "Maker A", + "model": "Model 7120", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.59832092682607, + 28.291548254459805 + ] + }, + "properties": { + "id": "meter-7121", + "maker": "Maker C", + "model": "Model 7121", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.059894227419534, + 21.28135872757571 + ] + }, + "properties": { + "id": "meter-7122", + "maker": "Maker A", + "model": "Model 7122", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.841579862462694, + 26.726475154815674 + ] + }, + "properties": { + "id": "meter-7123", + "maker": "Maker H", + "model": "Model 7123", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.758123616137944, + 25.432938982909615 + ] + }, + "properties": { + "id": "meter-7124", + "maker": "Maker G", + "model": "Model 7124", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.69927406428226, + 24.29453260260954 + ] + }, + "properties": { + "id": "meter-7125", + "maker": "Maker J", + "model": "Model 7125", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14933308403302, + 26.422739159660534 + ] + }, + "properties": { + "id": "meter-7126", + "maker": "Maker H", + "model": "Model 7126", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.824362046460266, + 30.82514425338931 + ] + }, + "properties": { + "id": "meter-7127", + "maker": "Maker H", + "model": "Model 7127", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.90723756533011, + 26.295810590554968 + ] + }, + "properties": { + "id": "meter-7128", + "maker": "Maker B", + "model": "Model 7128", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.57133889177018, + 18.277895138751372 + ] + }, + "properties": { + "id": "meter-7129", + "maker": "Maker C", + "model": "Model 7129", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.19509959320226, + 31.17229303284878 + ] + }, + "properties": { + "id": "meter-7130", + "maker": "Maker E", + "model": "Model 7130", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81904098665145, + 21.397525638618056 + ] + }, + "properties": { + "id": "meter-7131", + "maker": "Maker I", + "model": "Model 7131", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.66822038227175, + 28.345180036370696 + ] + }, + "properties": { + "id": "meter-7132", + "maker": "Maker H", + "model": "Model 7132", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.857040377119844, + 21.38655977870802 + ] + }, + "properties": { + "id": "meter-7133", + "maker": "Maker A", + "model": "Model 7133", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.29415024611519, + 29.771642793667322 + ] + }, + "properties": { + "id": "meter-7134", + "maker": "Maker B", + "model": "Model 7134", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48194184453508, + 27.561638599498522 + ] + }, + "properties": { + "id": "meter-7135", + "maker": "Maker J", + "model": "Model 7135", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.80207019840032, + 26.626566448895524 + ] + }, + "properties": { + "id": "meter-7136", + "maker": "Maker E", + "model": "Model 7136", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67903120615886, + 24.538509068761776 + ] + }, + "properties": { + "id": "meter-7137", + "maker": "Maker G", + "model": "Model 7137", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09321119798813, + 24.086465508507665 + ] + }, + "properties": { + "id": "meter-7138", + "maker": "Maker D", + "model": "Model 7138", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96221869737283, + 26.339593832147102 + ] + }, + "properties": { + "id": "meter-7139", + "maker": "Maker D", + "model": "Model 7139", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.89134604790065, + 26.458441798692565 + ] + }, + "properties": { + "id": "meter-7140", + "maker": "Maker J", + "model": "Model 7140", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.46481510414796, + 28.436404548636506 + ] + }, + "properties": { + "id": "meter-7141", + "maker": "Maker A", + "model": "Model 7141", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.16071082269143, + 29.97400224007405 + ] + }, + "properties": { + "id": "meter-7142", + "maker": "Maker A", + "model": "Model 7142", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.58774443842444, + 24.529400504895072 + ] + }, + "properties": { + "id": "meter-7143", + "maker": "Maker B", + "model": "Model 7143", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.59074957131713, + 24.628264258807974 + ] + }, + "properties": { + "id": "meter-7144", + "maker": "Maker A", + "model": "Model 7144", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.7448793458752, + 26.29285703707973 + ] + }, + "properties": { + "id": "meter-7145", + "maker": "Maker E", + "model": "Model 7145", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.99741341056835, + 29.992808263779587 + ] + }, + "properties": { + "id": "meter-7146", + "maker": "Maker F", + "model": "Model 7146", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.112429437736445, + 24.102780090239055 + ] + }, + "properties": { + "id": "meter-7147", + "maker": "Maker G", + "model": "Model 7147", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.22756271437682, + 17.54823531202381 + ] + }, + "properties": { + "id": "meter-7148", + "maker": "Maker B", + "model": "Model 7148", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.61936368855028, + 18.503514601590414 + ] + }, + "properties": { + "id": "meter-7149", + "maker": "Maker A", + "model": "Model 7149", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.131953559396585, + 24.114707761456955 + ] + }, + "properties": { + "id": "meter-7150", + "maker": "Maker E", + "model": "Model 7150", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.37574517853593, + 29.9238608070107 + ] + }, + "properties": { + "id": "meter-7151", + "maker": "Maker G", + "model": "Model 7151", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92895638175745, + 26.481971660870457 + ] + }, + "properties": { + "id": "meter-7152", + "maker": "Maker C", + "model": "Model 7152", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58737135740981, + 25.34099891872051 + ] + }, + "properties": { + "id": "meter-7153", + "maker": "Maker C", + "model": "Model 7153", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.17523095310428, + 30.095080469005733 + ] + }, + "properties": { + "id": "meter-7154", + "maker": "Maker E", + "model": "Model 7154", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.50255730808412, + 20.018205357246934 + ] + }, + "properties": { + "id": "meter-7155", + "maker": "Maker E", + "model": "Model 7155", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.629399712087626, + 24.626463771499772 + ] + }, + "properties": { + "id": "meter-7156", + "maker": "Maker D", + "model": "Model 7156", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.271288421860326, + 21.55840830671422 + ] + }, + "properties": { + "id": "meter-7157", + "maker": "Maker D", + "model": "Model 7157", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.19220848877005, + 29.968111494093982 + ] + }, + "properties": { + "id": "meter-7158", + "maker": "Maker B", + "model": "Model 7158", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.33842086792061, + 29.950102276697386 + ] + }, + "properties": { + "id": "meter-7159", + "maker": "Maker B", + "model": "Model 7159", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.49996203164379, + 28.660698347301505 + ] + }, + "properties": { + "id": "meter-7160", + "maker": "Maker G", + "model": "Model 7160", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58273002291002, + 25.394072604819993 + ] + }, + "properties": { + "id": "meter-7161", + "maker": "Maker D", + "model": "Model 7161", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.40318276920551, + 28.294906344068018 + ] + }, + "properties": { + "id": "meter-7162", + "maker": "Maker I", + "model": "Model 7162", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.62208601872994, + 24.486191934348618 + ] + }, + "properties": { + "id": "meter-7163", + "maker": "Maker H", + "model": "Model 7163", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.43264424570822, + 18.154570813044263 + ] + }, + "properties": { + "id": "meter-7164", + "maker": "Maker G", + "model": "Model 7164", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.39922400286436, + 24.539572189457957 + ] + }, + "properties": { + "id": "meter-7165", + "maker": "Maker I", + "model": "Model 7165", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.31173852552407, + 21.401931547785182 + ] + }, + "properties": { + "id": "meter-7166", + "maker": "Maker E", + "model": "Model 7166", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.175961832737265, + 17.742502677501008 + ] + }, + "properties": { + "id": "meter-7167", + "maker": "Maker D", + "model": "Model 7167", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.7177144488549, + 24.51919688962635 + ] + }, + "properties": { + "id": "meter-7168", + "maker": "Maker C", + "model": "Model 7168", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18435299561277, + 26.307667796953943 + ] + }, + "properties": { + "id": "meter-7169", + "maker": "Maker D", + "model": "Model 7169", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.222916721733405, + 26.20916692646134 + ] + }, + "properties": { + "id": "meter-7170", + "maker": "Maker H", + "model": "Model 7170", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.47573055517247, + 28.354819019272863 + ] + }, + "properties": { + "id": "meter-7171", + "maker": "Maker E", + "model": "Model 7171", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0173612514145, + 26.307895763457118 + ] + }, + "properties": { + "id": "meter-7172", + "maker": "Maker F", + "model": "Model 7172", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.54438368306188, + 17.965885160880084 + ] + }, + "properties": { + "id": "meter-7173", + "maker": "Maker A", + "model": "Model 7173", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.072990164818115, + 30.85034087094488 + ] + }, + "properties": { + "id": "meter-7174", + "maker": "Maker C", + "model": "Model 7174", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.3893008471761, + 24.544152395774667 + ] + }, + "properties": { + "id": "meter-7175", + "maker": "Maker I", + "model": "Model 7175", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.01947345781049, + 21.3511126815759 + ] + }, + "properties": { + "id": "meter-7176", + "maker": "Maker I", + "model": "Model 7176", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.303341879248556, + 17.717490593645284 + ] + }, + "properties": { + "id": "meter-7177", + "maker": "Maker F", + "model": "Model 7177", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6935659657771, + 27.508690925614143 + ] + }, + "properties": { + "id": "meter-7178", + "maker": "Maker I", + "model": "Model 7178", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.37223923577824, + 28.379719993653804 + ] + }, + "properties": { + "id": "meter-7179", + "maker": "Maker C", + "model": "Model 7179", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.978277951271366, + 30.86255362348477 + ] + }, + "properties": { + "id": "meter-7180", + "maker": "Maker C", + "model": "Model 7180", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.1249232315734, + 24.133533935008593 + ] + }, + "properties": { + "id": "meter-7181", + "maker": "Maker J", + "model": "Model 7181", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.439146929988794, + 19.987079888321333 + ] + }, + "properties": { + "id": "meter-7182", + "maker": "Maker B", + "model": "Model 7182", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.519201882356796, + 25.253443070954184 + ] + }, + "properties": { + "id": "meter-7183", + "maker": "Maker D", + "model": "Model 7183", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.44375411715968, + 20.205509863815255 + ] + }, + "properties": { + "id": "meter-7184", + "maker": "Maker I", + "model": "Model 7184", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.41203708766804, + 24.470080970706924 + ] + }, + "properties": { + "id": "meter-7185", + "maker": "Maker B", + "model": "Model 7185", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.090863742461586, + 24.06776394693935 + ] + }, + "properties": { + "id": "meter-7186", + "maker": "Maker F", + "model": "Model 7186", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.628949501857605, + 25.25362845272626 + ] + }, + "properties": { + "id": "meter-7187", + "maker": "Maker D", + "model": "Model 7187", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.92313326187919, + 27.57488196560909 + ] + }, + "properties": { + "id": "meter-7188", + "maker": "Maker C", + "model": "Model 7188", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.941823680855926, + 26.158367558248727 + ] + }, + "properties": { + "id": "meter-7189", + "maker": "Maker H", + "model": "Model 7189", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.34279024606973, + 25.27764239433395 + ] + }, + "properties": { + "id": "meter-7190", + "maker": "Maker J", + "model": "Model 7190", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.731743531920856, + 19.88332239399504 + ] + }, + "properties": { + "id": "meter-7191", + "maker": "Maker C", + "model": "Model 7191", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.597746589616015, + 24.478535016548822 + ] + }, + "properties": { + "id": "meter-7192", + "maker": "Maker I", + "model": "Model 7192", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08919996047955, + 26.23107404639166 + ] + }, + "properties": { + "id": "meter-7193", + "maker": "Maker C", + "model": "Model 7193", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.40955152288833, + 18.311652938884865 + ] + }, + "properties": { + "id": "meter-7194", + "maker": "Maker J", + "model": "Model 7194", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.718103377495616, + 28.55556133856958 + ] + }, + "properties": { + "id": "meter-7195", + "maker": "Maker D", + "model": "Model 7195", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99544822467132, + 26.450000091844252 + ] + }, + "properties": { + "id": "meter-7196", + "maker": "Maker B", + "model": "Model 7196", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.29259773629217, + 29.970567689422303 + ] + }, + "properties": { + "id": "meter-7197", + "maker": "Maker E", + "model": "Model 7197", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.10736873449389, + 24.068127465888384 + ] + }, + "properties": { + "id": "meter-7198", + "maker": "Maker B", + "model": "Model 7198", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.747588295901465, + 24.63406738405824 + ] + }, + "properties": { + "id": "meter-7199", + "maker": "Maker B", + "model": "Model 7199", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.58833615857388, + 24.518431485646076 + ] + }, + "properties": { + "id": "meter-7200", + "maker": "Maker J", + "model": "Model 7200", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.91133818926702, + 17.4024653043679 + ] + }, + "properties": { + "id": "meter-7201", + "maker": "Maker D", + "model": "Model 7201", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.54113783289067, + 24.610240631834145 + ] + }, + "properties": { + "id": "meter-7202", + "maker": "Maker C", + "model": "Model 7202", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.969141664379485, + 17.644117059108442 + ] + }, + "properties": { + "id": "meter-7203", + "maker": "Maker B", + "model": "Model 7203", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.394297439301816, + 20.032024362192253 + ] + }, + "properties": { + "id": "meter-7204", + "maker": "Maker E", + "model": "Model 7204", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17799217909041, + 17.47847505698002 + ] + }, + "properties": { + "id": "meter-7205", + "maker": "Maker A", + "model": "Model 7205", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10085616377571, + 26.433148761199085 + ] + }, + "properties": { + "id": "meter-7206", + "maker": "Maker E", + "model": "Model 7206", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.889362509097666, + 26.454074405742194 + ] + }, + "properties": { + "id": "meter-7207", + "maker": "Maker G", + "model": "Model 7207", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.59846926381057, + 28.381385427589322 + ] + }, + "properties": { + "id": "meter-7208", + "maker": "Maker F", + "model": "Model 7208", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.90147479039809, + 26.2961404203938 + ] + }, + "properties": { + "id": "meter-7209", + "maker": "Maker F", + "model": "Model 7209", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.74813902711616, + 26.183793071174872 + ] + }, + "properties": { + "id": "meter-7210", + "maker": "Maker B", + "model": "Model 7210", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.66751184919127, + 24.71928708212635 + ] + }, + "properties": { + "id": "meter-7211", + "maker": "Maker J", + "model": "Model 7211", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.56741959202715, + 25.44186304663006 + ] + }, + "properties": { + "id": "meter-7212", + "maker": "Maker C", + "model": "Model 7212", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.732026774292024, + 24.405400749649207 + ] + }, + "properties": { + "id": "meter-7213", + "maker": "Maker J", + "model": "Model 7213", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.1074271820799, + 29.949693712997068 + ] + }, + "properties": { + "id": "meter-7214", + "maker": "Maker E", + "model": "Model 7214", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.68933368374667, + 27.518562824120625 + ] + }, + "properties": { + "id": "meter-7215", + "maker": "Maker I", + "model": "Model 7215", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.82986693698927, + 27.68056942602428 + ] + }, + "properties": { + "id": "meter-7216", + "maker": "Maker E", + "model": "Model 7216", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.42034211430031, + 30.030996740382314 + ] + }, + "properties": { + "id": "meter-7217", + "maker": "Maker D", + "model": "Model 7217", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23624251232336, + 30.05049358297619 + ] + }, + "properties": { + "id": "meter-7218", + "maker": "Maker D", + "model": "Model 7218", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.810706716142604, + 27.526104933506772 + ] + }, + "properties": { + "id": "meter-7219", + "maker": "Maker C", + "model": "Model 7219", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07641071169486, + 26.416862248913862 + ] + }, + "properties": { + "id": "meter-7220", + "maker": "Maker A", + "model": "Model 7220", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.588574560264085, + 24.6008850012197 + ] + }, + "properties": { + "id": "meter-7221", + "maker": "Maker F", + "model": "Model 7221", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.74538428660773, + 24.441536700095142 + ] + }, + "properties": { + "id": "meter-7222", + "maker": "Maker B", + "model": "Model 7222", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.517241544063, + 19.86415101949739 + ] + }, + "properties": { + "id": "meter-7223", + "maker": "Maker E", + "model": "Model 7223", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.86117574005578, + 18.24311033438605 + ] + }, + "properties": { + "id": "meter-7224", + "maker": "Maker G", + "model": "Model 7224", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.019748096075254, + 26.243247904430536 + ] + }, + "properties": { + "id": "meter-7225", + "maker": "Maker I", + "model": "Model 7225", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.29102792097727, + 21.707036709333174 + ] + }, + "properties": { + "id": "meter-7226", + "maker": "Maker I", + "model": "Model 7226", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.20264076822918, + 21.31775649287722 + ] + }, + "properties": { + "id": "meter-7227", + "maker": "Maker J", + "model": "Model 7227", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97632543639372, + 26.519131420366293 + ] + }, + "properties": { + "id": "meter-7228", + "maker": "Maker E", + "model": "Model 7228", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92041517158482, + 26.62113846264021 + ] + }, + "properties": { + "id": "meter-7229", + "maker": "Maker A", + "model": "Model 7229", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10314101933241, + 26.39160330848568 + ] + }, + "properties": { + "id": "meter-7230", + "maker": "Maker G", + "model": "Model 7230", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.99906807353288, + 18.31462858264009 + ] + }, + "properties": { + "id": "meter-7231", + "maker": "Maker F", + "model": "Model 7231", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.615412389980996, + 27.558955075148035 + ] + }, + "properties": { + "id": "meter-7232", + "maker": "Maker F", + "model": "Model 7232", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.60501790149653, + 25.139753155220177 + ] + }, + "properties": { + "id": "meter-7233", + "maker": "Maker I", + "model": "Model 7233", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.11407577983945, + 24.31269816978434 + ] + }, + "properties": { + "id": "meter-7234", + "maker": "Maker B", + "model": "Model 7234", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.92036953167464, + 24.332292720572305 + ] + }, + "properties": { + "id": "meter-7235", + "maker": "Maker A", + "model": "Model 7235", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.597460275242426, + 24.405604431177736 + ] + }, + "properties": { + "id": "meter-7236", + "maker": "Maker D", + "model": "Model 7236", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.10081426652055, + 21.302926709100866 + ] + }, + "properties": { + "id": "meter-7237", + "maker": "Maker H", + "model": "Model 7237", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20833272143588, + 26.206271508909378 + ] + }, + "properties": { + "id": "meter-7238", + "maker": "Maker C", + "model": "Model 7238", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.439353659469894, + 25.39478753014052 + ] + }, + "properties": { + "id": "meter-7239", + "maker": "Maker E", + "model": "Model 7239", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.47345150151708, + 25.29765528844834 + ] + }, + "properties": { + "id": "meter-7240", + "maker": "Maker E", + "model": "Model 7240", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.503775615967434, + 24.527801047977146 + ] + }, + "properties": { + "id": "meter-7241", + "maker": "Maker F", + "model": "Model 7241", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.61869814601119, + 28.383451913980018 + ] + }, + "properties": { + "id": "meter-7242", + "maker": "Maker J", + "model": "Model 7242", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58864749808251, + 25.399123375238766 + ] + }, + "properties": { + "id": "meter-7243", + "maker": "Maker H", + "model": "Model 7243", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.661125452245685, + 27.74188638010308 + ] + }, + "properties": { + "id": "meter-7244", + "maker": "Maker H", + "model": "Model 7244", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.16068827797572, + 26.305672905459595 + ] + }, + "properties": { + "id": "meter-7245", + "maker": "Maker D", + "model": "Model 7245", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03594090209344, + 30.973473948949525 + ] + }, + "properties": { + "id": "meter-7246", + "maker": "Maker E", + "model": "Model 7246", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.89605298054254, + 24.70573385987824 + ] + }, + "properties": { + "id": "meter-7247", + "maker": "Maker F", + "model": "Model 7247", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.76403120814664, + 21.578141899896412 + ] + }, + "properties": { + "id": "meter-7248", + "maker": "Maker A", + "model": "Model 7248", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.15644428338037, + 17.541819499021415 + ] + }, + "properties": { + "id": "meter-7249", + "maker": "Maker G", + "model": "Model 7249", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13634058581629, + 17.481092884945305 + ] + }, + "properties": { + "id": "meter-7250", + "maker": "Maker I", + "model": "Model 7250", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.660028070406945, + 27.551929533907046 + ] + }, + "properties": { + "id": "meter-7251", + "maker": "Maker E", + "model": "Model 7251", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.658263478819336, + 25.299996664840496 + ] + }, + "properties": { + "id": "meter-7252", + "maker": "Maker B", + "model": "Model 7252", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58859537410385, + 25.350711168023132 + ] + }, + "properties": { + "id": "meter-7253", + "maker": "Maker J", + "model": "Model 7253", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.40124683056569, + 21.41205653113646 + ] + }, + "properties": { + "id": "meter-7254", + "maker": "Maker C", + "model": "Model 7254", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.28766980367439, + 31.04838479684527 + ] + }, + "properties": { + "id": "meter-7255", + "maker": "Maker F", + "model": "Model 7255", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55442234973311, + 27.63955406587917 + ] + }, + "properties": { + "id": "meter-7256", + "maker": "Maker J", + "model": "Model 7256", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.3831376649633, + 30.01164925002332 + ] + }, + "properties": { + "id": "meter-7257", + "maker": "Maker C", + "model": "Model 7257", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.85641552871239, + 27.61346406884044 + ] + }, + "properties": { + "id": "meter-7258", + "maker": "Maker I", + "model": "Model 7258", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.12123222523793, + 30.058419444645484 + ] + }, + "properties": { + "id": "meter-7259", + "maker": "Maker G", + "model": "Model 7259", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46273806822978, + 27.580684053069298 + ] + }, + "properties": { + "id": "meter-7260", + "maker": "Maker B", + "model": "Model 7260", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.90297395146201, + 21.412262522637228 + ] + }, + "properties": { + "id": "meter-7261", + "maker": "Maker D", + "model": "Model 7261", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.71736313458998, + 27.276323098574146 + ] + }, + "properties": { + "id": "meter-7262", + "maker": "Maker A", + "model": "Model 7262", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.744752450139885, + 18.28935833783765 + ] + }, + "properties": { + "id": "meter-7263", + "maker": "Maker E", + "model": "Model 7263", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.68867061726516, + 25.438807792729932 + ] + }, + "properties": { + "id": "meter-7264", + "maker": "Maker G", + "model": "Model 7264", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05743898506657, + 24.090467857133877 + ] + }, + "properties": { + "id": "meter-7265", + "maker": "Maker B", + "model": "Model 7265", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10925638077009, + 26.397186913631547 + ] + }, + "properties": { + "id": "meter-7266", + "maker": "Maker F", + "model": "Model 7266", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.137258661551776, + 26.241545279554003 + ] + }, + "properties": { + "id": "meter-7267", + "maker": "Maker F", + "model": "Model 7267", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61493367674122, + 21.44745153405885 + ] + }, + "properties": { + "id": "meter-7268", + "maker": "Maker E", + "model": "Model 7268", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.82179824384249, + 28.498502369751673 + ] + }, + "properties": { + "id": "meter-7269", + "maker": "Maker G", + "model": "Model 7269", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.10130958235739, + 29.950137691186253 + ] + }, + "properties": { + "id": "meter-7270", + "maker": "Maker E", + "model": "Model 7270", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.202403612299314, + 21.386617981756384 + ] + }, + "properties": { + "id": "meter-7271", + "maker": "Maker A", + "model": "Model 7271", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.75968358403653, + 18.22246879223067 + ] + }, + "properties": { + "id": "meter-7272", + "maker": "Maker E", + "model": "Model 7272", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01798919671101, + 26.524363123167173 + ] + }, + "properties": { + "id": "meter-7273", + "maker": "Maker H", + "model": "Model 7273", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.240850211541286, + 21.503589338655768 + ] + }, + "properties": { + "id": "meter-7274", + "maker": "Maker H", + "model": "Model 7274", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.863973832415915, + 26.260589522958533 + ] + }, + "properties": { + "id": "meter-7275", + "maker": "Maker E", + "model": "Model 7275", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03261572658375, + 17.504206454229035 + ] + }, + "properties": { + "id": "meter-7276", + "maker": "Maker F", + "model": "Model 7276", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.61230629049136, + 19.93438170817207 + ] + }, + "properties": { + "id": "meter-7277", + "maker": "Maker B", + "model": "Model 7277", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.10286664715157, + 24.155808218041905 + ] + }, + "properties": { + "id": "meter-7278", + "maker": "Maker H", + "model": "Model 7278", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99167218021742, + 26.49443397455102 + ] + }, + "properties": { + "id": "meter-7279", + "maker": "Maker H", + "model": "Model 7279", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.353665751056695, + 21.417151617478382 + ] + }, + "properties": { + "id": "meter-7280", + "maker": "Maker I", + "model": "Model 7280", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.345563514763946, + 28.308923984655596 + ] + }, + "properties": { + "id": "meter-7281", + "maker": "Maker E", + "model": "Model 7281", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.10508154318111, + 31.023097654019317 + ] + }, + "properties": { + "id": "meter-7282", + "maker": "Maker J", + "model": "Model 7282", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67585489895104, + 24.70506263455762 + ] + }, + "properties": { + "id": "meter-7283", + "maker": "Maker H", + "model": "Model 7283", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14615615444955, + 26.414403705747063 + ] + }, + "properties": { + "id": "meter-7284", + "maker": "Maker G", + "model": "Model 7284", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.61997708033868, + 20.151030956028407 + ] + }, + "properties": { + "id": "meter-7285", + "maker": "Maker A", + "model": "Model 7285", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47314259019761, + 20.10832818918883 + ] + }, + "properties": { + "id": "meter-7286", + "maker": "Maker F", + "model": "Model 7286", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.69970597214726, + 24.730119980534994 + ] + }, + "properties": { + "id": "meter-7287", + "maker": "Maker I", + "model": "Model 7287", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.114765791657824, + 24.283125258494263 + ] + }, + "properties": { + "id": "meter-7288", + "maker": "Maker A", + "model": "Model 7288", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05131936935444, + 24.104810803216164 + ] + }, + "properties": { + "id": "meter-7289", + "maker": "Maker J", + "model": "Model 7289", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.11605775399241, + 21.56238095795816 + ] + }, + "properties": { + "id": "meter-7290", + "maker": "Maker E", + "model": "Model 7290", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94154725724681, + 26.252605627924332 + ] + }, + "properties": { + "id": "meter-7291", + "maker": "Maker H", + "model": "Model 7291", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.64455155430396, + 27.80674327094361 + ] + }, + "properties": { + "id": "meter-7292", + "maker": "Maker E", + "model": "Model 7292", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.63503874112112, + 24.827209831045657 + ] + }, + "properties": { + "id": "meter-7293", + "maker": "Maker F", + "model": "Model 7293", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98466331498113, + 26.267244746914788 + ] + }, + "properties": { + "id": "meter-7294", + "maker": "Maker D", + "model": "Model 7294", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.71043264041689, + 24.479215713379258 + ] + }, + "properties": { + "id": "meter-7295", + "maker": "Maker J", + "model": "Model 7295", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.117274405200064, + 24.04153818466392 + ] + }, + "properties": { + "id": "meter-7296", + "maker": "Maker E", + "model": "Model 7296", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.20957578349189, + 21.66420267067278 + ] + }, + "properties": { + "id": "meter-7297", + "maker": "Maker D", + "model": "Model 7297", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.722225053889424, + 18.408350249524254 + ] + }, + "properties": { + "id": "meter-7298", + "maker": "Maker I", + "model": "Model 7298", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.577900374087164, + 18.13889835578379 + ] + }, + "properties": { + "id": "meter-7299", + "maker": "Maker B", + "model": "Model 7299", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.397909946300295, + 24.619798702770897 + ] + }, + "properties": { + "id": "meter-7300", + "maker": "Maker G", + "model": "Model 7300", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.1334154585613, + 30.917470080328346 + ] + }, + "properties": { + "id": "meter-7301", + "maker": "Maker D", + "model": "Model 7301", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.983317864889365, + 26.319745219900344 + ] + }, + "properties": { + "id": "meter-7302", + "maker": "Maker F", + "model": "Model 7302", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10009840838127, + 26.322224320929912 + ] + }, + "properties": { + "id": "meter-7303", + "maker": "Maker F", + "model": "Model 7303", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.4379936262451, + 21.707928885819836 + ] + }, + "properties": { + "id": "meter-7304", + "maker": "Maker E", + "model": "Model 7304", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.144964495263046, + 26.156734781535057 + ] + }, + "properties": { + "id": "meter-7305", + "maker": "Maker E", + "model": "Model 7305", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42355689479572, + 20.00867604454874 + ] + }, + "properties": { + "id": "meter-7306", + "maker": "Maker B", + "model": "Model 7306", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.939631624665594, + 30.91113127100881 + ] + }, + "properties": { + "id": "meter-7307", + "maker": "Maker C", + "model": "Model 7307", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.56329654459678, + 28.424478947042015 + ] + }, + "properties": { + "id": "meter-7308", + "maker": "Maker G", + "model": "Model 7308", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.114958637830696, + 29.85770598233288 + ] + }, + "properties": { + "id": "meter-7309", + "maker": "Maker H", + "model": "Model 7309", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.969253024788195, + 26.40783458639481 + ] + }, + "properties": { + "id": "meter-7310", + "maker": "Maker D", + "model": "Model 7310", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66713039617777, + 18.252039562462855 + ] + }, + "properties": { + "id": "meter-7311", + "maker": "Maker E", + "model": "Model 7311", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.3333989340517, + 17.44799798549375 + ] + }, + "properties": { + "id": "meter-7312", + "maker": "Maker G", + "model": "Model 7312", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1359407658725, + 26.344993419914463 + ] + }, + "properties": { + "id": "meter-7313", + "maker": "Maker G", + "model": "Model 7313", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23243045352591, + 29.882460098120387 + ] + }, + "properties": { + "id": "meter-7314", + "maker": "Maker C", + "model": "Model 7314", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.704574425647486, + 26.325264961697894 + ] + }, + "properties": { + "id": "meter-7315", + "maker": "Maker G", + "model": "Model 7315", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.713901573836054, + 28.506374015151046 + ] + }, + "properties": { + "id": "meter-7316", + "maker": "Maker G", + "model": "Model 7316", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.0508419387375, + 31.010582978264104 + ] + }, + "properties": { + "id": "meter-7317", + "maker": "Maker C", + "model": "Model 7317", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.67443692046591, + 28.384925344844756 + ] + }, + "properties": { + "id": "meter-7318", + "maker": "Maker F", + "model": "Model 7318", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.998434333899624, + 31.049940541761597 + ] + }, + "properties": { + "id": "meter-7319", + "maker": "Maker I", + "model": "Model 7319", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.70148002648387, + 28.341060524094015 + ] + }, + "properties": { + "id": "meter-7320", + "maker": "Maker A", + "model": "Model 7320", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91446343769535, + 26.3670108300024 + ] + }, + "properties": { + "id": "meter-7321", + "maker": "Maker I", + "model": "Model 7321", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.67522008161805, + 28.257911516577913 + ] + }, + "properties": { + "id": "meter-7322", + "maker": "Maker B", + "model": "Model 7322", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03685855847954, + 30.810403552643642 + ] + }, + "properties": { + "id": "meter-7323", + "maker": "Maker I", + "model": "Model 7323", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03241829280867, + 17.587192878787494 + ] + }, + "properties": { + "id": "meter-7324", + "maker": "Maker D", + "model": "Model 7324", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50089011838838, + 18.25651422423322 + ] + }, + "properties": { + "id": "meter-7325", + "maker": "Maker F", + "model": "Model 7325", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.16096397531158, + 21.590286905957356 + ] + }, + "properties": { + "id": "meter-7326", + "maker": "Maker A", + "model": "Model 7326", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.159430531812966, + 26.35017347858103 + ] + }, + "properties": { + "id": "meter-7327", + "maker": "Maker H", + "model": "Model 7327", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.71811868645822, + 27.662169768617936 + ] + }, + "properties": { + "id": "meter-7328", + "maker": "Maker E", + "model": "Model 7328", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.6356401416518, + 24.732080849223834 + ] + }, + "properties": { + "id": "meter-7329", + "maker": "Maker H", + "model": "Model 7329", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.56255725828292, + 24.29424715363378 + ] + }, + "properties": { + "id": "meter-7330", + "maker": "Maker I", + "model": "Model 7330", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69772529552143, + 18.173022826284175 + ] + }, + "properties": { + "id": "meter-7331", + "maker": "Maker G", + "model": "Model 7331", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.16575725516566, + 26.196873405416422 + ] + }, + "properties": { + "id": "meter-7332", + "maker": "Maker C", + "model": "Model 7332", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01207574130582, + 26.293917364328646 + ] + }, + "properties": { + "id": "meter-7333", + "maker": "Maker F", + "model": "Model 7333", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.84180726756712, + 26.555726759773187 + ] + }, + "properties": { + "id": "meter-7334", + "maker": "Maker G", + "model": "Model 7334", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.009294855452914, + 26.439271680282914 + ] + }, + "properties": { + "id": "meter-7335", + "maker": "Maker G", + "model": "Model 7335", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62767039740495, + 27.42012743345213 + ] + }, + "properties": { + "id": "meter-7336", + "maker": "Maker J", + "model": "Model 7336", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.258009213431656, + 17.516781897470683 + ] + }, + "properties": { + "id": "meter-7337", + "maker": "Maker J", + "model": "Model 7337", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.04564852853105, + 26.40426022872738 + ] + }, + "properties": { + "id": "meter-7338", + "maker": "Maker A", + "model": "Model 7338", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.071208300712506, + 24.215841134753674 + ] + }, + "properties": { + "id": "meter-7339", + "maker": "Maker H", + "model": "Model 7339", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.263898674818485, + 31.02255917739661 + ] + }, + "properties": { + "id": "meter-7340", + "maker": "Maker C", + "model": "Model 7340", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.909720946693525, + 24.321775567610267 + ] + }, + "properties": { + "id": "meter-7341", + "maker": "Maker F", + "model": "Model 7341", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10349313087547, + 17.433949385422135 + ] + }, + "properties": { + "id": "meter-7342", + "maker": "Maker A", + "model": "Model 7342", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.0400872370287, + 30.926927754246496 + ] + }, + "properties": { + "id": "meter-7343", + "maker": "Maker B", + "model": "Model 7343", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.421286880004, + 20.040230604285814 + ] + }, + "properties": { + "id": "meter-7344", + "maker": "Maker C", + "model": "Model 7344", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.690669578020895, + 28.17201222332023 + ] + }, + "properties": { + "id": "meter-7345", + "maker": "Maker C", + "model": "Model 7345", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.685595445421235, + 21.384590622577328 + ] + }, + "properties": { + "id": "meter-7346", + "maker": "Maker C", + "model": "Model 7346", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.55673622184092, + 18.257784147360272 + ] + }, + "properties": { + "id": "meter-7347", + "maker": "Maker I", + "model": "Model 7347", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.94894404130455, + 31.114364002386402 + ] + }, + "properties": { + "id": "meter-7348", + "maker": "Maker C", + "model": "Model 7348", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.75008947793989, + 25.354407755511264 + ] + }, + "properties": { + "id": "meter-7349", + "maker": "Maker E", + "model": "Model 7349", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.47176218218868, + 28.198798753395945 + ] + }, + "properties": { + "id": "meter-7350", + "maker": "Maker I", + "model": "Model 7350", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81946845060098, + 21.271950476564484 + ] + }, + "properties": { + "id": "meter-7351", + "maker": "Maker G", + "model": "Model 7351", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.44578388719958, + 18.173891172342863 + ] + }, + "properties": { + "id": "meter-7352", + "maker": "Maker B", + "model": "Model 7352", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98427445712479, + 26.305983765166808 + ] + }, + "properties": { + "id": "meter-7353", + "maker": "Maker G", + "model": "Model 7353", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.10510428700823, + 29.848944586687356 + ] + }, + "properties": { + "id": "meter-7354", + "maker": "Maker I", + "model": "Model 7354", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.95412453486657, + 17.64268192556235 + ] + }, + "properties": { + "id": "meter-7355", + "maker": "Maker D", + "model": "Model 7355", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.607379011793995, + 28.504575691406252 + ] + }, + "properties": { + "id": "meter-7356", + "maker": "Maker A", + "model": "Model 7356", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.994351820211236, + 17.583773635580812 + ] + }, + "properties": { + "id": "meter-7357", + "maker": "Maker J", + "model": "Model 7357", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17006801721899, + 26.34583403471082 + ] + }, + "properties": { + "id": "meter-7358", + "maker": "Maker E", + "model": "Model 7358", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.153634127309054, + 26.28512933957131 + ] + }, + "properties": { + "id": "meter-7359", + "maker": "Maker B", + "model": "Model 7359", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.418124895438986, + 28.453914995420572 + ] + }, + "properties": { + "id": "meter-7360", + "maker": "Maker G", + "model": "Model 7360", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.46822198382359, + 28.155162665920972 + ] + }, + "properties": { + "id": "meter-7361", + "maker": "Maker F", + "model": "Model 7361", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.16131704258083, + 26.106159024219373 + ] + }, + "properties": { + "id": "meter-7362", + "maker": "Maker F", + "model": "Model 7362", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.817471117254016, + 24.902539129893608 + ] + }, + "properties": { + "id": "meter-7363", + "maker": "Maker B", + "model": "Model 7363", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.676395010676856, + 24.935272412583565 + ] + }, + "properties": { + "id": "meter-7364", + "maker": "Maker G", + "model": "Model 7364", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.59632352213421, + 18.281196238864243 + ] + }, + "properties": { + "id": "meter-7365", + "maker": "Maker J", + "model": "Model 7365", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.71132559589226, + 24.28531399347699 + ] + }, + "properties": { + "id": "meter-7366", + "maker": "Maker J", + "model": "Model 7366", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.82593183729203, + 26.544676491944987 + ] + }, + "properties": { + "id": "meter-7367", + "maker": "Maker H", + "model": "Model 7367", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.63768179739567, + 28.400460285527604 + ] + }, + "properties": { + "id": "meter-7368", + "maker": "Maker I", + "model": "Model 7368", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1826876708088, + 26.367137852230183 + ] + }, + "properties": { + "id": "meter-7369", + "maker": "Maker F", + "model": "Model 7369", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.994232215351396, + 26.48195236964963 + ] + }, + "properties": { + "id": "meter-7370", + "maker": "Maker H", + "model": "Model 7370", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.25289089716824, + 29.759771045136123 + ] + }, + "properties": { + "id": "meter-7371", + "maker": "Maker I", + "model": "Model 7371", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.125188119724974, + 26.437385546483075 + ] + }, + "properties": { + "id": "meter-7372", + "maker": "Maker F", + "model": "Model 7372", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.121354697314224, + 30.825790434325835 + ] + }, + "properties": { + "id": "meter-7373", + "maker": "Maker I", + "model": "Model 7373", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96453714436966, + 26.501170638273187 + ] + }, + "properties": { + "id": "meter-7374", + "maker": "Maker H", + "model": "Model 7374", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.86058052977026, + 28.262166891238223 + ] + }, + "properties": { + "id": "meter-7375", + "maker": "Maker G", + "model": "Model 7375", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0608563548084, + 26.40998300748636 + ] + }, + "properties": { + "id": "meter-7376", + "maker": "Maker G", + "model": "Model 7376", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.329341931630545, + 21.508503398234076 + ] + }, + "properties": { + "id": "meter-7377", + "maker": "Maker E", + "model": "Model 7377", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.69455144845056, + 21.19805787461685 + ] + }, + "properties": { + "id": "meter-7378", + "maker": "Maker H", + "model": "Model 7378", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.3799911970929, + 17.547087817123465 + ] + }, + "properties": { + "id": "meter-7379", + "maker": "Maker I", + "model": "Model 7379", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.76138151433345, + 24.832608057302913 + ] + }, + "properties": { + "id": "meter-7380", + "maker": "Maker H", + "model": "Model 7380", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.94906227387049, + 31.23112118122496 + ] + }, + "properties": { + "id": "meter-7381", + "maker": "Maker G", + "model": "Model 7381", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98313054178499, + 26.523528466036343 + ] + }, + "properties": { + "id": "meter-7382", + "maker": "Maker E", + "model": "Model 7382", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.23607807620799, + 24.080329729234812 + ] + }, + "properties": { + "id": "meter-7383", + "maker": "Maker C", + "model": "Model 7383", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50923465716592, + 18.450411651012057 + ] + }, + "properties": { + "id": "meter-7384", + "maker": "Maker C", + "model": "Model 7384", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.4901405444631, + 28.339358983924445 + ] + }, + "properties": { + "id": "meter-7385", + "maker": "Maker C", + "model": "Model 7385", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.68383736378683, + 27.482383321658155 + ] + }, + "properties": { + "id": "meter-7386", + "maker": "Maker J", + "model": "Model 7386", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.79009642401484, + 28.50144970017967 + ] + }, + "properties": { + "id": "meter-7387", + "maker": "Maker F", + "model": "Model 7387", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96594347972084, + 26.39887756078475 + ] + }, + "properties": { + "id": "meter-7388", + "maker": "Maker H", + "model": "Model 7388", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.5494805967442, + 24.749292677265984 + ] + }, + "properties": { + "id": "meter-7389", + "maker": "Maker H", + "model": "Model 7389", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.16216817139248, + 24.049801694461483 + ] + }, + "properties": { + "id": "meter-7390", + "maker": "Maker F", + "model": "Model 7390", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.33196238556227, + 18.17519318976804 + ] + }, + "properties": { + "id": "meter-7391", + "maker": "Maker E", + "model": "Model 7391", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.15467245456637, + 21.764939603060355 + ] + }, + "properties": { + "id": "meter-7392", + "maker": "Maker J", + "model": "Model 7392", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20739048631336, + 29.97075198534652 + ] + }, + "properties": { + "id": "meter-7393", + "maker": "Maker J", + "model": "Model 7393", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96359448041609, + 26.483069871739943 + ] + }, + "properties": { + "id": "meter-7394", + "maker": "Maker F", + "model": "Model 7394", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68283765438777, + 24.71626525720755 + ] + }, + "properties": { + "id": "meter-7395", + "maker": "Maker G", + "model": "Model 7395", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45910457066333, + 18.344494843121407 + ] + }, + "properties": { + "id": "meter-7396", + "maker": "Maker E", + "model": "Model 7396", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97646605388594, + 26.480496650452412 + ] + }, + "properties": { + "id": "meter-7397", + "maker": "Maker A", + "model": "Model 7397", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.722873302078476, + 27.6176051486894 + ] + }, + "properties": { + "id": "meter-7398", + "maker": "Maker G", + "model": "Model 7398", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20134742306356, + 29.97803914127885 + ] + }, + "properties": { + "id": "meter-7399", + "maker": "Maker J", + "model": "Model 7399", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.17963925301164, + 30.992343067430916 + ] + }, + "properties": { + "id": "meter-7400", + "maker": "Maker C", + "model": "Model 7400", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46222074466195, + 20.014722455616525 + ] + }, + "properties": { + "id": "meter-7401", + "maker": "Maker E", + "model": "Model 7401", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.15214136742677, + 17.49890418341701 + ] + }, + "properties": { + "id": "meter-7402", + "maker": "Maker G", + "model": "Model 7402", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07996660467475, + 24.14929989901687 + ] + }, + "properties": { + "id": "meter-7403", + "maker": "Maker A", + "model": "Model 7403", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.8494394808624, + 21.410944804903036 + ] + }, + "properties": { + "id": "meter-7404", + "maker": "Maker C", + "model": "Model 7404", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.091793426034116, + 29.865121656856843 + ] + }, + "properties": { + "id": "meter-7405", + "maker": "Maker J", + "model": "Model 7405", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.00647972143077, + 30.89077595943553 + ] + }, + "properties": { + "id": "meter-7406", + "maker": "Maker B", + "model": "Model 7406", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.34132507634046, + 29.850957937576357 + ] + }, + "properties": { + "id": "meter-7407", + "maker": "Maker E", + "model": "Model 7407", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.68804692719073, + 27.560011973776344 + ] + }, + "properties": { + "id": "meter-7408", + "maker": "Maker I", + "model": "Model 7408", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.26708572129768, + 17.45232426751201 + ] + }, + "properties": { + "id": "meter-7409", + "maker": "Maker F", + "model": "Model 7409", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.19246220307736, + 20.12525527157871 + ] + }, + "properties": { + "id": "meter-7410", + "maker": "Maker J", + "model": "Model 7410", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.018802944953414, + 21.31183201318688 + ] + }, + "properties": { + "id": "meter-7411", + "maker": "Maker E", + "model": "Model 7411", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.41395832665541, + 18.151381078927116 + ] + }, + "properties": { + "id": "meter-7412", + "maker": "Maker G", + "model": "Model 7412", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.85522694086669, + 31.134036061249887 + ] + }, + "properties": { + "id": "meter-7413", + "maker": "Maker G", + "model": "Model 7413", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.083718349893836, + 21.400097204904394 + ] + }, + "properties": { + "id": "meter-7414", + "maker": "Maker F", + "model": "Model 7414", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.595015668069244, + 18.056850685699146 + ] + }, + "properties": { + "id": "meter-7415", + "maker": "Maker A", + "model": "Model 7415", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.229874012203624, + 20.007240053607443 + ] + }, + "properties": { + "id": "meter-7416", + "maker": "Maker C", + "model": "Model 7416", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61328070292219, + 24.462236924758074 + ] + }, + "properties": { + "id": "meter-7417", + "maker": "Maker B", + "model": "Model 7417", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.169574653489505, + 26.301525690721245 + ] + }, + "properties": { + "id": "meter-7418", + "maker": "Maker E", + "model": "Model 7418", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.38347365808587, + 18.245967899561684 + ] + }, + "properties": { + "id": "meter-7419", + "maker": "Maker G", + "model": "Model 7419", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09823458594102, + 26.36176381598246 + ] + }, + "properties": { + "id": "meter-7420", + "maker": "Maker C", + "model": "Model 7420", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.2202088135938, + 30.052909028118286 + ] + }, + "properties": { + "id": "meter-7421", + "maker": "Maker B", + "model": "Model 7421", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98980250362455, + 26.030432108678173 + ] + }, + "properties": { + "id": "meter-7422", + "maker": "Maker E", + "model": "Model 7422", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50209150765406, + 18.348503351739037 + ] + }, + "properties": { + "id": "meter-7423", + "maker": "Maker H", + "model": "Model 7423", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.80053808735395, + 26.155905202939977 + ] + }, + "properties": { + "id": "meter-7424", + "maker": "Maker G", + "model": "Model 7424", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.81468901011336, + 26.585927249824284 + ] + }, + "properties": { + "id": "meter-7425", + "maker": "Maker B", + "model": "Model 7425", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.5828187583893, + 20.032223958350794 + ] + }, + "properties": { + "id": "meter-7426", + "maker": "Maker D", + "model": "Model 7426", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.85139229923841, + 17.48400512107658 + ] + }, + "properties": { + "id": "meter-7427", + "maker": "Maker C", + "model": "Model 7427", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10435991598722, + 26.2252364476681 + ] + }, + "properties": { + "id": "meter-7428", + "maker": "Maker G", + "model": "Model 7428", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.8665668624405, + 21.529029505758963 + ] + }, + "properties": { + "id": "meter-7429", + "maker": "Maker I", + "model": "Model 7429", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.824872456480705, + 28.45852946793215 + ] + }, + "properties": { + "id": "meter-7430", + "maker": "Maker D", + "model": "Model 7430", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.59414671776076, + 21.282348318724203 + ] + }, + "properties": { + "id": "meter-7431", + "maker": "Maker F", + "model": "Model 7431", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.026524683752314, + 26.50089367976898 + ] + }, + "properties": { + "id": "meter-7432", + "maker": "Maker I", + "model": "Model 7432", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.20049129649273, + 31.156790965415755 + ] + }, + "properties": { + "id": "meter-7433", + "maker": "Maker A", + "model": "Model 7433", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.51722712555099, + 24.74541336582453 + ] + }, + "properties": { + "id": "meter-7434", + "maker": "Maker J", + "model": "Model 7434", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.56666999321853, + 24.518846290029003 + ] + }, + "properties": { + "id": "meter-7435", + "maker": "Maker J", + "model": "Model 7435", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.987475251636354, + 26.120103952068643 + ] + }, + "properties": { + "id": "meter-7436", + "maker": "Maker D", + "model": "Model 7436", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.56719547679946, + 27.531541056320687 + ] + }, + "properties": { + "id": "meter-7437", + "maker": "Maker D", + "model": "Model 7437", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.734833134245775, + 28.495823113351623 + ] + }, + "properties": { + "id": "meter-7438", + "maker": "Maker C", + "model": "Model 7438", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.30538139859892, + 21.472813798223626 + ] + }, + "properties": { + "id": "meter-7439", + "maker": "Maker G", + "model": "Model 7439", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.029197141379086, + 31.098316617863148 + ] + }, + "properties": { + "id": "meter-7440", + "maker": "Maker D", + "model": "Model 7440", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93550650904992, + 26.355430313878724 + ] + }, + "properties": { + "id": "meter-7441", + "maker": "Maker A", + "model": "Model 7441", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21170294796101, + 26.27866368979528 + ] + }, + "properties": { + "id": "meter-7442", + "maker": "Maker H", + "model": "Model 7442", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81431129571194, + 24.56912063410018 + ] + }, + "properties": { + "id": "meter-7443", + "maker": "Maker J", + "model": "Model 7443", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.65769806061962, + 28.68432591207569 + ] + }, + "properties": { + "id": "meter-7444", + "maker": "Maker H", + "model": "Model 7444", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.945451676587396, + 30.017859824727186 + ] + }, + "properties": { + "id": "meter-7445", + "maker": "Maker C", + "model": "Model 7445", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.755138508782046, + 18.261009867653026 + ] + }, + "properties": { + "id": "meter-7446", + "maker": "Maker I", + "model": "Model 7446", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.162282403470385, + 29.970684730829184 + ] + }, + "properties": { + "id": "meter-7447", + "maker": "Maker A", + "model": "Model 7447", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.807663882623814, + 18.414864440183557 + ] + }, + "properties": { + "id": "meter-7448", + "maker": "Maker E", + "model": "Model 7448", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04769717820382, + 17.516234245117793 + ] + }, + "properties": { + "id": "meter-7449", + "maker": "Maker F", + "model": "Model 7449", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03179195971357, + 31.042005846269667 + ] + }, + "properties": { + "id": "meter-7450", + "maker": "Maker I", + "model": "Model 7450", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.4632288901404, + 28.27372900015846 + ] + }, + "properties": { + "id": "meter-7451", + "maker": "Maker E", + "model": "Model 7451", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95223754982623, + 26.60725679111171 + ] + }, + "properties": { + "id": "meter-7452", + "maker": "Maker A", + "model": "Model 7452", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98097476477867, + 26.416445678570298 + ] + }, + "properties": { + "id": "meter-7453", + "maker": "Maker G", + "model": "Model 7453", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23195870670731, + 21.216313509071757 + ] + }, + "properties": { + "id": "meter-7454", + "maker": "Maker F", + "model": "Model 7454", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.745809705749515, + 21.61644876746723 + ] + }, + "properties": { + "id": "meter-7455", + "maker": "Maker H", + "model": "Model 7455", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.08576460762741, + 24.13053008649052 + ] + }, + "properties": { + "id": "meter-7456", + "maker": "Maker F", + "model": "Model 7456", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.061420058093, + 26.271463669019383 + ] + }, + "properties": { + "id": "meter-7457", + "maker": "Maker E", + "model": "Model 7457", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.18709498047936, + 30.938114041350786 + ] + }, + "properties": { + "id": "meter-7458", + "maker": "Maker D", + "model": "Model 7458", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.54723668847369, + 19.934406626776717 + ] + }, + "properties": { + "id": "meter-7459", + "maker": "Maker F", + "model": "Model 7459", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.70345228882454, + 25.096565074585985 + ] + }, + "properties": { + "id": "meter-7460", + "maker": "Maker A", + "model": "Model 7460", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.200488559310614, + 26.3099847217077 + ] + }, + "properties": { + "id": "meter-7461", + "maker": "Maker G", + "model": "Model 7461", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.46094930830184, + 21.309938699900425 + ] + }, + "properties": { + "id": "meter-7462", + "maker": "Maker D", + "model": "Model 7462", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.82314959624688, + 18.279491242261617 + ] + }, + "properties": { + "id": "meter-7463", + "maker": "Maker D", + "model": "Model 7463", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24510028923932, + 21.33430275469457 + ] + }, + "properties": { + "id": "meter-7464", + "maker": "Maker B", + "model": "Model 7464", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.64366804221247, + 18.267582096214376 + ] + }, + "properties": { + "id": "meter-7465", + "maker": "Maker J", + "model": "Model 7465", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.55006956052267, + 25.48579444480757 + ] + }, + "properties": { + "id": "meter-7466", + "maker": "Maker F", + "model": "Model 7466", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.271731754719426, + 21.63277608118058 + ] + }, + "properties": { + "id": "meter-7467", + "maker": "Maker E", + "model": "Model 7467", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.41034908997095, + 21.447573946968973 + ] + }, + "properties": { + "id": "meter-7468", + "maker": "Maker J", + "model": "Model 7468", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.69279090028763, + 24.68526228940271 + ] + }, + "properties": { + "id": "meter-7469", + "maker": "Maker B", + "model": "Model 7469", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.562478859335066, + 18.402670293463615 + ] + }, + "properties": { + "id": "meter-7470", + "maker": "Maker I", + "model": "Model 7470", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62696498256909, + 27.4576682281567 + ] + }, + "properties": { + "id": "meter-7471", + "maker": "Maker A", + "model": "Model 7471", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.72259907308104, + 27.53063443746206 + ] + }, + "properties": { + "id": "meter-7472", + "maker": "Maker I", + "model": "Model 7472", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.37781576796626, + 18.149783730064378 + ] + }, + "properties": { + "id": "meter-7473", + "maker": "Maker H", + "model": "Model 7473", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.011481880225624, + 26.49476077068971 + ] + }, + "properties": { + "id": "meter-7474", + "maker": "Maker E", + "model": "Model 7474", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.729968308947164, + 24.593879348140362 + ] + }, + "properties": { + "id": "meter-7475", + "maker": "Maker G", + "model": "Model 7475", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23252271341251, + 29.88468770696311 + ] + }, + "properties": { + "id": "meter-7476", + "maker": "Maker D", + "model": "Model 7476", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.669337342576526, + 24.89301793781061 + ] + }, + "properties": { + "id": "meter-7477", + "maker": "Maker C", + "model": "Model 7477", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.987752188720684, + 26.347498891153425 + ] + }, + "properties": { + "id": "meter-7478", + "maker": "Maker E", + "model": "Model 7478", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66204078421981, + 18.338024749619844 + ] + }, + "properties": { + "id": "meter-7479", + "maker": "Maker E", + "model": "Model 7479", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19653754145119, + 26.271580897600998 + ] + }, + "properties": { + "id": "meter-7480", + "maker": "Maker A", + "model": "Model 7480", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.61690073061306, + 28.397726105348003 + ] + }, + "properties": { + "id": "meter-7481", + "maker": "Maker F", + "model": "Model 7481", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.469704464908986, + 21.58122333473133 + ] + }, + "properties": { + "id": "meter-7482", + "maker": "Maker F", + "model": "Model 7482", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.41013455849069, + 19.844460084652468 + ] + }, + "properties": { + "id": "meter-7483", + "maker": "Maker H", + "model": "Model 7483", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93200965156979, + 26.315767702837384 + ] + }, + "properties": { + "id": "meter-7484", + "maker": "Maker G", + "model": "Model 7484", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.47360639951399, + 18.19127043947501 + ] + }, + "properties": { + "id": "meter-7485", + "maker": "Maker E", + "model": "Model 7485", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18925424758083, + 26.36215437996548 + ] + }, + "properties": { + "id": "meter-7486", + "maker": "Maker J", + "model": "Model 7486", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.152682539966165, + 26.345574644405062 + ] + }, + "properties": { + "id": "meter-7487", + "maker": "Maker H", + "model": "Model 7487", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.186976394656234, + 26.234620568178073 + ] + }, + "properties": { + "id": "meter-7488", + "maker": "Maker D", + "model": "Model 7488", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.60488965136055, + 28.430844807258357 + ] + }, + "properties": { + "id": "meter-7489", + "maker": "Maker H", + "model": "Model 7489", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.63010669564368, + 27.618993388965848 + ] + }, + "properties": { + "id": "meter-7490", + "maker": "Maker C", + "model": "Model 7490", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18195780846451, + 26.30621322116622 + ] + }, + "properties": { + "id": "meter-7491", + "maker": "Maker E", + "model": "Model 7491", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.00141645582354, + 29.793706614400033 + ] + }, + "properties": { + "id": "meter-7492", + "maker": "Maker A", + "model": "Model 7492", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.527841489408594, + 20.168895083590964 + ] + }, + "properties": { + "id": "meter-7493", + "maker": "Maker E", + "model": "Model 7493", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.839200827959786, + 26.702611531917075 + ] + }, + "properties": { + "id": "meter-7494", + "maker": "Maker J", + "model": "Model 7494", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.152962455526506, + 26.39734288509964 + ] + }, + "properties": { + "id": "meter-7495", + "maker": "Maker I", + "model": "Model 7495", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.633577832966665, + 18.203497865455734 + ] + }, + "properties": { + "id": "meter-7496", + "maker": "Maker A", + "model": "Model 7496", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.211466331365806, + 21.513228421228117 + ] + }, + "properties": { + "id": "meter-7497", + "maker": "Maker I", + "model": "Model 7497", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4046796108905, + 20.10933947096982 + ] + }, + "properties": { + "id": "meter-7498", + "maker": "Maker I", + "model": "Model 7498", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.76839912839654, + 24.711426397206093 + ] + }, + "properties": { + "id": "meter-7499", + "maker": "Maker B", + "model": "Model 7499", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.04766515440112, + 31.07945048344011 + ] + }, + "properties": { + "id": "meter-7500", + "maker": "Maker G", + "model": "Model 7500", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85820124802646, + 21.386237659650085 + ] + }, + "properties": { + "id": "meter-7501", + "maker": "Maker F", + "model": "Model 7501", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.6469336500789, + 25.19967413515913 + ] + }, + "properties": { + "id": "meter-7502", + "maker": "Maker D", + "model": "Model 7502", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94056824719464, + 26.305073404381222 + ] + }, + "properties": { + "id": "meter-7503", + "maker": "Maker G", + "model": "Model 7503", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.63745977336718, + 25.590851290512802 + ] + }, + "properties": { + "id": "meter-7504", + "maker": "Maker G", + "model": "Model 7504", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.54953612669928, + 18.1959359973214 + ] + }, + "properties": { + "id": "meter-7505", + "maker": "Maker C", + "model": "Model 7505", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.89577627905361, + 26.633755914162176 + ] + }, + "properties": { + "id": "meter-7506", + "maker": "Maker G", + "model": "Model 7506", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.972266273767204, + 24.149920759254293 + ] + }, + "properties": { + "id": "meter-7507", + "maker": "Maker D", + "model": "Model 7507", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73361529125559, + 18.386088656092973 + ] + }, + "properties": { + "id": "meter-7508", + "maker": "Maker H", + "model": "Model 7508", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21497698175406, + 29.984752395388494 + ] + }, + "properties": { + "id": "meter-7509", + "maker": "Maker G", + "model": "Model 7509", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.07674218026241, + 26.58924846812586 + ] + }, + "properties": { + "id": "meter-7510", + "maker": "Maker E", + "model": "Model 7510", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.703392631242814, + 24.70640939282862 + ] + }, + "properties": { + "id": "meter-7511", + "maker": "Maker A", + "model": "Model 7511", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.011508075612284, + 30.979600062602362 + ] + }, + "properties": { + "id": "meter-7512", + "maker": "Maker J", + "model": "Model 7512", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48589699927082, + 19.815505264363768 + ] + }, + "properties": { + "id": "meter-7513", + "maker": "Maker E", + "model": "Model 7513", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.87241060378676, + 21.247332463175834 + ] + }, + "properties": { + "id": "meter-7514", + "maker": "Maker E", + "model": "Model 7514", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10059844853887, + 17.47245912242175 + ] + }, + "properties": { + "id": "meter-7515", + "maker": "Maker B", + "model": "Model 7515", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.466465101819615, + 18.172698435004467 + ] + }, + "properties": { + "id": "meter-7516", + "maker": "Maker F", + "model": "Model 7516", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.11591447074435, + 21.363300262033825 + ] + }, + "properties": { + "id": "meter-7517", + "maker": "Maker G", + "model": "Model 7517", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.21785601709905, + 17.429373170019467 + ] + }, + "properties": { + "id": "meter-7518", + "maker": "Maker B", + "model": "Model 7518", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.89357274834614, + 30.71300602593988 + ] + }, + "properties": { + "id": "meter-7519", + "maker": "Maker G", + "model": "Model 7519", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.837933440259846, + 21.39052041454242 + ] + }, + "properties": { + "id": "meter-7520", + "maker": "Maker G", + "model": "Model 7520", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.730897994001076, + 18.293073495371107 + ] + }, + "properties": { + "id": "meter-7521", + "maker": "Maker F", + "model": "Model 7521", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.70806688257246, + 18.3302412636852 + ] + }, + "properties": { + "id": "meter-7522", + "maker": "Maker C", + "model": "Model 7522", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.36732728145871, + 30.11409488890158 + ] + }, + "properties": { + "id": "meter-7523", + "maker": "Maker E", + "model": "Model 7523", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.7094053400559, + 25.318333129992205 + ] + }, + "properties": { + "id": "meter-7524", + "maker": "Maker I", + "model": "Model 7524", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.95864362294572, + 17.687893849021 + ] + }, + "properties": { + "id": "meter-7525", + "maker": "Maker B", + "model": "Model 7525", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.6477332025874, + 25.603842445024704 + ] + }, + "properties": { + "id": "meter-7526", + "maker": "Maker I", + "model": "Model 7526", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.85622912830968, + 26.565714246875682 + ] + }, + "properties": { + "id": "meter-7527", + "maker": "Maker J", + "model": "Model 7527", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.983906209365784, + 26.52262994040524 + ] + }, + "properties": { + "id": "meter-7528", + "maker": "Maker F", + "model": "Model 7528", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.64309554850696, + 25.285486688384957 + ] + }, + "properties": { + "id": "meter-7529", + "maker": "Maker F", + "model": "Model 7529", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.66862655623532, + 25.0886478072787 + ] + }, + "properties": { + "id": "meter-7530", + "maker": "Maker A", + "model": "Model 7530", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.12602302401193, + 24.143099917494897 + ] + }, + "properties": { + "id": "meter-7531", + "maker": "Maker H", + "model": "Model 7531", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.24794287393612, + 31.054983858978066 + ] + }, + "properties": { + "id": "meter-7532", + "maker": "Maker G", + "model": "Model 7532", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.132563339124204, + 26.246360811340377 + ] + }, + "properties": { + "id": "meter-7533", + "maker": "Maker G", + "model": "Model 7533", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.557316448499435, + 25.302431860625337 + ] + }, + "properties": { + "id": "meter-7534", + "maker": "Maker D", + "model": "Model 7534", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92962565959984, + 26.519393129704476 + ] + }, + "properties": { + "id": "meter-7535", + "maker": "Maker G", + "model": "Model 7535", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08970365834735, + 17.4363868850959 + ] + }, + "properties": { + "id": "meter-7536", + "maker": "Maker B", + "model": "Model 7536", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.499780532115075, + 25.29454960132038 + ] + }, + "properties": { + "id": "meter-7537", + "maker": "Maker G", + "model": "Model 7537", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.042230946282075, + 24.300973375738412 + ] + }, + "properties": { + "id": "meter-7538", + "maker": "Maker J", + "model": "Model 7538", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86636453903877, + 21.136671802805225 + ] + }, + "properties": { + "id": "meter-7539", + "maker": "Maker E", + "model": "Model 7539", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.74568958927379, + 27.5572238038754 + ] + }, + "properties": { + "id": "meter-7540", + "maker": "Maker B", + "model": "Model 7540", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.19015725333555, + 20.053875625205734 + ] + }, + "properties": { + "id": "meter-7541", + "maker": "Maker J", + "model": "Model 7541", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.84161740290266, + 28.36183525431587 + ] + }, + "properties": { + "id": "meter-7542", + "maker": "Maker E", + "model": "Model 7542", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9719855362981, + 26.451176128616858 + ] + }, + "properties": { + "id": "meter-7543", + "maker": "Maker H", + "model": "Model 7543", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21568253092515, + 30.011093626033695 + ] + }, + "properties": { + "id": "meter-7544", + "maker": "Maker I", + "model": "Model 7544", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.696138210953066, + 24.79005574967504 + ] + }, + "properties": { + "id": "meter-7545", + "maker": "Maker A", + "model": "Model 7545", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.718420076248606, + 25.453491072800606 + ] + }, + "properties": { + "id": "meter-7546", + "maker": "Maker J", + "model": "Model 7546", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.89264031334738, + 26.34437044058754 + ] + }, + "properties": { + "id": "meter-7547", + "maker": "Maker A", + "model": "Model 7547", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.17839976869783, + 29.924993622304182 + ] + }, + "properties": { + "id": "meter-7548", + "maker": "Maker B", + "model": "Model 7548", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.27799494417733, + 17.559994316212933 + ] + }, + "properties": { + "id": "meter-7549", + "maker": "Maker D", + "model": "Model 7549", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.82370767287374, + 24.624282682933966 + ] + }, + "properties": { + "id": "meter-7550", + "maker": "Maker G", + "model": "Model 7550", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.16267395550981, + 17.56623143573484 + ] + }, + "properties": { + "id": "meter-7551", + "maker": "Maker C", + "model": "Model 7551", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08840691250417, + 26.44422898397241 + ] + }, + "properties": { + "id": "meter-7552", + "maker": "Maker I", + "model": "Model 7552", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.04090628966055, + 30.130374168354596 + ] + }, + "properties": { + "id": "meter-7553", + "maker": "Maker J", + "model": "Model 7553", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.241154602869464, + 21.555277646947104 + ] + }, + "properties": { + "id": "meter-7554", + "maker": "Maker J", + "model": "Model 7554", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.070339997548416, + 30.944480401105782 + ] + }, + "properties": { + "id": "meter-7555", + "maker": "Maker G", + "model": "Model 7555", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.22169778491021, + 21.50750611186951 + ] + }, + "properties": { + "id": "meter-7556", + "maker": "Maker A", + "model": "Model 7556", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.94566381312514, + 21.52451868472762 + ] + }, + "properties": { + "id": "meter-7557", + "maker": "Maker E", + "model": "Model 7557", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.64456472995574, + 28.356009815730815 + ] + }, + "properties": { + "id": "meter-7558", + "maker": "Maker A", + "model": "Model 7558", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.92259623065331, + 21.494552355508 + ] + }, + "properties": { + "id": "meter-7559", + "maker": "Maker D", + "model": "Model 7559", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.110933922499655, + 26.420261041795165 + ] + }, + "properties": { + "id": "meter-7560", + "maker": "Maker C", + "model": "Model 7560", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.45320540942599, + 29.860472525689115 + ] + }, + "properties": { + "id": "meter-7561", + "maker": "Maker E", + "model": "Model 7561", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.70810182859946, + 25.158258205329574 + ] + }, + "properties": { + "id": "meter-7562", + "maker": "Maker G", + "model": "Model 7562", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1682383851905, + 26.275052316561155 + ] + }, + "properties": { + "id": "meter-7563", + "maker": "Maker G", + "model": "Model 7563", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.06658654286144, + 17.58959971578013 + ] + }, + "properties": { + "id": "meter-7564", + "maker": "Maker B", + "model": "Model 7564", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.272512826698105, + 30.140758063686306 + ] + }, + "properties": { + "id": "meter-7565", + "maker": "Maker C", + "model": "Model 7565", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.485073817254296, + 18.375953339409318 + ] + }, + "properties": { + "id": "meter-7566", + "maker": "Maker G", + "model": "Model 7566", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.47126291302136, + 28.238072356433285 + ] + }, + "properties": { + "id": "meter-7567", + "maker": "Maker B", + "model": "Model 7567", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.709875319498046, + 24.366558072929045 + ] + }, + "properties": { + "id": "meter-7568", + "maker": "Maker D", + "model": "Model 7568", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.75359496884588, + 18.115777952441945 + ] + }, + "properties": { + "id": "meter-7569", + "maker": "Maker B", + "model": "Model 7569", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.951347012569194, + 26.3544533906874 + ] + }, + "properties": { + "id": "meter-7570", + "maker": "Maker E", + "model": "Model 7570", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.36960014394098, + 29.80310042227271 + ] + }, + "properties": { + "id": "meter-7571", + "maker": "Maker I", + "model": "Model 7571", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.700311871301864, + 27.442596726984657 + ] + }, + "properties": { + "id": "meter-7572", + "maker": "Maker G", + "model": "Model 7572", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.7592153281861, + 24.945143761811398 + ] + }, + "properties": { + "id": "meter-7573", + "maker": "Maker C", + "model": "Model 7573", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.242096535897126, + 17.608536960393153 + ] + }, + "properties": { + "id": "meter-7574", + "maker": "Maker H", + "model": "Model 7574", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04030716246891, + 24.085082833524012 + ] + }, + "properties": { + "id": "meter-7575", + "maker": "Maker F", + "model": "Model 7575", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.85168964681693, + 26.378257103930316 + ] + }, + "properties": { + "id": "meter-7576", + "maker": "Maker H", + "model": "Model 7576", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.47363782062112, + 18.19136287085734 + ] + }, + "properties": { + "id": "meter-7577", + "maker": "Maker C", + "model": "Model 7577", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.33673534921119, + 18.110882456441452 + ] + }, + "properties": { + "id": "meter-7578", + "maker": "Maker A", + "model": "Model 7578", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.60353819317076, + 25.414749091815512 + ] + }, + "properties": { + "id": "meter-7579", + "maker": "Maker A", + "model": "Model 7579", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.63500739743532, + 20.04463280260484 + ] + }, + "properties": { + "id": "meter-7580", + "maker": "Maker B", + "model": "Model 7580", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.579102581720626, + 24.9039215961259 + ] + }, + "properties": { + "id": "meter-7581", + "maker": "Maker A", + "model": "Model 7581", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.70483179492451, + 24.53331344431666 + ] + }, + "properties": { + "id": "meter-7582", + "maker": "Maker C", + "model": "Model 7582", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06114579718586, + 24.089890561450233 + ] + }, + "properties": { + "id": "meter-7583", + "maker": "Maker G", + "model": "Model 7583", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.092696167796866, + 29.95437880530211 + ] + }, + "properties": { + "id": "meter-7584", + "maker": "Maker J", + "model": "Model 7584", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.86659122495053, + 24.725456359785998 + ] + }, + "properties": { + "id": "meter-7585", + "maker": "Maker F", + "model": "Model 7585", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.48165616700728, + 25.44761672712475 + ] + }, + "properties": { + "id": "meter-7586", + "maker": "Maker D", + "model": "Model 7586", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.508210011184076, + 19.98520145629868 + ] + }, + "properties": { + "id": "meter-7587", + "maker": "Maker I", + "model": "Model 7587", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.61155535237136, + 28.32160239512197 + ] + }, + "properties": { + "id": "meter-7588", + "maker": "Maker G", + "model": "Model 7588", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.953083880774436, + 31.185795050872912 + ] + }, + "properties": { + "id": "meter-7589", + "maker": "Maker J", + "model": "Model 7589", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.539671422021115, + 28.484395043095407 + ] + }, + "properties": { + "id": "meter-7590", + "maker": "Maker D", + "model": "Model 7590", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.91396416673242, + 26.50240058773953 + ] + }, + "properties": { + "id": "meter-7591", + "maker": "Maker H", + "model": "Model 7591", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.52039201333137, + 28.425378962758366 + ] + }, + "properties": { + "id": "meter-7592", + "maker": "Maker J", + "model": "Model 7592", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21180220314439, + 29.885891494443058 + ] + }, + "properties": { + "id": "meter-7593", + "maker": "Maker D", + "model": "Model 7593", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07436745823011, + 26.40719987272317 + ] + }, + "properties": { + "id": "meter-7594", + "maker": "Maker J", + "model": "Model 7594", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.73763201497742, + 27.267881013812403 + ] + }, + "properties": { + "id": "meter-7595", + "maker": "Maker I", + "model": "Model 7595", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.463862156004524, + 28.324317928670702 + ] + }, + "properties": { + "id": "meter-7596", + "maker": "Maker A", + "model": "Model 7596", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.443286535004276, + 24.726441213654645 + ] + }, + "properties": { + "id": "meter-7597", + "maker": "Maker B", + "model": "Model 7597", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45178024777114, + 27.458652538516972 + ] + }, + "properties": { + "id": "meter-7598", + "maker": "Maker G", + "model": "Model 7598", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.97403725420109, + 30.965676871019994 + ] + }, + "properties": { + "id": "meter-7599", + "maker": "Maker J", + "model": "Model 7599", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67962389153526, + 27.52002037258151 + ] + }, + "properties": { + "id": "meter-7600", + "maker": "Maker E", + "model": "Model 7600", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.452721074244955, + 21.525248931544965 + ] + }, + "properties": { + "id": "meter-7601", + "maker": "Maker F", + "model": "Model 7601", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.81562128206436, + 26.51732641456917 + ] + }, + "properties": { + "id": "meter-7602", + "maker": "Maker F", + "model": "Model 7602", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.57800538378171, + 28.627611556966187 + ] + }, + "properties": { + "id": "meter-7603", + "maker": "Maker D", + "model": "Model 7603", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93020576053741, + 26.369623322055585 + ] + }, + "properties": { + "id": "meter-7604", + "maker": "Maker I", + "model": "Model 7604", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.07909438991945, + 21.266989793818826 + ] + }, + "properties": { + "id": "meter-7605", + "maker": "Maker J", + "model": "Model 7605", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.6303151089012, + 25.390072850980573 + ] + }, + "properties": { + "id": "meter-7606", + "maker": "Maker A", + "model": "Model 7606", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.03126442501211, + 24.091784041510525 + ] + }, + "properties": { + "id": "meter-7607", + "maker": "Maker H", + "model": "Model 7607", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.63668966735984, + 25.450499197823447 + ] + }, + "properties": { + "id": "meter-7608", + "maker": "Maker J", + "model": "Model 7608", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.73528734723673, + 26.390704400055263 + ] + }, + "properties": { + "id": "meter-7609", + "maker": "Maker J", + "model": "Model 7609", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1241719293136, + 17.522766316955764 + ] + }, + "properties": { + "id": "meter-7610", + "maker": "Maker E", + "model": "Model 7610", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67896062488017, + 24.749354237222974 + ] + }, + "properties": { + "id": "meter-7611", + "maker": "Maker A", + "model": "Model 7611", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17751692136874, + 17.511153295898588 + ] + }, + "properties": { + "id": "meter-7612", + "maker": "Maker A", + "model": "Model 7612", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9341034590669, + 26.58558178806314 + ] + }, + "properties": { + "id": "meter-7613", + "maker": "Maker G", + "model": "Model 7613", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.6765616059295, + 24.53829637655051 + ] + }, + "properties": { + "id": "meter-7614", + "maker": "Maker I", + "model": "Model 7614", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.505369859303435, + 20.00005030195858 + ] + }, + "properties": { + "id": "meter-7615", + "maker": "Maker I", + "model": "Model 7615", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69941797089274, + 18.236554971632504 + ] + }, + "properties": { + "id": "meter-7616", + "maker": "Maker A", + "model": "Model 7616", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.56892726176872, + 25.324776654644154 + ] + }, + "properties": { + "id": "meter-7617", + "maker": "Maker H", + "model": "Model 7617", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.32928566298003, + 29.886189885882438 + ] + }, + "properties": { + "id": "meter-7618", + "maker": "Maker E", + "model": "Model 7618", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.715793325107576, + 28.214483002409384 + ] + }, + "properties": { + "id": "meter-7619", + "maker": "Maker A", + "model": "Model 7619", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66780078997901, + 18.29226263045556 + ] + }, + "properties": { + "id": "meter-7620", + "maker": "Maker E", + "model": "Model 7620", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.328316842253294, + 28.338434541077802 + ] + }, + "properties": { + "id": "meter-7621", + "maker": "Maker F", + "model": "Model 7621", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.088127992828795, + 31.045969605884522 + ] + }, + "properties": { + "id": "meter-7622", + "maker": "Maker A", + "model": "Model 7622", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.127249858627096, + 17.492337699563894 + ] + }, + "properties": { + "id": "meter-7623", + "maker": "Maker A", + "model": "Model 7623", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.56765030470676, + 24.90446332900717 + ] + }, + "properties": { + "id": "meter-7624", + "maker": "Maker G", + "model": "Model 7624", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.70526422465267, + 18.04435519948206 + ] + }, + "properties": { + "id": "meter-7625", + "maker": "Maker D", + "model": "Model 7625", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.88737937258136, + 24.639039041465296 + ] + }, + "properties": { + "id": "meter-7626", + "maker": "Maker I", + "model": "Model 7626", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.63615614462418, + 24.704152344156917 + ] + }, + "properties": { + "id": "meter-7627", + "maker": "Maker G", + "model": "Model 7627", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97746281559136, + 26.330348830530674 + ] + }, + "properties": { + "id": "meter-7628", + "maker": "Maker F", + "model": "Model 7628", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.22918823811542, + 24.038273476864454 + ] + }, + "properties": { + "id": "meter-7629", + "maker": "Maker H", + "model": "Model 7629", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.02621066945389, + 31.07197091012831 + ] + }, + "properties": { + "id": "meter-7630", + "maker": "Maker A", + "model": "Model 7630", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.55099326024601, + 25.371508328448268 + ] + }, + "properties": { + "id": "meter-7631", + "maker": "Maker D", + "model": "Model 7631", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.72484366047524, + 25.309390432530964 + ] + }, + "properties": { + "id": "meter-7632", + "maker": "Maker C", + "model": "Model 7632", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.891981310614156, + 21.473182323373706 + ] + }, + "properties": { + "id": "meter-7633", + "maker": "Maker E", + "model": "Model 7633", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.02513379207587, + 30.899998704881686 + ] + }, + "properties": { + "id": "meter-7634", + "maker": "Maker D", + "model": "Model 7634", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.017540094587766, + 26.515811637892547 + ] + }, + "properties": { + "id": "meter-7635", + "maker": "Maker A", + "model": "Model 7635", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.85397742733624, + 31.165115272949006 + ] + }, + "properties": { + "id": "meter-7636", + "maker": "Maker F", + "model": "Model 7636", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18690262377733, + 26.307028768908093 + ] + }, + "properties": { + "id": "meter-7637", + "maker": "Maker J", + "model": "Model 7637", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10121171855567, + 26.254948495102713 + ] + }, + "properties": { + "id": "meter-7638", + "maker": "Maker I", + "model": "Model 7638", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.571640121209356, + 25.341229045955227 + ] + }, + "properties": { + "id": "meter-7639", + "maker": "Maker F", + "model": "Model 7639", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20032541509116, + 29.95997084588089 + ] + }, + "properties": { + "id": "meter-7640", + "maker": "Maker I", + "model": "Model 7640", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.58846517811603, + 28.39501809603035 + ] + }, + "properties": { + "id": "meter-7641", + "maker": "Maker H", + "model": "Model 7641", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.32361958372695, + 30.011869655209146 + ] + }, + "properties": { + "id": "meter-7642", + "maker": "Maker A", + "model": "Model 7642", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.176342011192816, + 26.25362798674824 + ] + }, + "properties": { + "id": "meter-7643", + "maker": "Maker I", + "model": "Model 7643", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01543534826365, + 26.498301723237464 + ] + }, + "properties": { + "id": "meter-7644", + "maker": "Maker C", + "model": "Model 7644", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.63019620922393, + 18.27455129305897 + ] + }, + "properties": { + "id": "meter-7645", + "maker": "Maker D", + "model": "Model 7645", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.345915965000884, + 25.21640606450126 + ] + }, + "properties": { + "id": "meter-7646", + "maker": "Maker H", + "model": "Model 7646", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.991074541504986, + 26.387969113362796 + ] + }, + "properties": { + "id": "meter-7647", + "maker": "Maker D", + "model": "Model 7647", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67656591632876, + 27.75631294550803 + ] + }, + "properties": { + "id": "meter-7648", + "maker": "Maker J", + "model": "Model 7648", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15174811287507, + 26.383314446409994 + ] + }, + "properties": { + "id": "meter-7649", + "maker": "Maker D", + "model": "Model 7649", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.04787907454819, + 31.114155740776834 + ] + }, + "properties": { + "id": "meter-7650", + "maker": "Maker C", + "model": "Model 7650", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11439425281345, + 26.359847022757542 + ] + }, + "properties": { + "id": "meter-7651", + "maker": "Maker F", + "model": "Model 7651", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.57766514083009, + 24.761830741745424 + ] + }, + "properties": { + "id": "meter-7652", + "maker": "Maker E", + "model": "Model 7652", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99797048120801, + 26.552658824960105 + ] + }, + "properties": { + "id": "meter-7653", + "maker": "Maker F", + "model": "Model 7653", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.49978294769661, + 24.583649521788235 + ] + }, + "properties": { + "id": "meter-7654", + "maker": "Maker E", + "model": "Model 7654", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55678375574202, + 20.004624125403613 + ] + }, + "properties": { + "id": "meter-7655", + "maker": "Maker J", + "model": "Model 7655", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.813923201346086, + 25.491369504351482 + ] + }, + "properties": { + "id": "meter-7656", + "maker": "Maker C", + "model": "Model 7656", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.68291247922203, + 21.253147999172175 + ] + }, + "properties": { + "id": "meter-7657", + "maker": "Maker I", + "model": "Model 7657", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.656624659188424, + 28.40991772982768 + ] + }, + "properties": { + "id": "meter-7658", + "maker": "Maker C", + "model": "Model 7658", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.576005341357536, + 17.991988596864157 + ] + }, + "properties": { + "id": "meter-7659", + "maker": "Maker F", + "model": "Model 7659", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.85453318216761, + 24.645655690923245 + ] + }, + "properties": { + "id": "meter-7660", + "maker": "Maker H", + "model": "Model 7660", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.567365414356324, + 28.561078252910537 + ] + }, + "properties": { + "id": "meter-7661", + "maker": "Maker D", + "model": "Model 7661", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.57972048121717, + 27.534434317081452 + ] + }, + "properties": { + "id": "meter-7662", + "maker": "Maker F", + "model": "Model 7662", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.950082797469804, + 26.28286108289314 + ] + }, + "properties": { + "id": "meter-7663", + "maker": "Maker B", + "model": "Model 7663", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72678339851523, + 18.021983280936894 + ] + }, + "properties": { + "id": "meter-7664", + "maker": "Maker E", + "model": "Model 7664", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.39727431165437, + 17.470129576808898 + ] + }, + "properties": { + "id": "meter-7665", + "maker": "Maker J", + "model": "Model 7665", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.4844214261519, + 21.5288843361174 + ] + }, + "properties": { + "id": "meter-7666", + "maker": "Maker C", + "model": "Model 7666", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2368216638603, + 21.300186000980524 + ] + }, + "properties": { + "id": "meter-7667", + "maker": "Maker A", + "model": "Model 7667", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.25306205756864, + 29.774575872822073 + ] + }, + "properties": { + "id": "meter-7668", + "maker": "Maker B", + "model": "Model 7668", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05439105863322, + 26.257496269941246 + ] + }, + "properties": { + "id": "meter-7669", + "maker": "Maker E", + "model": "Model 7669", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.79974769859396, + 21.29068236543976 + ] + }, + "properties": { + "id": "meter-7670", + "maker": "Maker D", + "model": "Model 7670", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.44007953824283, + 29.864238386003308 + ] + }, + "properties": { + "id": "meter-7671", + "maker": "Maker F", + "model": "Model 7671", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.5326616143562, + 24.530089912574475 + ] + }, + "properties": { + "id": "meter-7672", + "maker": "Maker E", + "model": "Model 7672", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.722753910904125, + 24.712393049245364 + ] + }, + "properties": { + "id": "meter-7673", + "maker": "Maker E", + "model": "Model 7673", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.555837836780185, + 25.64460584080827 + ] + }, + "properties": { + "id": "meter-7674", + "maker": "Maker I", + "model": "Model 7674", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.686957003418115, + 27.505205170697625 + ] + }, + "properties": { + "id": "meter-7675", + "maker": "Maker H", + "model": "Model 7675", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.144979264364615, + 17.447518059075428 + ] + }, + "properties": { + "id": "meter-7676", + "maker": "Maker F", + "model": "Model 7676", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.48821530985548, + 29.940434751780252 + ] + }, + "properties": { + "id": "meter-7677", + "maker": "Maker I", + "model": "Model 7677", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.78170202582296, + 18.29894101623922 + ] + }, + "properties": { + "id": "meter-7678", + "maker": "Maker F", + "model": "Model 7678", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.43494607794422, + 20.034740420298878 + ] + }, + "properties": { + "id": "meter-7679", + "maker": "Maker G", + "model": "Model 7679", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.0495619335916, + 30.153111395761112 + ] + }, + "properties": { + "id": "meter-7680", + "maker": "Maker H", + "model": "Model 7680", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.5845507914879, + 24.648378624730114 + ] + }, + "properties": { + "id": "meter-7681", + "maker": "Maker A", + "model": "Model 7681", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.907871679467505, + 26.541006511329247 + ] + }, + "properties": { + "id": "meter-7682", + "maker": "Maker D", + "model": "Model 7682", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.55055829767986, + 24.40570103153418 + ] + }, + "properties": { + "id": "meter-7683", + "maker": "Maker A", + "model": "Model 7683", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.268166193347554, + 21.590766951939063 + ] + }, + "properties": { + "id": "meter-7684", + "maker": "Maker E", + "model": "Model 7684", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9957357945879, + 26.473772651040406 + ] + }, + "properties": { + "id": "meter-7685", + "maker": "Maker D", + "model": "Model 7685", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.00319873438585, + 21.436650181664447 + ] + }, + "properties": { + "id": "meter-7686", + "maker": "Maker C", + "model": "Model 7686", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21602243197103, + 30.235822099538442 + ] + }, + "properties": { + "id": "meter-7687", + "maker": "Maker A", + "model": "Model 7687", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.60719064667794, + 28.445799098456177 + ] + }, + "properties": { + "id": "meter-7688", + "maker": "Maker D", + "model": "Model 7688", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.31994401463152, + 17.484686923328134 + ] + }, + "properties": { + "id": "meter-7689", + "maker": "Maker E", + "model": "Model 7689", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09463538764282, + 17.443563901172165 + ] + }, + "properties": { + "id": "meter-7690", + "maker": "Maker C", + "model": "Model 7690", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.50491828631393, + 24.61008966204282 + ] + }, + "properties": { + "id": "meter-7691", + "maker": "Maker F", + "model": "Model 7691", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.467697268876684, + 18.313717418778218 + ] + }, + "properties": { + "id": "meter-7692", + "maker": "Maker B", + "model": "Model 7692", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.510367893163426, + 18.465090580879664 + ] + }, + "properties": { + "id": "meter-7693", + "maker": "Maker D", + "model": "Model 7693", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.66606032421402, + 24.55827544173693 + ] + }, + "properties": { + "id": "meter-7694", + "maker": "Maker B", + "model": "Model 7694", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.00291926680495, + 30.935738971953267 + ] + }, + "properties": { + "id": "meter-7695", + "maker": "Maker B", + "model": "Model 7695", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03072259285302, + 17.561175818168582 + ] + }, + "properties": { + "id": "meter-7696", + "maker": "Maker I", + "model": "Model 7696", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.66765595678825, + 27.437934939657023 + ] + }, + "properties": { + "id": "meter-7697", + "maker": "Maker H", + "model": "Model 7697", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.32274875630044, + 20.13475083226853 + ] + }, + "properties": { + "id": "meter-7698", + "maker": "Maker G", + "model": "Model 7698", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.82466760530103, + 27.554426958290225 + ] + }, + "properties": { + "id": "meter-7699", + "maker": "Maker F", + "model": "Model 7699", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58939577360577, + 25.34853658632652 + ] + }, + "properties": { + "id": "meter-7700", + "maker": "Maker A", + "model": "Model 7700", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19263367082014, + 26.177986482876186 + ] + }, + "properties": { + "id": "meter-7701", + "maker": "Maker C", + "model": "Model 7701", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.824635854847784, + 31.004519956385597 + ] + }, + "properties": { + "id": "meter-7702", + "maker": "Maker F", + "model": "Model 7702", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93590090910467, + 26.276687276468262 + ] + }, + "properties": { + "id": "meter-7703", + "maker": "Maker F", + "model": "Model 7703", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.39616310977753, + 28.37593161142415 + ] + }, + "properties": { + "id": "meter-7704", + "maker": "Maker E", + "model": "Model 7704", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.41701285320462, + 21.4303519064629 + ] + }, + "properties": { + "id": "meter-7705", + "maker": "Maker E", + "model": "Model 7705", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.749481792611114, + 21.276803025530324 + ] + }, + "properties": { + "id": "meter-7706", + "maker": "Maker C", + "model": "Model 7706", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.761079606015116, + 28.49479883792956 + ] + }, + "properties": { + "id": "meter-7707", + "maker": "Maker J", + "model": "Model 7707", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.888962898278415, + 21.517756596452493 + ] + }, + "properties": { + "id": "meter-7708", + "maker": "Maker D", + "model": "Model 7708", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.01008393253883, + 30.876124389731515 + ] + }, + "properties": { + "id": "meter-7709", + "maker": "Maker A", + "model": "Model 7709", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.48102621998741, + 21.5932493361767 + ] + }, + "properties": { + "id": "meter-7710", + "maker": "Maker D", + "model": "Model 7710", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.74784111506862, + 21.205512488021583 + ] + }, + "properties": { + "id": "meter-7711", + "maker": "Maker C", + "model": "Model 7711", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.66176138808783, + 28.30190975101198 + ] + }, + "properties": { + "id": "meter-7712", + "maker": "Maker A", + "model": "Model 7712", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01913156429775, + 26.364106537915116 + ] + }, + "properties": { + "id": "meter-7713", + "maker": "Maker J", + "model": "Model 7713", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.70674227908463, + 28.205639295868178 + ] + }, + "properties": { + "id": "meter-7714", + "maker": "Maker D", + "model": "Model 7714", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.69086380649897, + 26.313655010466384 + ] + }, + "properties": { + "id": "meter-7715", + "maker": "Maker J", + "model": "Model 7715", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.41230618102188, + 24.763840253633976 + ] + }, + "properties": { + "id": "meter-7716", + "maker": "Maker E", + "model": "Model 7716", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.60068771450944, + 28.395868191785407 + ] + }, + "properties": { + "id": "meter-7717", + "maker": "Maker A", + "model": "Model 7717", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.479485074402035, + 24.50492566850134 + ] + }, + "properties": { + "id": "meter-7718", + "maker": "Maker D", + "model": "Model 7718", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.34729311731736, + 28.3471787687082 + ] + }, + "properties": { + "id": "meter-7719", + "maker": "Maker F", + "model": "Model 7719", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99049193697142, + 26.388668915628084 + ] + }, + "properties": { + "id": "meter-7720", + "maker": "Maker G", + "model": "Model 7720", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.2120389647572, + 24.168665159769915 + ] + }, + "properties": { + "id": "meter-7721", + "maker": "Maker B", + "model": "Model 7721", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1804665008256, + 26.351757993622677 + ] + }, + "properties": { + "id": "meter-7722", + "maker": "Maker J", + "model": "Model 7722", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.65153278316748, + 18.239826164035847 + ] + }, + "properties": { + "id": "meter-7723", + "maker": "Maker E", + "model": "Model 7723", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.69512340736198, + 24.641460163124023 + ] + }, + "properties": { + "id": "meter-7724", + "maker": "Maker B", + "model": "Model 7724", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.06042479941349, + 17.744656110191617 + ] + }, + "properties": { + "id": "meter-7725", + "maker": "Maker B", + "model": "Model 7725", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.26401006568919, + 26.26501277391712 + ] + }, + "properties": { + "id": "meter-7726", + "maker": "Maker J", + "model": "Model 7726", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.524178971695264, + 27.39090497761532 + ] + }, + "properties": { + "id": "meter-7727", + "maker": "Maker B", + "model": "Model 7727", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.52641076382397, + 20.26516990664655 + ] + }, + "properties": { + "id": "meter-7728", + "maker": "Maker B", + "model": "Model 7728", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.061722748391816, + 21.428393872724843 + ] + }, + "properties": { + "id": "meter-7729", + "maker": "Maker G", + "model": "Model 7729", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.215417616408324, + 21.5021875657227 + ] + }, + "properties": { + "id": "meter-7730", + "maker": "Maker F", + "model": "Model 7730", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.7665934792346, + 27.466797180803336 + ] + }, + "properties": { + "id": "meter-7731", + "maker": "Maker J", + "model": "Model 7731", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.30277296667892, + 21.298025244829798 + ] + }, + "properties": { + "id": "meter-7732", + "maker": "Maker B", + "model": "Model 7732", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.518715270486744, + 17.982933972537435 + ] + }, + "properties": { + "id": "meter-7733", + "maker": "Maker I", + "model": "Model 7733", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95005442460543, + 26.451649274752274 + ] + }, + "properties": { + "id": "meter-7734", + "maker": "Maker E", + "model": "Model 7734", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58327850161764, + 25.401133182832112 + ] + }, + "properties": { + "id": "meter-7735", + "maker": "Maker I", + "model": "Model 7735", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.235889466421504, + 21.49009251314668 + ] + }, + "properties": { + "id": "meter-7736", + "maker": "Maker F", + "model": "Model 7736", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00964215565475, + 26.315582686393757 + ] + }, + "properties": { + "id": "meter-7737", + "maker": "Maker B", + "model": "Model 7737", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.21994982932915, + 18.2205321046878 + ] + }, + "properties": { + "id": "meter-7738", + "maker": "Maker F", + "model": "Model 7738", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.59610584546703, + 18.33750311258047 + ] + }, + "properties": { + "id": "meter-7739", + "maker": "Maker F", + "model": "Model 7739", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.6021024090238, + 25.469024013570518 + ] + }, + "properties": { + "id": "meter-7740", + "maker": "Maker D", + "model": "Model 7740", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.622719719328536, + 18.28305057338789 + ] + }, + "properties": { + "id": "meter-7741", + "maker": "Maker F", + "model": "Model 7741", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.98288488799961, + 30.838386682194663 + ] + }, + "properties": { + "id": "meter-7742", + "maker": "Maker D", + "model": "Model 7742", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.41244010607263, + 25.129873664362965 + ] + }, + "properties": { + "id": "meter-7743", + "maker": "Maker J", + "model": "Model 7743", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.941159271873246, + 24.35506612172501 + ] + }, + "properties": { + "id": "meter-7744", + "maker": "Maker E", + "model": "Model 7744", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02716651285528, + 26.410659794634473 + ] + }, + "properties": { + "id": "meter-7745", + "maker": "Maker F", + "model": "Model 7745", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.226477760917184, + 30.946746168647355 + ] + }, + "properties": { + "id": "meter-7746", + "maker": "Maker E", + "model": "Model 7746", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.38132383813817, + 28.400550602897333 + ] + }, + "properties": { + "id": "meter-7747", + "maker": "Maker A", + "model": "Model 7747", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.236974023206315, + 21.492891450296653 + ] + }, + "properties": { + "id": "meter-7748", + "maker": "Maker E", + "model": "Model 7748", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.73095715002129, + 24.688726528285198 + ] + }, + "properties": { + "id": "meter-7749", + "maker": "Maker D", + "model": "Model 7749", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.77030671823898, + 26.22822067779535 + ] + }, + "properties": { + "id": "meter-7750", + "maker": "Maker I", + "model": "Model 7750", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.58572700767473, + 18.20216290031218 + ] + }, + "properties": { + "id": "meter-7751", + "maker": "Maker A", + "model": "Model 7751", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.82821991154591, + 24.792276496770683 + ] + }, + "properties": { + "id": "meter-7752", + "maker": "Maker I", + "model": "Model 7752", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42179509086659, + 20.245412622836362 + ] + }, + "properties": { + "id": "meter-7753", + "maker": "Maker C", + "model": "Model 7753", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20626904639476, + 29.970139275470373 + ] + }, + "properties": { + "id": "meter-7754", + "maker": "Maker A", + "model": "Model 7754", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.444765988886054, + 27.485171290530463 + ] + }, + "properties": { + "id": "meter-7755", + "maker": "Maker D", + "model": "Model 7755", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.604058312353985, + 24.550461689123548 + ] + }, + "properties": { + "id": "meter-7756", + "maker": "Maker D", + "model": "Model 7756", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.554998286721855, + 25.37351906953475 + ] + }, + "properties": { + "id": "meter-7757", + "maker": "Maker A", + "model": "Model 7757", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.547966936592275, + 25.25407559117591 + ] + }, + "properties": { + "id": "meter-7758", + "maker": "Maker D", + "model": "Model 7758", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99729886206827, + 17.56395024757437 + ] + }, + "properties": { + "id": "meter-7759", + "maker": "Maker E", + "model": "Model 7759", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77344468129388, + 24.290486701696384 + ] + }, + "properties": { + "id": "meter-7760", + "maker": "Maker H", + "model": "Model 7760", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59882849689589, + 25.411324517336844 + ] + }, + "properties": { + "id": "meter-7761", + "maker": "Maker D", + "model": "Model 7761", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.24887670016328, + 29.991939581785957 + ] + }, + "properties": { + "id": "meter-7762", + "maker": "Maker D", + "model": "Model 7762", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.82861922167444, + 18.05511338907135 + ] + }, + "properties": { + "id": "meter-7763", + "maker": "Maker C", + "model": "Model 7763", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.59706321483462, + 28.474999616474587 + ] + }, + "properties": { + "id": "meter-7764", + "maker": "Maker G", + "model": "Model 7764", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.65448232776477, + 21.486395834567418 + ] + }, + "properties": { + "id": "meter-7765", + "maker": "Maker F", + "model": "Model 7765", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.4759213989083, + 24.651894644835266 + ] + }, + "properties": { + "id": "meter-7766", + "maker": "Maker E", + "model": "Model 7766", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.93260964632193, + 24.629419971474082 + ] + }, + "properties": { + "id": "meter-7767", + "maker": "Maker C", + "model": "Model 7767", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.71628896139778, + 28.591362753765978 + ] + }, + "properties": { + "id": "meter-7768", + "maker": "Maker B", + "model": "Model 7768", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.599892730708454, + 25.349837308143265 + ] + }, + "properties": { + "id": "meter-7769", + "maker": "Maker G", + "model": "Model 7769", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06560079998092, + 24.088174286578393 + ] + }, + "properties": { + "id": "meter-7770", + "maker": "Maker J", + "model": "Model 7770", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01109563391313, + 26.50533447764634 + ] + }, + "properties": { + "id": "meter-7771", + "maker": "Maker J", + "model": "Model 7771", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1668719459316, + 26.26772782962549 + ] + }, + "properties": { + "id": "meter-7772", + "maker": "Maker A", + "model": "Model 7772", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.85263933660005, + 26.35938188855468 + ] + }, + "properties": { + "id": "meter-7773", + "maker": "Maker F", + "model": "Model 7773", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.28827923949153, + 24.070180602115965 + ] + }, + "properties": { + "id": "meter-7774", + "maker": "Maker J", + "model": "Model 7774", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46136336570284, + 20.153742518548306 + ] + }, + "properties": { + "id": "meter-7775", + "maker": "Maker G", + "model": "Model 7775", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.05276840370508, + 29.963252304642918 + ] + }, + "properties": { + "id": "meter-7776", + "maker": "Maker B", + "model": "Model 7776", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.16669177612957, + 29.90777377667625 + ] + }, + "properties": { + "id": "meter-7777", + "maker": "Maker G", + "model": "Model 7777", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.83410700334899, + 27.27499717636703 + ] + }, + "properties": { + "id": "meter-7778", + "maker": "Maker B", + "model": "Model 7778", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.817822181191254, + 26.453499050493132 + ] + }, + "properties": { + "id": "meter-7779", + "maker": "Maker B", + "model": "Model 7779", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.136725478586925, + 29.957894968422423 + ] + }, + "properties": { + "id": "meter-7780", + "maker": "Maker B", + "model": "Model 7780", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.594640513702466, + 24.959757345003876 + ] + }, + "properties": { + "id": "meter-7781", + "maker": "Maker J", + "model": "Model 7781", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48062206982589, + 20.031804737083085 + ] + }, + "properties": { + "id": "meter-7782", + "maker": "Maker J", + "model": "Model 7782", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61985252850101, + 24.538004842106815 + ] + }, + "properties": { + "id": "meter-7783", + "maker": "Maker J", + "model": "Model 7783", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.175394197091364, + 26.277351221680636 + ] + }, + "properties": { + "id": "meter-7784", + "maker": "Maker B", + "model": "Model 7784", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.81810379082253, + 28.559358114934547 + ] + }, + "properties": { + "id": "meter-7785", + "maker": "Maker F", + "model": "Model 7785", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89421494716993, + 21.487008028012212 + ] + }, + "properties": { + "id": "meter-7786", + "maker": "Maker C", + "model": "Model 7786", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13480508771438, + 26.297112482202024 + ] + }, + "properties": { + "id": "meter-7787", + "maker": "Maker C", + "model": "Model 7787", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.03512146025064, + 24.225228732572695 + ] + }, + "properties": { + "id": "meter-7788", + "maker": "Maker G", + "model": "Model 7788", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.68345889627128, + 19.98889293168037 + ] + }, + "properties": { + "id": "meter-7789", + "maker": "Maker F", + "model": "Model 7789", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81867601300809, + 21.306453400101272 + ] + }, + "properties": { + "id": "meter-7790", + "maker": "Maker E", + "model": "Model 7790", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98319266964663, + 26.32874814828571 + ] + }, + "properties": { + "id": "meter-7791", + "maker": "Maker C", + "model": "Model 7791", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86567516851204, + 24.50301685118487 + ] + }, + "properties": { + "id": "meter-7792", + "maker": "Maker C", + "model": "Model 7792", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92121947542732, + 17.48283736029061 + ] + }, + "properties": { + "id": "meter-7793", + "maker": "Maker D", + "model": "Model 7793", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.539644034665706, + 18.34780057674442 + ] + }, + "properties": { + "id": "meter-7794", + "maker": "Maker A", + "model": "Model 7794", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92993178128721, + 26.24699000360786 + ] + }, + "properties": { + "id": "meter-7795", + "maker": "Maker D", + "model": "Model 7795", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.595126225921184, + 28.353483818075706 + ] + }, + "properties": { + "id": "meter-7796", + "maker": "Maker J", + "model": "Model 7796", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.345885043903785, + 18.21827423215275 + ] + }, + "properties": { + "id": "meter-7797", + "maker": "Maker J", + "model": "Model 7797", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.448245118463, + 24.350630951279417 + ] + }, + "properties": { + "id": "meter-7798", + "maker": "Maker I", + "model": "Model 7798", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.74261144433823, + 27.56124153334864 + ] + }, + "properties": { + "id": "meter-7799", + "maker": "Maker J", + "model": "Model 7799", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.23985665868108, + 24.221362652325592 + ] + }, + "properties": { + "id": "meter-7800", + "maker": "Maker J", + "model": "Model 7800", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.593957548298164, + 24.559033895386122 + ] + }, + "properties": { + "id": "meter-7801", + "maker": "Maker C", + "model": "Model 7801", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.79889370571259, + 25.447691622967774 + ] + }, + "properties": { + "id": "meter-7802", + "maker": "Maker C", + "model": "Model 7802", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.76490463384926, + 18.270973026949548 + ] + }, + "properties": { + "id": "meter-7803", + "maker": "Maker G", + "model": "Model 7803", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.617095169266705, + 25.332370094179907 + ] + }, + "properties": { + "id": "meter-7804", + "maker": "Maker B", + "model": "Model 7804", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.71931128611787, + 21.15812060199117 + ] + }, + "properties": { + "id": "meter-7805", + "maker": "Maker C", + "model": "Model 7805", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17671302484911, + 26.23660662223551 + ] + }, + "properties": { + "id": "meter-7806", + "maker": "Maker H", + "model": "Model 7806", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.599175217087236, + 24.512386390802245 + ] + }, + "properties": { + "id": "meter-7807", + "maker": "Maker G", + "model": "Model 7807", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.41745315948118, + 19.892689354497147 + ] + }, + "properties": { + "id": "meter-7808", + "maker": "Maker A", + "model": "Model 7808", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.283137515379416, + 21.49349296000899 + ] + }, + "properties": { + "id": "meter-7809", + "maker": "Maker G", + "model": "Model 7809", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45203241826767, + 19.96055626018589 + ] + }, + "properties": { + "id": "meter-7810", + "maker": "Maker F", + "model": "Model 7810", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.035477355696365, + 17.47293012065951 + ] + }, + "properties": { + "id": "meter-7811", + "maker": "Maker I", + "model": "Model 7811", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.825181222267766, + 21.62392455149585 + ] + }, + "properties": { + "id": "meter-7812", + "maker": "Maker D", + "model": "Model 7812", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.28937121168394, + 29.931912922802617 + ] + }, + "properties": { + "id": "meter-7813", + "maker": "Maker C", + "model": "Model 7813", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92161280829929, + 26.27139704126445 + ] + }, + "properties": { + "id": "meter-7814", + "maker": "Maker A", + "model": "Model 7814", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.658730953385856, + 28.350414019454483 + ] + }, + "properties": { + "id": "meter-7815", + "maker": "Maker G", + "model": "Model 7815", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.937369409917, + 26.351934731976424 + ] + }, + "properties": { + "id": "meter-7816", + "maker": "Maker H", + "model": "Model 7816", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.20404395319098, + 31.03780974838732 + ] + }, + "properties": { + "id": "meter-7817", + "maker": "Maker C", + "model": "Model 7817", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.82118386729567, + 28.564612106635032 + ] + }, + "properties": { + "id": "meter-7818", + "maker": "Maker E", + "model": "Model 7818", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46349212879738, + 20.01033440556498 + ] + }, + "properties": { + "id": "meter-7819", + "maker": "Maker I", + "model": "Model 7819", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.4813059460226, + 21.647313754634947 + ] + }, + "properties": { + "id": "meter-7820", + "maker": "Maker E", + "model": "Model 7820", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.804405821589675, + 24.57905716983554 + ] + }, + "properties": { + "id": "meter-7821", + "maker": "Maker D", + "model": "Model 7821", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.75851362221045, + 18.098880523467543 + ] + }, + "properties": { + "id": "meter-7822", + "maker": "Maker C", + "model": "Model 7822", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.558480976858974, + 28.651521527672493 + ] + }, + "properties": { + "id": "meter-7823", + "maker": "Maker G", + "model": "Model 7823", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.594092828943104, + 28.389531247406396 + ] + }, + "properties": { + "id": "meter-7824", + "maker": "Maker B", + "model": "Model 7824", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.399741482788514, + 25.441159163192296 + ] + }, + "properties": { + "id": "meter-7825", + "maker": "Maker B", + "model": "Model 7825", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.618960796191296, + 24.525678518388908 + ] + }, + "properties": { + "id": "meter-7826", + "maker": "Maker F", + "model": "Model 7826", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14458718987315, + 26.36140991489137 + ] + }, + "properties": { + "id": "meter-7827", + "maker": "Maker F", + "model": "Model 7827", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.906906009565986, + 26.222051388532666 + ] + }, + "properties": { + "id": "meter-7828", + "maker": "Maker F", + "model": "Model 7828", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.54932631627343, + 27.423029773770526 + ] + }, + "properties": { + "id": "meter-7829", + "maker": "Maker C", + "model": "Model 7829", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.74064919284346, + 21.37192951390918 + ] + }, + "properties": { + "id": "meter-7830", + "maker": "Maker A", + "model": "Model 7830", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95234845663604, + 26.211639351581393 + ] + }, + "properties": { + "id": "meter-7831", + "maker": "Maker F", + "model": "Model 7831", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.000502449296945, + 26.61633371774916 + ] + }, + "properties": { + "id": "meter-7832", + "maker": "Maker J", + "model": "Model 7832", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.19948128085798, + 29.933210312378897 + ] + }, + "properties": { + "id": "meter-7833", + "maker": "Maker F", + "model": "Model 7833", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.41171126850042, + 19.836327428851966 + ] + }, + "properties": { + "id": "meter-7834", + "maker": "Maker I", + "model": "Model 7834", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.09939127786989, + 21.310800794910172 + ] + }, + "properties": { + "id": "meter-7835", + "maker": "Maker D", + "model": "Model 7835", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.73654329581942, + 26.48438365827985 + ] + }, + "properties": { + "id": "meter-7836", + "maker": "Maker B", + "model": "Model 7836", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.106115357976805, + 26.123145333944606 + ] + }, + "properties": { + "id": "meter-7837", + "maker": "Maker G", + "model": "Model 7837", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48895375959458, + 19.863253242845698 + ] + }, + "properties": { + "id": "meter-7838", + "maker": "Maker C", + "model": "Model 7838", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.27201617204462, + 17.514821712959048 + ] + }, + "properties": { + "id": "meter-7839", + "maker": "Maker I", + "model": "Model 7839", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.853466425113744, + 18.283732911254265 + ] + }, + "properties": { + "id": "meter-7840", + "maker": "Maker G", + "model": "Model 7840", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.72262275051242, + 24.928535721819983 + ] + }, + "properties": { + "id": "meter-7841", + "maker": "Maker G", + "model": "Model 7841", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.511699366260835, + 28.435913812829906 + ] + }, + "properties": { + "id": "meter-7842", + "maker": "Maker G", + "model": "Model 7842", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.603849488335285, + 25.348281437415068 + ] + }, + "properties": { + "id": "meter-7843", + "maker": "Maker B", + "model": "Model 7843", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.61771749522817, + 24.588242118202594 + ] + }, + "properties": { + "id": "meter-7844", + "maker": "Maker J", + "model": "Model 7844", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.56305006261977, + 25.075018703833216 + ] + }, + "properties": { + "id": "meter-7845", + "maker": "Maker C", + "model": "Model 7845", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01743973689522, + 26.501457579931117 + ] + }, + "properties": { + "id": "meter-7846", + "maker": "Maker J", + "model": "Model 7846", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.093302646809164, + 26.18364510960705 + ] + }, + "properties": { + "id": "meter-7847", + "maker": "Maker A", + "model": "Model 7847", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.30557784162477, + 24.252118716330592 + ] + }, + "properties": { + "id": "meter-7848", + "maker": "Maker A", + "model": "Model 7848", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.66854685424903, + 27.474776229712393 + ] + }, + "properties": { + "id": "meter-7849", + "maker": "Maker B", + "model": "Model 7849", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.795808814601195, + 24.526311380575986 + ] + }, + "properties": { + "id": "meter-7850", + "maker": "Maker A", + "model": "Model 7850", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.972559665049396, + 26.337543407884173 + ] + }, + "properties": { + "id": "meter-7851", + "maker": "Maker G", + "model": "Model 7851", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.941792838346664, + 21.150628656993664 + ] + }, + "properties": { + "id": "meter-7852", + "maker": "Maker F", + "model": "Model 7852", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.657992795291875, + 25.28831327877937 + ] + }, + "properties": { + "id": "meter-7853", + "maker": "Maker C", + "model": "Model 7853", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.55753721111052, + 25.54181028293449 + ] + }, + "properties": { + "id": "meter-7854", + "maker": "Maker J", + "model": "Model 7854", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00930758216331, + 26.420040050762903 + ] + }, + "properties": { + "id": "meter-7855", + "maker": "Maker A", + "model": "Model 7855", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.872599986037706, + 26.285250558003476 + ] + }, + "properties": { + "id": "meter-7856", + "maker": "Maker I", + "model": "Model 7856", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.884150474623496, + 21.22803513435753 + ] + }, + "properties": { + "id": "meter-7857", + "maker": "Maker G", + "model": "Model 7857", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.011232527250726, + 30.68719577118372 + ] + }, + "properties": { + "id": "meter-7858", + "maker": "Maker A", + "model": "Model 7858", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.949085229219484, + 24.294482220984403 + ] + }, + "properties": { + "id": "meter-7859", + "maker": "Maker F", + "model": "Model 7859", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.45484672482314, + 28.532160949001696 + ] + }, + "properties": { + "id": "meter-7860", + "maker": "Maker F", + "model": "Model 7860", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.72822381170285, + 27.502820567540617 + ] + }, + "properties": { + "id": "meter-7861", + "maker": "Maker I", + "model": "Model 7861", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.34749153129853, + 18.423896288607246 + ] + }, + "properties": { + "id": "meter-7862", + "maker": "Maker E", + "model": "Model 7862", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04386882955988, + 24.31977222919983 + ] + }, + "properties": { + "id": "meter-7863", + "maker": "Maker A", + "model": "Model 7863", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.956264689088194, + 31.070181962083705 + ] + }, + "properties": { + "id": "meter-7864", + "maker": "Maker H", + "model": "Model 7864", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.93533911795678, + 24.34163620894408 + ] + }, + "properties": { + "id": "meter-7865", + "maker": "Maker E", + "model": "Model 7865", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.17637897577491, + 29.794835662811206 + ] + }, + "properties": { + "id": "meter-7866", + "maker": "Maker D", + "model": "Model 7866", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.287366924980866, + 29.98558498552431 + ] + }, + "properties": { + "id": "meter-7867", + "maker": "Maker F", + "model": "Model 7867", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.89004019230745, + 26.349558991365736 + ] + }, + "properties": { + "id": "meter-7868", + "maker": "Maker I", + "model": "Model 7868", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53533533758439, + 18.318434270104298 + ] + }, + "properties": { + "id": "meter-7869", + "maker": "Maker C", + "model": "Model 7869", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.6763174373828, + 18.459826369680293 + ] + }, + "properties": { + "id": "meter-7870", + "maker": "Maker E", + "model": "Model 7870", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.84184327778336, + 26.407437431229628 + ] + }, + "properties": { + "id": "meter-7871", + "maker": "Maker J", + "model": "Model 7871", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.55778580072152, + 25.19153030916298 + ] + }, + "properties": { + "id": "meter-7872", + "maker": "Maker G", + "model": "Model 7872", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.882347483047475, + 26.57131339800396 + ] + }, + "properties": { + "id": "meter-7873", + "maker": "Maker C", + "model": "Model 7873", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45587555474917, + 20.282392298202254 + ] + }, + "properties": { + "id": "meter-7874", + "maker": "Maker A", + "model": "Model 7874", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.64998204774311, + 17.966110055305588 + ] + }, + "properties": { + "id": "meter-7875", + "maker": "Maker A", + "model": "Model 7875", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.927182249300316, + 26.637041132238693 + ] + }, + "properties": { + "id": "meter-7876", + "maker": "Maker F", + "model": "Model 7876", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.84432271921472, + 26.686650710668854 + ] + }, + "properties": { + "id": "meter-7877", + "maker": "Maker J", + "model": "Model 7877", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.940740889200036, + 26.545891336800718 + ] + }, + "properties": { + "id": "meter-7878", + "maker": "Maker B", + "model": "Model 7878", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.73147870836405, + 24.769581385648344 + ] + }, + "properties": { + "id": "meter-7879", + "maker": "Maker E", + "model": "Model 7879", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.89362235171809, + 26.407706569047317 + ] + }, + "properties": { + "id": "meter-7880", + "maker": "Maker I", + "model": "Model 7880", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.95661721044971, + 18.256099074131786 + ] + }, + "properties": { + "id": "meter-7881", + "maker": "Maker J", + "model": "Model 7881", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.022427221869656, + 29.988666109045468 + ] + }, + "properties": { + "id": "meter-7882", + "maker": "Maker A", + "model": "Model 7882", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.62679793162304, + 28.325792871367998 + ] + }, + "properties": { + "id": "meter-7883", + "maker": "Maker I", + "model": "Model 7883", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.671622740169596, + 24.683664439530048 + ] + }, + "properties": { + "id": "meter-7884", + "maker": "Maker A", + "model": "Model 7884", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.64175140249098, + 24.68735595128918 + ] + }, + "properties": { + "id": "meter-7885", + "maker": "Maker H", + "model": "Model 7885", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47183811572087, + 20.099746878188807 + ] + }, + "properties": { + "id": "meter-7886", + "maker": "Maker C", + "model": "Model 7886", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.7728586453891, + 28.379391962537444 + ] + }, + "properties": { + "id": "meter-7887", + "maker": "Maker C", + "model": "Model 7887", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.7509011402292, + 18.386664238355316 + ] + }, + "properties": { + "id": "meter-7888", + "maker": "Maker F", + "model": "Model 7888", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.136158546756036, + 29.708627085746595 + ] + }, + "properties": { + "id": "meter-7889", + "maker": "Maker A", + "model": "Model 7889", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.10002956248254, + 21.353728012095484 + ] + }, + "properties": { + "id": "meter-7890", + "maker": "Maker G", + "model": "Model 7890", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.299598555904616, + 21.206528908957107 + ] + }, + "properties": { + "id": "meter-7891", + "maker": "Maker E", + "model": "Model 7891", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.537142033511394, + 18.219609429751543 + ] + }, + "properties": { + "id": "meter-7892", + "maker": "Maker D", + "model": "Model 7892", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99693942097454, + 26.488759984901094 + ] + }, + "properties": { + "id": "meter-7893", + "maker": "Maker E", + "model": "Model 7893", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07479431290747, + 24.112976542464125 + ] + }, + "properties": { + "id": "meter-7894", + "maker": "Maker A", + "model": "Model 7894", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.614727107070244, + 25.36918107722376 + ] + }, + "properties": { + "id": "meter-7895", + "maker": "Maker B", + "model": "Model 7895", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98663565686624, + 26.367423850092994 + ] + }, + "properties": { + "id": "meter-7896", + "maker": "Maker B", + "model": "Model 7896", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.591908164890896, + 25.313575600542297 + ] + }, + "properties": { + "id": "meter-7897", + "maker": "Maker B", + "model": "Model 7897", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.9528346232783, + 17.328365303562894 + ] + }, + "properties": { + "id": "meter-7898", + "maker": "Maker H", + "model": "Model 7898", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.143365352785395, + 21.544158259458577 + ] + }, + "properties": { + "id": "meter-7899", + "maker": "Maker D", + "model": "Model 7899", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.596349390075254, + 21.393270341659722 + ] + }, + "properties": { + "id": "meter-7900", + "maker": "Maker B", + "model": "Model 7900", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97373293478154, + 26.38422283222472 + ] + }, + "properties": { + "id": "meter-7901", + "maker": "Maker I", + "model": "Model 7901", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92332463739738, + 26.312667194735184 + ] + }, + "properties": { + "id": "meter-7902", + "maker": "Maker H", + "model": "Model 7902", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13475859535427, + 26.35151056685842 + ] + }, + "properties": { + "id": "meter-7903", + "maker": "Maker I", + "model": "Model 7903", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.83199775281588, + 27.527552249735308 + ] + }, + "properties": { + "id": "meter-7904", + "maker": "Maker B", + "model": "Model 7904", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.720327665638415, + 27.48370591438114 + ] + }, + "properties": { + "id": "meter-7905", + "maker": "Maker F", + "model": "Model 7905", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.68562590976358, + 27.43434822898157 + ] + }, + "properties": { + "id": "meter-7906", + "maker": "Maker H", + "model": "Model 7906", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.268620502005994, + 21.477279057071275 + ] + }, + "properties": { + "id": "meter-7907", + "maker": "Maker G", + "model": "Model 7907", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.74342867761759, + 18.09189224854479 + ] + }, + "properties": { + "id": "meter-7908", + "maker": "Maker E", + "model": "Model 7908", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.652689947243076, + 24.729820475472835 + ] + }, + "properties": { + "id": "meter-7909", + "maker": "Maker F", + "model": "Model 7909", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.78476255007206, + 21.443090588853234 + ] + }, + "properties": { + "id": "meter-7910", + "maker": "Maker J", + "model": "Model 7910", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.6400332111909, + 24.68084185218643 + ] + }, + "properties": { + "id": "meter-7911", + "maker": "Maker J", + "model": "Model 7911", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.10435318911402, + 21.707956138591726 + ] + }, + "properties": { + "id": "meter-7912", + "maker": "Maker E", + "model": "Model 7912", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.6159379256181, + 24.504326305355985 + ] + }, + "properties": { + "id": "meter-7913", + "maker": "Maker E", + "model": "Model 7913", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21987107182214, + 30.03180788016722 + ] + }, + "properties": { + "id": "meter-7914", + "maker": "Maker G", + "model": "Model 7914", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.89288645512786, + 18.262203918031002 + ] + }, + "properties": { + "id": "meter-7915", + "maker": "Maker G", + "model": "Model 7915", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.926396133376585, + 26.609283303324737 + ] + }, + "properties": { + "id": "meter-7916", + "maker": "Maker A", + "model": "Model 7916", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.632485303329446, + 28.462217735119058 + ] + }, + "properties": { + "id": "meter-7917", + "maker": "Maker A", + "model": "Model 7917", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.3710679305885, + 28.382440717592107 + ] + }, + "properties": { + "id": "meter-7918", + "maker": "Maker G", + "model": "Model 7918", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.485630906396864, + 20.10980905406805 + ] + }, + "properties": { + "id": "meter-7919", + "maker": "Maker I", + "model": "Model 7919", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01045392075225, + 26.519184956957222 + ] + }, + "properties": { + "id": "meter-7920", + "maker": "Maker F", + "model": "Model 7920", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92114212597892, + 26.452978613603975 + ] + }, + "properties": { + "id": "meter-7921", + "maker": "Maker G", + "model": "Model 7921", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.0958372474038, + 21.344060867985874 + ] + }, + "properties": { + "id": "meter-7922", + "maker": "Maker B", + "model": "Model 7922", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.71618921485547, + 27.4943743685146 + ] + }, + "properties": { + "id": "meter-7923", + "maker": "Maker B", + "model": "Model 7923", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.05406627880896, + 30.96817290310446 + ] + }, + "properties": { + "id": "meter-7924", + "maker": "Maker H", + "model": "Model 7924", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.999872159847, + 26.358365817941127 + ] + }, + "properties": { + "id": "meter-7925", + "maker": "Maker J", + "model": "Model 7925", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14852854192697, + 26.08703146361422 + ] + }, + "properties": { + "id": "meter-7926", + "maker": "Maker G", + "model": "Model 7926", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.20092523992106, + 17.412313881968153 + ] + }, + "properties": { + "id": "meter-7927", + "maker": "Maker C", + "model": "Model 7927", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.617650453980154, + 18.11967095605271 + ] + }, + "properties": { + "id": "meter-7928", + "maker": "Maker H", + "model": "Model 7928", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.64642713936965, + 24.66210872652683 + ] + }, + "properties": { + "id": "meter-7929", + "maker": "Maker I", + "model": "Model 7929", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.75375322418594, + 25.414770636199425 + ] + }, + "properties": { + "id": "meter-7930", + "maker": "Maker C", + "model": "Model 7930", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.64560007826584, + 25.27921745778601 + ] + }, + "properties": { + "id": "meter-7931", + "maker": "Maker E", + "model": "Model 7931", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09913433201568, + 24.234044905180745 + ] + }, + "properties": { + "id": "meter-7932", + "maker": "Maker D", + "model": "Model 7932", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.363123395180764, + 24.53292311666509 + ] + }, + "properties": { + "id": "meter-7933", + "maker": "Maker D", + "model": "Model 7933", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.87040365434552, + 31.12393327412168 + ] + }, + "properties": { + "id": "meter-7934", + "maker": "Maker J", + "model": "Model 7934", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.90361091861755, + 26.590657409182736 + ] + }, + "properties": { + "id": "meter-7935", + "maker": "Maker B", + "model": "Model 7935", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.14185724111317, + 30.979273912889123 + ] + }, + "properties": { + "id": "meter-7936", + "maker": "Maker D", + "model": "Model 7936", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.91074080248355, + 27.38902495597353 + ] + }, + "properties": { + "id": "meter-7937", + "maker": "Maker D", + "model": "Model 7937", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.980881167329784, + 26.40186185611938 + ] + }, + "properties": { + "id": "meter-7938", + "maker": "Maker C", + "model": "Model 7938", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.42069269708328, + 29.941920624695808 + ] + }, + "properties": { + "id": "meter-7939", + "maker": "Maker A", + "model": "Model 7939", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20647854680453, + 26.334720696867 + ] + }, + "properties": { + "id": "meter-7940", + "maker": "Maker A", + "model": "Model 7940", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.36988945070475, + 21.612124226847826 + ] + }, + "properties": { + "id": "meter-7941", + "maker": "Maker H", + "model": "Model 7941", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.93395681456869, + 26.320174852342404 + ] + }, + "properties": { + "id": "meter-7942", + "maker": "Maker B", + "model": "Model 7942", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.37397592313958, + 21.727429762338407 + ] + }, + "properties": { + "id": "meter-7943", + "maker": "Maker E", + "model": "Model 7943", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45280049260297, + 20.017867824475413 + ] + }, + "properties": { + "id": "meter-7944", + "maker": "Maker J", + "model": "Model 7944", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86554456447657, + 21.394835051120044 + ] + }, + "properties": { + "id": "meter-7945", + "maker": "Maker J", + "model": "Model 7945", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.557497234941856, + 18.3577554861075 + ] + }, + "properties": { + "id": "meter-7946", + "maker": "Maker J", + "model": "Model 7946", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.15182095768207, + 24.155424958545545 + ] + }, + "properties": { + "id": "meter-7947", + "maker": "Maker D", + "model": "Model 7947", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.34993685220301, + 25.298708843116128 + ] + }, + "properties": { + "id": "meter-7948", + "maker": "Maker G", + "model": "Model 7948", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.09980410445805, + 30.97892532701419 + ] + }, + "properties": { + "id": "meter-7949", + "maker": "Maker D", + "model": "Model 7949", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02858243102232, + 26.276577462862228 + ] + }, + "properties": { + "id": "meter-7950", + "maker": "Maker G", + "model": "Model 7950", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.936565192720785, + 26.2914306548238 + ] + }, + "properties": { + "id": "meter-7951", + "maker": "Maker C", + "model": "Model 7951", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99519138948614, + 26.38032623631484 + ] + }, + "properties": { + "id": "meter-7952", + "maker": "Maker J", + "model": "Model 7952", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00141997682637, + 26.43475407024669 + ] + }, + "properties": { + "id": "meter-7953", + "maker": "Maker G", + "model": "Model 7953", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.863941623694245, + 18.38907854341141 + ] + }, + "properties": { + "id": "meter-7954", + "maker": "Maker C", + "model": "Model 7954", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.2133288453438, + 29.94850549203608 + ] + }, + "properties": { + "id": "meter-7955", + "maker": "Maker C", + "model": "Model 7955", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54385981085441, + 25.501744810531335 + ] + }, + "properties": { + "id": "meter-7956", + "maker": "Maker E", + "model": "Model 7956", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.85471108714882, + 25.228250530134705 + ] + }, + "properties": { + "id": "meter-7957", + "maker": "Maker D", + "model": "Model 7957", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11091044119312, + 17.469682243718122 + ] + }, + "properties": { + "id": "meter-7958", + "maker": "Maker I", + "model": "Model 7958", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89923122256903, + 24.596877613573422 + ] + }, + "properties": { + "id": "meter-7959", + "maker": "Maker B", + "model": "Model 7959", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.87389858552323, + 30.89284662226313 + ] + }, + "properties": { + "id": "meter-7960", + "maker": "Maker I", + "model": "Model 7960", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.68216165317176, + 21.150989861176917 + ] + }, + "properties": { + "id": "meter-7961", + "maker": "Maker J", + "model": "Model 7961", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.06202360063657, + 21.249267205563005 + ] + }, + "properties": { + "id": "meter-7962", + "maker": "Maker I", + "model": "Model 7962", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.40331473087663, + 18.169195324238856 + ] + }, + "properties": { + "id": "meter-7963", + "maker": "Maker E", + "model": "Model 7963", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.28304091278523, + 21.449800786582546 + ] + }, + "properties": { + "id": "meter-7964", + "maker": "Maker B", + "model": "Model 7964", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.63731498855467, + 25.305085315911555 + ] + }, + "properties": { + "id": "meter-7965", + "maker": "Maker G", + "model": "Model 7965", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97003098482065, + 26.40811259174627 + ] + }, + "properties": { + "id": "meter-7966", + "maker": "Maker F", + "model": "Model 7966", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.64877669130656, + 28.46311914965395 + ] + }, + "properties": { + "id": "meter-7967", + "maker": "Maker G", + "model": "Model 7967", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.495506613626574, + 28.584514737503714 + ] + }, + "properties": { + "id": "meter-7968", + "maker": "Maker E", + "model": "Model 7968", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.394740975008645, + 30.11225843273833 + ] + }, + "properties": { + "id": "meter-7969", + "maker": "Maker D", + "model": "Model 7969", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.525869718663316, + 27.56718859416219 + ] + }, + "properties": { + "id": "meter-7970", + "maker": "Maker H", + "model": "Model 7970", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.85516105793027, + 30.834869992694223 + ] + }, + "properties": { + "id": "meter-7971", + "maker": "Maker F", + "model": "Model 7971", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.961395582885075, + 30.85073599977771 + ] + }, + "properties": { + "id": "meter-7972", + "maker": "Maker B", + "model": "Model 7972", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.70195638779552, + 25.567294953098834 + ] + }, + "properties": { + "id": "meter-7973", + "maker": "Maker C", + "model": "Model 7973", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4699777804861, + 20.009260478998712 + ] + }, + "properties": { + "id": "meter-7974", + "maker": "Maker J", + "model": "Model 7974", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.938372000433816, + 21.395061533359677 + ] + }, + "properties": { + "id": "meter-7975", + "maker": "Maker H", + "model": "Model 7975", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.11312296746822, + 21.56584957601929 + ] + }, + "properties": { + "id": "meter-7976", + "maker": "Maker D", + "model": "Model 7976", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.35790150150583, + 19.94046870784671 + ] + }, + "properties": { + "id": "meter-7977", + "maker": "Maker C", + "model": "Model 7977", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.464997607957336, + 24.484400738277778 + ] + }, + "properties": { + "id": "meter-7978", + "maker": "Maker H", + "model": "Model 7978", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.395615968720776, + 18.069124342190584 + ] + }, + "properties": { + "id": "meter-7979", + "maker": "Maker E", + "model": "Model 7979", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.79642837936912, + 18.194614132481604 + ] + }, + "properties": { + "id": "meter-7980", + "maker": "Maker B", + "model": "Model 7980", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.48359767082229, + 18.250220290788885 + ] + }, + "properties": { + "id": "meter-7981", + "maker": "Maker E", + "model": "Model 7981", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57616319552201, + 25.074143992331116 + ] + }, + "properties": { + "id": "meter-7982", + "maker": "Maker A", + "model": "Model 7982", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.10820917601844, + 21.238689151471608 + ] + }, + "properties": { + "id": "meter-7983", + "maker": "Maker E", + "model": "Model 7983", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.23138502700548, + 17.58881904149882 + ] + }, + "properties": { + "id": "meter-7984", + "maker": "Maker G", + "model": "Model 7984", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.241507211822594, + 19.90292283082435 + ] + }, + "properties": { + "id": "meter-7985", + "maker": "Maker H", + "model": "Model 7985", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.761242548947344, + 25.16433964416616 + ] + }, + "properties": { + "id": "meter-7986", + "maker": "Maker F", + "model": "Model 7986", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57760697531599, + 25.395717795322017 + ] + }, + "properties": { + "id": "meter-7987", + "maker": "Maker I", + "model": "Model 7987", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.06936279299381, + 31.101900110058548 + ] + }, + "properties": { + "id": "meter-7988", + "maker": "Maker F", + "model": "Model 7988", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.002183671909236, + 26.395715772592787 + ] + }, + "properties": { + "id": "meter-7989", + "maker": "Maker J", + "model": "Model 7989", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92136782456634, + 26.48621502543165 + ] + }, + "properties": { + "id": "meter-7990", + "maker": "Maker E", + "model": "Model 7990", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.480759919678064, + 28.377986113122265 + ] + }, + "properties": { + "id": "meter-7991", + "maker": "Maker J", + "model": "Model 7991", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.8700287474586, + 18.13777040039534 + ] + }, + "properties": { + "id": "meter-7992", + "maker": "Maker D", + "model": "Model 7992", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01124861354009, + 26.21032159429821 + ] + }, + "properties": { + "id": "meter-7993", + "maker": "Maker I", + "model": "Model 7993", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.14565620966409, + 24.175589584171284 + ] + }, + "properties": { + "id": "meter-7994", + "maker": "Maker E", + "model": "Model 7994", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.63576757098255, + 18.41138725218647 + ] + }, + "properties": { + "id": "meter-7995", + "maker": "Maker D", + "model": "Model 7995", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.11899040614978, + 29.870380888066435 + ] + }, + "properties": { + "id": "meter-7996", + "maker": "Maker C", + "model": "Model 7996", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.713543881433864, + 27.36572839873987 + ] + }, + "properties": { + "id": "meter-7997", + "maker": "Maker D", + "model": "Model 7997", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9734740758643, + 26.432618007343216 + ] + }, + "properties": { + "id": "meter-7998", + "maker": "Maker H", + "model": "Model 7998", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.23947096661725, + 24.160271152302354 + ] + }, + "properties": { + "id": "meter-7999", + "maker": "Maker A", + "model": "Model 7999", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.34739051899451, + 24.07388805232973 + ] + }, + "properties": { + "id": "meter-8000", + "maker": "Maker H", + "model": "Model 8000", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68477237393879, + 18.05718019380743 + ] + }, + "properties": { + "id": "meter-8001", + "maker": "Maker C", + "model": "Model 8001", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.16461447334265, + 17.540214348532874 + ] + }, + "properties": { + "id": "meter-8002", + "maker": "Maker G", + "model": "Model 8002", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05874575202231, + 26.442725527063544 + ] + }, + "properties": { + "id": "meter-8003", + "maker": "Maker J", + "model": "Model 8003", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15732849457718, + 26.381259409341723 + ] + }, + "properties": { + "id": "meter-8004", + "maker": "Maker A", + "model": "Model 8004", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.71653676475642, + 24.360648695085114 + ] + }, + "properties": { + "id": "meter-8005", + "maker": "Maker C", + "model": "Model 8005", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2062345422202, + 21.75630834048999 + ] + }, + "properties": { + "id": "meter-8006", + "maker": "Maker C", + "model": "Model 8006", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.68186903057008, + 28.59407168194585 + ] + }, + "properties": { + "id": "meter-8007", + "maker": "Maker D", + "model": "Model 8007", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.38726323072308, + 28.43162210917419 + ] + }, + "properties": { + "id": "meter-8008", + "maker": "Maker E", + "model": "Model 8008", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.33028533201066, + 19.95833427662716 + ] + }, + "properties": { + "id": "meter-8009", + "maker": "Maker D", + "model": "Model 8009", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18363590925355, + 26.37979339901429 + ] + }, + "properties": { + "id": "meter-8010", + "maker": "Maker F", + "model": "Model 8010", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21607687580309, + 26.24573606211706 + ] + }, + "properties": { + "id": "meter-8011", + "maker": "Maker C", + "model": "Model 8011", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.16571112843153, + 17.457710247555834 + ] + }, + "properties": { + "id": "meter-8012", + "maker": "Maker G", + "model": "Model 8012", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.072683213068004, + 24.096292757549858 + ] + }, + "properties": { + "id": "meter-8013", + "maker": "Maker C", + "model": "Model 8013", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.969800942690625, + 26.362841719414057 + ] + }, + "properties": { + "id": "meter-8014", + "maker": "Maker A", + "model": "Model 8014", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42333873883576, + 20.192956440322536 + ] + }, + "properties": { + "id": "meter-8015", + "maker": "Maker B", + "model": "Model 8015", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.00305552217667, + 21.36752207607309 + ] + }, + "properties": { + "id": "meter-8016", + "maker": "Maker D", + "model": "Model 8016", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.35193480407779, + 24.48145936641317 + ] + }, + "properties": { + "id": "meter-8017", + "maker": "Maker I", + "model": "Model 8017", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.22658461416833, + 30.97298417490694 + ] + }, + "properties": { + "id": "meter-8018", + "maker": "Maker C", + "model": "Model 8018", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01705989202898, + 26.431109420502473 + ] + }, + "properties": { + "id": "meter-8019", + "maker": "Maker F", + "model": "Model 8019", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.096377587984364, + 26.184630181985728 + ] + }, + "properties": { + "id": "meter-8020", + "maker": "Maker H", + "model": "Model 8020", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1236628988037, + 17.437760184243835 + ] + }, + "properties": { + "id": "meter-8021", + "maker": "Maker D", + "model": "Model 8021", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.38756507054913, + 18.44069865417398 + ] + }, + "properties": { + "id": "meter-8022", + "maker": "Maker A", + "model": "Model 8022", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.78161913360653, + 27.41323599975726 + ] + }, + "properties": { + "id": "meter-8023", + "maker": "Maker A", + "model": "Model 8023", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.816811356126536, + 21.341376532726596 + ] + }, + "properties": { + "id": "meter-8024", + "maker": "Maker B", + "model": "Model 8024", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.76525783562395, + 24.64405757618322 + ] + }, + "properties": { + "id": "meter-8025", + "maker": "Maker H", + "model": "Model 8025", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.15602473054501, + 17.484954950529783 + ] + }, + "properties": { + "id": "meter-8026", + "maker": "Maker B", + "model": "Model 8026", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.326908287503855, + 24.072121157404435 + ] + }, + "properties": { + "id": "meter-8027", + "maker": "Maker J", + "model": "Model 8027", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1386820014442, + 17.50620717425762 + ] + }, + "properties": { + "id": "meter-8028", + "maker": "Maker D", + "model": "Model 8028", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.59814762305333, + 18.26200148965515 + ] + }, + "properties": { + "id": "meter-8029", + "maker": "Maker H", + "model": "Model 8029", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.59990437548654, + 18.16927497225735 + ] + }, + "properties": { + "id": "meter-8030", + "maker": "Maker J", + "model": "Model 8030", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.439340733335364, + 24.667136839284574 + ] + }, + "properties": { + "id": "meter-8031", + "maker": "Maker F", + "model": "Model 8031", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.4734422869825, + 25.343911800645053 + ] + }, + "properties": { + "id": "meter-8032", + "maker": "Maker B", + "model": "Model 8032", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4941324792516, + 19.92093346628891 + ] + }, + "properties": { + "id": "meter-8033", + "maker": "Maker H", + "model": "Model 8033", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13771346409662, + 17.520565432186537 + ] + }, + "properties": { + "id": "meter-8034", + "maker": "Maker H", + "model": "Model 8034", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.42459850763844, + 29.897466804002526 + ] + }, + "properties": { + "id": "meter-8035", + "maker": "Maker B", + "model": "Model 8035", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.73502719935061, + 19.999269601396104 + ] + }, + "properties": { + "id": "meter-8036", + "maker": "Maker J", + "model": "Model 8036", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66332462971094, + 18.295068791296423 + ] + }, + "properties": { + "id": "meter-8037", + "maker": "Maker I", + "model": "Model 8037", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.265419335092794, + 21.491944117590588 + ] + }, + "properties": { + "id": "meter-8038", + "maker": "Maker I", + "model": "Model 8038", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84120727563509, + 21.396124373982875 + ] + }, + "properties": { + "id": "meter-8039", + "maker": "Maker J", + "model": "Model 8039", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.17206001653128, + 24.129403917818895 + ] + }, + "properties": { + "id": "meter-8040", + "maker": "Maker F", + "model": "Model 8040", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.928623738289005, + 24.250513503744664 + ] + }, + "properties": { + "id": "meter-8041", + "maker": "Maker F", + "model": "Model 8041", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.556604755638, + 18.08556403251082 + ] + }, + "properties": { + "id": "meter-8042", + "maker": "Maker D", + "model": "Model 8042", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.875352410429684, + 26.521814207180505 + ] + }, + "properties": { + "id": "meter-8043", + "maker": "Maker G", + "model": "Model 8043", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.11729912792913, + 24.13308301129858 + ] + }, + "properties": { + "id": "meter-8044", + "maker": "Maker F", + "model": "Model 8044", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.43538883460121, + 18.2320699108115 + ] + }, + "properties": { + "id": "meter-8045", + "maker": "Maker A", + "model": "Model 8045", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72674999498788, + 18.365858423940054 + ] + }, + "properties": { + "id": "meter-8046", + "maker": "Maker I", + "model": "Model 8046", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67069072002601, + 24.4154691405738 + ] + }, + "properties": { + "id": "meter-8047", + "maker": "Maker A", + "model": "Model 8047", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.207137889285484, + 21.519449890465417 + ] + }, + "properties": { + "id": "meter-8048", + "maker": "Maker I", + "model": "Model 8048", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.004744178533855, + 31.16214490592822 + ] + }, + "properties": { + "id": "meter-8049", + "maker": "Maker G", + "model": "Model 8049", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.88004411752324, + 18.399951988755507 + ] + }, + "properties": { + "id": "meter-8050", + "maker": "Maker H", + "model": "Model 8050", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97531901973146, + 26.549176368447746 + ] + }, + "properties": { + "id": "meter-8051", + "maker": "Maker B", + "model": "Model 8051", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67624919660351, + 20.113715355032557 + ] + }, + "properties": { + "id": "meter-8052", + "maker": "Maker H", + "model": "Model 8052", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.7898788284839, + 24.90228769759992 + ] + }, + "properties": { + "id": "meter-8053", + "maker": "Maker B", + "model": "Model 8053", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06154042838347, + 26.389945611231305 + ] + }, + "properties": { + "id": "meter-8054", + "maker": "Maker H", + "model": "Model 8054", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19258656187095, + 26.300679889655072 + ] + }, + "properties": { + "id": "meter-8055", + "maker": "Maker C", + "model": "Model 8055", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.61905816324863, + 28.47705990854808 + ] + }, + "properties": { + "id": "meter-8056", + "maker": "Maker B", + "model": "Model 8056", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.90967243474073, + 21.324572141486495 + ] + }, + "properties": { + "id": "meter-8057", + "maker": "Maker G", + "model": "Model 8057", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11641317745088, + 26.39390546009685 + ] + }, + "properties": { + "id": "meter-8058", + "maker": "Maker C", + "model": "Model 8058", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65053900076364, + 24.838070730512577 + ] + }, + "properties": { + "id": "meter-8059", + "maker": "Maker B", + "model": "Model 8059", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.662262978870565, + 19.84857636824206 + ] + }, + "properties": { + "id": "meter-8060", + "maker": "Maker C", + "model": "Model 8060", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.71251624592698, + 24.81334797072803 + ] + }, + "properties": { + "id": "meter-8061", + "maker": "Maker H", + "model": "Model 8061", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13527349443937, + 26.43084613465541 + ] + }, + "properties": { + "id": "meter-8062", + "maker": "Maker B", + "model": "Model 8062", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.30665009564407, + 21.478660861719067 + ] + }, + "properties": { + "id": "meter-8063", + "maker": "Maker H", + "model": "Model 8063", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.26743770587055, + 19.92947832577037 + ] + }, + "properties": { + "id": "meter-8064", + "maker": "Maker E", + "model": "Model 8064", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09833720549789, + 26.251039641735833 + ] + }, + "properties": { + "id": "meter-8065", + "maker": "Maker I", + "model": "Model 8065", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.73946804166086, + 21.388138259882496 + ] + }, + "properties": { + "id": "meter-8066", + "maker": "Maker G", + "model": "Model 8066", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.10168627176333, + 30.013774648714985 + ] + }, + "properties": { + "id": "meter-8067", + "maker": "Maker B", + "model": "Model 8067", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.83890526152923, + 24.529216466994352 + ] + }, + "properties": { + "id": "meter-8068", + "maker": "Maker J", + "model": "Model 8068", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.360439532784305, + 21.38703820754035 + ] + }, + "properties": { + "id": "meter-8069", + "maker": "Maker H", + "model": "Model 8069", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.2692694694868, + 18.173499039018253 + ] + }, + "properties": { + "id": "meter-8070", + "maker": "Maker A", + "model": "Model 8070", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93088969741095, + 26.531142154063783 + ] + }, + "properties": { + "id": "meter-8071", + "maker": "Maker J", + "model": "Model 8071", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.16953744712389, + 26.442132065717676 + ] + }, + "properties": { + "id": "meter-8072", + "maker": "Maker D", + "model": "Model 8072", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.10911198975704, + 24.05305774938755 + ] + }, + "properties": { + "id": "meter-8073", + "maker": "Maker H", + "model": "Model 8073", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93689409814077, + 26.479290752072252 + ] + }, + "properties": { + "id": "meter-8074", + "maker": "Maker E", + "model": "Model 8074", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.86107649381527, + 18.200273981215982 + ] + }, + "properties": { + "id": "meter-8075", + "maker": "Maker E", + "model": "Model 8075", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.20816161743805, + 30.99362329236463 + ] + }, + "properties": { + "id": "meter-8076", + "maker": "Maker E", + "model": "Model 8076", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09522918147009, + 26.333716180365652 + ] + }, + "properties": { + "id": "meter-8077", + "maker": "Maker C", + "model": "Model 8077", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.3605031032244, + 17.955771929348877 + ] + }, + "properties": { + "id": "meter-8078", + "maker": "Maker I", + "model": "Model 8078", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77007441414911, + 24.5058426114128 + ] + }, + "properties": { + "id": "meter-8079", + "maker": "Maker G", + "model": "Model 8079", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.53197065623288, + 25.301586945622105 + ] + }, + "properties": { + "id": "meter-8080", + "maker": "Maker D", + "model": "Model 8080", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.612203999091115, + 18.29294327930325 + ] + }, + "properties": { + "id": "meter-8081", + "maker": "Maker G", + "model": "Model 8081", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.952604914274914, + 31.225945328105215 + ] + }, + "properties": { + "id": "meter-8082", + "maker": "Maker B", + "model": "Model 8082", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.54026301234465, + 27.379879020876405 + ] + }, + "properties": { + "id": "meter-8083", + "maker": "Maker D", + "model": "Model 8083", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14020311307936, + 26.42996997640339 + ] + }, + "properties": { + "id": "meter-8084", + "maker": "Maker A", + "model": "Model 8084", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.0162425593395, + 17.702492517296722 + ] + }, + "properties": { + "id": "meter-8085", + "maker": "Maker J", + "model": "Model 8085", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.480750216428355, + 28.331933571332275 + ] + }, + "properties": { + "id": "meter-8086", + "maker": "Maker F", + "model": "Model 8086", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.347002198077575, + 21.60843306378216 + ] + }, + "properties": { + "id": "meter-8087", + "maker": "Maker D", + "model": "Model 8087", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1274746103377, + 26.106653276780506 + ] + }, + "properties": { + "id": "meter-8088", + "maker": "Maker G", + "model": "Model 8088", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0347673995542, + 26.43246164107452 + ] + }, + "properties": { + "id": "meter-8089", + "maker": "Maker F", + "model": "Model 8089", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.60021666769052, + 18.039292598281772 + ] + }, + "properties": { + "id": "meter-8090", + "maker": "Maker H", + "model": "Model 8090", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.82868300087235, + 24.45073685243476 + ] + }, + "properties": { + "id": "meter-8091", + "maker": "Maker G", + "model": "Model 8091", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.63560302833481, + 25.176236294238816 + ] + }, + "properties": { + "id": "meter-8092", + "maker": "Maker J", + "model": "Model 8092", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.851233389298415, + 18.294210192247924 + ] + }, + "properties": { + "id": "meter-8093", + "maker": "Maker H", + "model": "Model 8093", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55745903360492, + 27.388947867638855 + ] + }, + "properties": { + "id": "meter-8094", + "maker": "Maker J", + "model": "Model 8094", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.24883091493758, + 30.09859946328378 + ] + }, + "properties": { + "id": "meter-8095", + "maker": "Maker B", + "model": "Model 8095", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08880632755065, + 26.30295737501496 + ] + }, + "properties": { + "id": "meter-8096", + "maker": "Maker B", + "model": "Model 8096", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08862344970059, + 26.396529013272865 + ] + }, + "properties": { + "id": "meter-8097", + "maker": "Maker C", + "model": "Model 8097", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.61221280713143, + 18.460520441359805 + ] + }, + "properties": { + "id": "meter-8098", + "maker": "Maker I", + "model": "Model 8098", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.84932051156685, + 18.254900587055158 + ] + }, + "properties": { + "id": "meter-8099", + "maker": "Maker J", + "model": "Model 8099", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04063805130818, + 17.40150415980031 + ] + }, + "properties": { + "id": "meter-8100", + "maker": "Maker J", + "model": "Model 8100", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.1778571893327, + 24.33881488510194 + ] + }, + "properties": { + "id": "meter-8101", + "maker": "Maker G", + "model": "Model 8101", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69811693327151, + 27.633888615193552 + ] + }, + "properties": { + "id": "meter-8102", + "maker": "Maker B", + "model": "Model 8102", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71377638278084, + 18.389504570696555 + ] + }, + "properties": { + "id": "meter-8103", + "maker": "Maker E", + "model": "Model 8103", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.055615181203216, + 26.20333649257449 + ] + }, + "properties": { + "id": "meter-8104", + "maker": "Maker D", + "model": "Model 8104", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.631437543787705, + 24.891032210798986 + ] + }, + "properties": { + "id": "meter-8105", + "maker": "Maker J", + "model": "Model 8105", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47223828610688, + 19.999393691897833 + ] + }, + "properties": { + "id": "meter-8106", + "maker": "Maker I", + "model": "Model 8106", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.729173536609665, + 25.549622113881913 + ] + }, + "properties": { + "id": "meter-8107", + "maker": "Maker E", + "model": "Model 8107", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.40806923918101, + 21.65148487218891 + ] + }, + "properties": { + "id": "meter-8108", + "maker": "Maker H", + "model": "Model 8108", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61471591773519, + 24.740458994887657 + ] + }, + "properties": { + "id": "meter-8109", + "maker": "Maker J", + "model": "Model 8109", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77128937955128, + 21.309089429670117 + ] + }, + "properties": { + "id": "meter-8110", + "maker": "Maker B", + "model": "Model 8110", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.206181808164004, + 29.97011790881081 + ] + }, + "properties": { + "id": "meter-8111", + "maker": "Maker J", + "model": "Model 8111", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.625911173646585, + 28.56854172839869 + ] + }, + "properties": { + "id": "meter-8112", + "maker": "Maker H", + "model": "Model 8112", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19624272349649, + 26.326275410876047 + ] + }, + "properties": { + "id": "meter-8113", + "maker": "Maker G", + "model": "Model 8113", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.05192293260922, + 30.957066261044666 + ] + }, + "properties": { + "id": "meter-8114", + "maker": "Maker C", + "model": "Model 8114", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.47473775385003, + 24.703169919373767 + ] + }, + "properties": { + "id": "meter-8115", + "maker": "Maker I", + "model": "Model 8115", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.64627715016954, + 25.442364792925673 + ] + }, + "properties": { + "id": "meter-8116", + "maker": "Maker A", + "model": "Model 8116", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.06932124553728, + 31.163698396861548 + ] + }, + "properties": { + "id": "meter-8117", + "maker": "Maker H", + "model": "Model 8117", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08201525542912, + 17.76991610167525 + ] + }, + "properties": { + "id": "meter-8118", + "maker": "Maker G", + "model": "Model 8118", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.70074536296977, + 24.81391120701457 + ] + }, + "properties": { + "id": "meter-8119", + "maker": "Maker H", + "model": "Model 8119", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.7377001541063, + 24.595027320501433 + ] + }, + "properties": { + "id": "meter-8120", + "maker": "Maker A", + "model": "Model 8120", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.962346497824335, + 26.44335485395678 + ] + }, + "properties": { + "id": "meter-8121", + "maker": "Maker H", + "model": "Model 8121", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.37347347784387, + 21.546568517680186 + ] + }, + "properties": { + "id": "meter-8122", + "maker": "Maker A", + "model": "Model 8122", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.44267171171598, + 20.16739261018878 + ] + }, + "properties": { + "id": "meter-8123", + "maker": "Maker B", + "model": "Model 8123", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.31126618928193, + 21.581233948571207 + ] + }, + "properties": { + "id": "meter-8124", + "maker": "Maker F", + "model": "Model 8124", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.98649968010464, + 24.11746318503525 + ] + }, + "properties": { + "id": "meter-8125", + "maker": "Maker H", + "model": "Model 8125", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.9205506248724, + 21.495474096019997 + ] + }, + "properties": { + "id": "meter-8126", + "maker": "Maker F", + "model": "Model 8126", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.46145105863505, + 25.309697215042572 + ] + }, + "properties": { + "id": "meter-8127", + "maker": "Maker A", + "model": "Model 8127", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.949275367917714, + 30.02202401332101 + ] + }, + "properties": { + "id": "meter-8128", + "maker": "Maker F", + "model": "Model 8128", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.72029364547053, + 27.58068254337727 + ] + }, + "properties": { + "id": "meter-8129", + "maker": "Maker G", + "model": "Model 8129", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.29631477426866, + 21.601694674685323 + ] + }, + "properties": { + "id": "meter-8130", + "maker": "Maker E", + "model": "Model 8130", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.70479650224559, + 24.674237972690218 + ] + }, + "properties": { + "id": "meter-8131", + "maker": "Maker C", + "model": "Model 8131", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.51288496517891, + 18.248073146803 + ] + }, + "properties": { + "id": "meter-8132", + "maker": "Maker H", + "model": "Model 8132", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.75221796372792, + 24.94747369116907 + ] + }, + "properties": { + "id": "meter-8133", + "maker": "Maker I", + "model": "Model 8133", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.468760942398184, + 18.34267329414758 + ] + }, + "properties": { + "id": "meter-8134", + "maker": "Maker D", + "model": "Model 8134", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.777119770151884, + 24.387016328253544 + ] + }, + "properties": { + "id": "meter-8135", + "maker": "Maker F", + "model": "Model 8135", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.257320483366186, + 20.165962082974307 + ] + }, + "properties": { + "id": "meter-8136", + "maker": "Maker A", + "model": "Model 8136", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12358882251278, + 17.457093622762994 + ] + }, + "properties": { + "id": "meter-8137", + "maker": "Maker D", + "model": "Model 8137", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.09859327467767, + 30.772994223776934 + ] + }, + "properties": { + "id": "meter-8138", + "maker": "Maker E", + "model": "Model 8138", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57946994987833, + 25.353571788532673 + ] + }, + "properties": { + "id": "meter-8139", + "maker": "Maker A", + "model": "Model 8139", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.66106861314641, + 21.494399326416055 + ] + }, + "properties": { + "id": "meter-8140", + "maker": "Maker H", + "model": "Model 8140", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53663933236808, + 18.160419531390236 + ] + }, + "properties": { + "id": "meter-8141", + "maker": "Maker D", + "model": "Model 8141", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.604972431026326, + 25.203986797430893 + ] + }, + "properties": { + "id": "meter-8142", + "maker": "Maker A", + "model": "Model 8142", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.6470441031302, + 28.69279070108949 + ] + }, + "properties": { + "id": "meter-8143", + "maker": "Maker H", + "model": "Model 8143", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63725839981267, + 24.481973730207862 + ] + }, + "properties": { + "id": "meter-8144", + "maker": "Maker E", + "model": "Model 8144", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.70737056472607, + 25.459552265899138 + ] + }, + "properties": { + "id": "meter-8145", + "maker": "Maker A", + "model": "Model 8145", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.08440644788773, + 24.087967783688935 + ] + }, + "properties": { + "id": "meter-8146", + "maker": "Maker A", + "model": "Model 8146", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.87811658978274, + 27.51518394421222 + ] + }, + "properties": { + "id": "meter-8147", + "maker": "Maker A", + "model": "Model 8147", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.005207818560734, + 30.985552283643802 + ] + }, + "properties": { + "id": "meter-8148", + "maker": "Maker I", + "model": "Model 8148", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45319138980195, + 18.35663318384173 + ] + }, + "properties": { + "id": "meter-8149", + "maker": "Maker G", + "model": "Model 8149", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.00543962652688, + 21.64863227499461 + ] + }, + "properties": { + "id": "meter-8150", + "maker": "Maker I", + "model": "Model 8150", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03136804817397, + 30.963628307856833 + ] + }, + "properties": { + "id": "meter-8151", + "maker": "Maker I", + "model": "Model 8151", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.72875393869562, + 24.696596217945046 + ] + }, + "properties": { + "id": "meter-8152", + "maker": "Maker C", + "model": "Model 8152", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17602036659226, + 26.230972847856854 + ] + }, + "properties": { + "id": "meter-8153", + "maker": "Maker D", + "model": "Model 8153", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.73990887820623, + 27.281590447563065 + ] + }, + "properties": { + "id": "meter-8154", + "maker": "Maker J", + "model": "Model 8154", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11477980051483, + 26.306200407094032 + ] + }, + "properties": { + "id": "meter-8155", + "maker": "Maker G", + "model": "Model 8155", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.457595906173246, + 21.559171023452077 + ] + }, + "properties": { + "id": "meter-8156", + "maker": "Maker D", + "model": "Model 8156", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.63434850035345, + 28.316864053696335 + ] + }, + "properties": { + "id": "meter-8157", + "maker": "Maker J", + "model": "Model 8157", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.969130849340495, + 26.54567040708872 + ] + }, + "properties": { + "id": "meter-8158", + "maker": "Maker J", + "model": "Model 8158", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53512279219005, + 18.28862011897411 + ] + }, + "properties": { + "id": "meter-8159", + "maker": "Maker D", + "model": "Model 8159", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42591713065748, + 19.894639818090365 + ] + }, + "properties": { + "id": "meter-8160", + "maker": "Maker H", + "model": "Model 8160", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.48506974700344, + 18.236604575979 + ] + }, + "properties": { + "id": "meter-8161", + "maker": "Maker G", + "model": "Model 8161", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.667657373759845, + 24.26711989508281 + ] + }, + "properties": { + "id": "meter-8162", + "maker": "Maker E", + "model": "Model 8162", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.94165682411042, + 31.12407066362642 + ] + }, + "properties": { + "id": "meter-8163", + "maker": "Maker G", + "model": "Model 8163", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01868481139552, + 26.219289579942146 + ] + }, + "properties": { + "id": "meter-8164", + "maker": "Maker E", + "model": "Model 8164", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03380235284182, + 26.76239209013486 + ] + }, + "properties": { + "id": "meter-8165", + "maker": "Maker J", + "model": "Model 8165", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.776935030517556, + 26.387586850964905 + ] + }, + "properties": { + "id": "meter-8166", + "maker": "Maker A", + "model": "Model 8166", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07412672750473, + 24.09108496498342 + ] + }, + "properties": { + "id": "meter-8167", + "maker": "Maker E", + "model": "Model 8167", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.482441121767835, + 24.654674688399666 + ] + }, + "properties": { + "id": "meter-8168", + "maker": "Maker E", + "model": "Model 8168", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10715913237924, + 17.53829745749402 + ] + }, + "properties": { + "id": "meter-8169", + "maker": "Maker C", + "model": "Model 8169", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.29928982130453, + 24.025529100749896 + ] + }, + "properties": { + "id": "meter-8170", + "maker": "Maker G", + "model": "Model 8170", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.17165863467227, + 31.124826759026547 + ] + }, + "properties": { + "id": "meter-8171", + "maker": "Maker I", + "model": "Model 8171", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.119727570609264, + 26.385834533221487 + ] + }, + "properties": { + "id": "meter-8172", + "maker": "Maker B", + "model": "Model 8172", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.77691948053238, + 18.232479091755426 + ] + }, + "properties": { + "id": "meter-8173", + "maker": "Maker B", + "model": "Model 8173", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.60150385687325, + 25.345099977921258 + ] + }, + "properties": { + "id": "meter-8174", + "maker": "Maker J", + "model": "Model 8174", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63012937088096, + 24.53719514096637 + ] + }, + "properties": { + "id": "meter-8175", + "maker": "Maker E", + "model": "Model 8175", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49620891465797, + 18.34783179765187 + ] + }, + "properties": { + "id": "meter-8176", + "maker": "Maker B", + "model": "Model 8176", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.82108378912257, + 26.412061296820614 + ] + }, + "properties": { + "id": "meter-8177", + "maker": "Maker E", + "model": "Model 8177", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.117322752988485, + 29.941542279040718 + ] + }, + "properties": { + "id": "meter-8178", + "maker": "Maker D", + "model": "Model 8178", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.969530609824076, + 26.452726132556833 + ] + }, + "properties": { + "id": "meter-8179", + "maker": "Maker B", + "model": "Model 8179", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.78135268921198, + 26.39387743623077 + ] + }, + "properties": { + "id": "meter-8180", + "maker": "Maker G", + "model": "Model 8180", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.105510355675946, + 26.290943518580022 + ] + }, + "properties": { + "id": "meter-8181", + "maker": "Maker A", + "model": "Model 8181", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.142183001054896, + 30.143574733920712 + ] + }, + "properties": { + "id": "meter-8182", + "maker": "Maker A", + "model": "Model 8182", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.51328001231757, + 24.472445556637716 + ] + }, + "properties": { + "id": "meter-8183", + "maker": "Maker F", + "model": "Model 8183", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61008276422953, + 21.422010102410688 + ] + }, + "properties": { + "id": "meter-8184", + "maker": "Maker E", + "model": "Model 8184", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00513291720954, + 26.43649388260954 + ] + }, + "properties": { + "id": "meter-8185", + "maker": "Maker D", + "model": "Model 8185", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.645340335886694, + 28.441837870881276 + ] + }, + "properties": { + "id": "meter-8186", + "maker": "Maker D", + "model": "Model 8186", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.95036523139166, + 17.33006193413848 + ] + }, + "properties": { + "id": "meter-8187", + "maker": "Maker C", + "model": "Model 8187", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21261200446665, + 26.233898065502824 + ] + }, + "properties": { + "id": "meter-8188", + "maker": "Maker E", + "model": "Model 8188", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.584469120220405, + 21.328785216149665 + ] + }, + "properties": { + "id": "meter-8189", + "maker": "Maker D", + "model": "Model 8189", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.81435246193242, + 26.500883802115876 + ] + }, + "properties": { + "id": "meter-8190", + "maker": "Maker A", + "model": "Model 8190", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11189006797904, + 17.398722347653923 + ] + }, + "properties": { + "id": "meter-8191", + "maker": "Maker C", + "model": "Model 8191", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98656255536154, + 26.48003680701395 + ] + }, + "properties": { + "id": "meter-8192", + "maker": "Maker H", + "model": "Model 8192", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.521850262402964, + 24.53137757184469 + ] + }, + "properties": { + "id": "meter-8193", + "maker": "Maker F", + "model": "Model 8193", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.71171077340038, + 21.417914524272046 + ] + }, + "properties": { + "id": "meter-8194", + "maker": "Maker F", + "model": "Model 8194", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.20971898245592, + 17.526439592849087 + ] + }, + "properties": { + "id": "meter-8195", + "maker": "Maker C", + "model": "Model 8195", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23236720160682, + 29.91079752655023 + ] + }, + "properties": { + "id": "meter-8196", + "maker": "Maker C", + "model": "Model 8196", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.28494419899768, + 29.910953036652163 + ] + }, + "properties": { + "id": "meter-8197", + "maker": "Maker B", + "model": "Model 8197", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87637124348461, + 26.308167678109427 + ] + }, + "properties": { + "id": "meter-8198", + "maker": "Maker I", + "model": "Model 8198", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.57764102191377, + 24.598008723617237 + ] + }, + "properties": { + "id": "meter-8199", + "maker": "Maker F", + "model": "Model 8199", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15696110929121, + 26.307659884133205 + ] + }, + "properties": { + "id": "meter-8200", + "maker": "Maker G", + "model": "Model 8200", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.74693306783776, + 20.02804989156275 + ] + }, + "properties": { + "id": "meter-8201", + "maker": "Maker E", + "model": "Model 8201", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.79248888380316, + 27.238448699405716 + ] + }, + "properties": { + "id": "meter-8202", + "maker": "Maker B", + "model": "Model 8202", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.90343260565224, + 21.372562345257226 + ] + }, + "properties": { + "id": "meter-8203", + "maker": "Maker J", + "model": "Model 8203", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.90642727825243, + 26.37237643968344 + ] + }, + "properties": { + "id": "meter-8204", + "maker": "Maker F", + "model": "Model 8204", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.61404501980612, + 24.859404407341344 + ] + }, + "properties": { + "id": "meter-8205", + "maker": "Maker C", + "model": "Model 8205", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.50621729547802, + 20.038578135923363 + ] + }, + "properties": { + "id": "meter-8206", + "maker": "Maker A", + "model": "Model 8206", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.980947449167196, + 24.206040033217317 + ] + }, + "properties": { + "id": "meter-8207", + "maker": "Maker G", + "model": "Model 8207", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.085791561367756, + 26.31469787234119 + ] + }, + "properties": { + "id": "meter-8208", + "maker": "Maker D", + "model": "Model 8208", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.726418357580094, + 18.37034233143387 + ] + }, + "properties": { + "id": "meter-8209", + "maker": "Maker E", + "model": "Model 8209", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.61547773051959, + 20.00995924317527 + ] + }, + "properties": { + "id": "meter-8210", + "maker": "Maker C", + "model": "Model 8210", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.35019366413857, + 20.002067963529196 + ] + }, + "properties": { + "id": "meter-8211", + "maker": "Maker J", + "model": "Model 8211", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.22617634581032, + 17.647798877653063 + ] + }, + "properties": { + "id": "meter-8212", + "maker": "Maker F", + "model": "Model 8212", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.43813528861843, + 25.556131665388914 + ] + }, + "properties": { + "id": "meter-8213", + "maker": "Maker C", + "model": "Model 8213", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96853551040125, + 26.48015912959012 + ] + }, + "properties": { + "id": "meter-8214", + "maker": "Maker I", + "model": "Model 8214", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14742954292443, + 26.357534558195795 + ] + }, + "properties": { + "id": "meter-8215", + "maker": "Maker J", + "model": "Model 8215", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.360426543946986, + 29.920412924616492 + ] + }, + "properties": { + "id": "meter-8216", + "maker": "Maker B", + "model": "Model 8216", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20996657261688, + 26.27922942112374 + ] + }, + "properties": { + "id": "meter-8217", + "maker": "Maker F", + "model": "Model 8217", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.95183368427196, + 30.917301235001954 + ] + }, + "properties": { + "id": "meter-8218", + "maker": "Maker H", + "model": "Model 8218", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.37859261852076, + 19.758742019030407 + ] + }, + "properties": { + "id": "meter-8219", + "maker": "Maker G", + "model": "Model 8219", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.138335286363294, + 29.99369389317652 + ] + }, + "properties": { + "id": "meter-8220", + "maker": "Maker G", + "model": "Model 8220", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04834424198656, + 24.097223684957036 + ] + }, + "properties": { + "id": "meter-8221", + "maker": "Maker G", + "model": "Model 8221", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01257519666603, + 17.371873695805284 + ] + }, + "properties": { + "id": "meter-8222", + "maker": "Maker E", + "model": "Model 8222", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02735067964295, + 17.65131290873733 + ] + }, + "properties": { + "id": "meter-8223", + "maker": "Maker C", + "model": "Model 8223", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.04145201246573, + 26.42410340005477 + ] + }, + "properties": { + "id": "meter-8224", + "maker": "Maker D", + "model": "Model 8224", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.06799252621369, + 21.287884823909202 + ] + }, + "properties": { + "id": "meter-8225", + "maker": "Maker A", + "model": "Model 8225", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57983575996073, + 25.36761322276063 + ] + }, + "properties": { + "id": "meter-8226", + "maker": "Maker H", + "model": "Model 8226", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.18382037502661, + 24.02125246822198 + ] + }, + "properties": { + "id": "meter-8227", + "maker": "Maker J", + "model": "Model 8227", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.854988549351745, + 28.376831164852746 + ] + }, + "properties": { + "id": "meter-8228", + "maker": "Maker C", + "model": "Model 8228", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.24609418687307, + 30.029222374482227 + ] + }, + "properties": { + "id": "meter-8229", + "maker": "Maker G", + "model": "Model 8229", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.629014461195524, + 21.54117277863417 + ] + }, + "properties": { + "id": "meter-8230", + "maker": "Maker D", + "model": "Model 8230", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06073073583072, + 26.342171458088497 + ] + }, + "properties": { + "id": "meter-8231", + "maker": "Maker I", + "model": "Model 8231", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.55495219950039, + 25.359095086973493 + ] + }, + "properties": { + "id": "meter-8232", + "maker": "Maker F", + "model": "Model 8232", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.631001058666065, + 24.487868872345437 + ] + }, + "properties": { + "id": "meter-8233", + "maker": "Maker G", + "model": "Model 8233", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94032718933575, + 26.57771679640172 + ] + }, + "properties": { + "id": "meter-8234", + "maker": "Maker J", + "model": "Model 8234", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.191850905411854, + 20.02925272510451 + ] + }, + "properties": { + "id": "meter-8235", + "maker": "Maker C", + "model": "Model 8235", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.43504431380612, + 25.356911379904993 + ] + }, + "properties": { + "id": "meter-8236", + "maker": "Maker D", + "model": "Model 8236", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09387201575113, + 26.404941115721858 + ] + }, + "properties": { + "id": "meter-8237", + "maker": "Maker H", + "model": "Model 8237", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.74848330474238, + 27.520353667250514 + ] + }, + "properties": { + "id": "meter-8238", + "maker": "Maker F", + "model": "Model 8238", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.4863921875028, + 18.229083776621295 + ] + }, + "properties": { + "id": "meter-8239", + "maker": "Maker A", + "model": "Model 8239", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.24263548627083, + 24.287526164753785 + ] + }, + "properties": { + "id": "meter-8240", + "maker": "Maker E", + "model": "Model 8240", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0713924743006, + 26.231455330173567 + ] + }, + "properties": { + "id": "meter-8241", + "maker": "Maker F", + "model": "Model 8241", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.22047445897291, + 20.10240647815987 + ] + }, + "properties": { + "id": "meter-8242", + "maker": "Maker H", + "model": "Model 8242", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.36781281671684, + 24.64870013156645 + ] + }, + "properties": { + "id": "meter-8243", + "maker": "Maker H", + "model": "Model 8243", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.649186326366944, + 24.389258017264915 + ] + }, + "properties": { + "id": "meter-8244", + "maker": "Maker G", + "model": "Model 8244", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10948498869938, + 26.339088877784494 + ] + }, + "properties": { + "id": "meter-8245", + "maker": "Maker J", + "model": "Model 8245", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.895647098682055, + 21.284334570841853 + ] + }, + "properties": { + "id": "meter-8246", + "maker": "Maker A", + "model": "Model 8246", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70304904505023, + 27.272050018420444 + ] + }, + "properties": { + "id": "meter-8247", + "maker": "Maker I", + "model": "Model 8247", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.42390563405099, + 21.480162627962265 + ] + }, + "properties": { + "id": "meter-8248", + "maker": "Maker F", + "model": "Model 8248", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.949605087080236, + 26.34674100217126 + ] + }, + "properties": { + "id": "meter-8249", + "maker": "Maker F", + "model": "Model 8249", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21273574522429, + 29.941674943558258 + ] + }, + "properties": { + "id": "meter-8250", + "maker": "Maker I", + "model": "Model 8250", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.74670232786422, + 18.307316528163952 + ] + }, + "properties": { + "id": "meter-8251", + "maker": "Maker B", + "model": "Model 8251", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.70173063359391, + 18.241364209757617 + ] + }, + "properties": { + "id": "meter-8252", + "maker": "Maker D", + "model": "Model 8252", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.79686890093909, + 21.22043933718518 + ] + }, + "properties": { + "id": "meter-8253", + "maker": "Maker I", + "model": "Model 8253", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.348787809687416, + 28.440755330403345 + ] + }, + "properties": { + "id": "meter-8254", + "maker": "Maker J", + "model": "Model 8254", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.698307319098255, + 21.315593332444372 + ] + }, + "properties": { + "id": "meter-8255", + "maker": "Maker F", + "model": "Model 8255", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.3197999791963, + 29.838988007659264 + ] + }, + "properties": { + "id": "meter-8256", + "maker": "Maker E", + "model": "Model 8256", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.081063411009595, + 31.137094009842567 + ] + }, + "properties": { + "id": "meter-8257", + "maker": "Maker I", + "model": "Model 8257", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05960583888917, + 26.44579689802253 + ] + }, + "properties": { + "id": "meter-8258", + "maker": "Maker E", + "model": "Model 8258", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.031200097962625, + 30.964256948734562 + ] + }, + "properties": { + "id": "meter-8259", + "maker": "Maker I", + "model": "Model 8259", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.971210291085164, + 26.429143360690084 + ] + }, + "properties": { + "id": "meter-8260", + "maker": "Maker J", + "model": "Model 8260", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54800640797229, + 25.36352153210744 + ] + }, + "properties": { + "id": "meter-8261", + "maker": "Maker J", + "model": "Model 8261", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.77235899224336, + 27.515071724498576 + ] + }, + "properties": { + "id": "meter-8262", + "maker": "Maker D", + "model": "Model 8262", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17468602410248, + 26.32018039979398 + ] + }, + "properties": { + "id": "meter-8263", + "maker": "Maker F", + "model": "Model 8263", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.55742459887, + 28.12450436903833 + ] + }, + "properties": { + "id": "meter-8264", + "maker": "Maker C", + "model": "Model 8264", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.96114018672413, + 18.316102694618795 + ] + }, + "properties": { + "id": "meter-8265", + "maker": "Maker B", + "model": "Model 8265", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.1013970398563, + 24.055408332257528 + ] + }, + "properties": { + "id": "meter-8266", + "maker": "Maker B", + "model": "Model 8266", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.977911312321844, + 26.31613903111085 + ] + }, + "properties": { + "id": "meter-8267", + "maker": "Maker J", + "model": "Model 8267", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.080496047947605, + 24.08855858472754 + ] + }, + "properties": { + "id": "meter-8268", + "maker": "Maker D", + "model": "Model 8268", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.43517744227519, + 19.967788113212265 + ] + }, + "properties": { + "id": "meter-8269", + "maker": "Maker G", + "model": "Model 8269", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.776061885296876, + 24.821980761389337 + ] + }, + "properties": { + "id": "meter-8270", + "maker": "Maker E", + "model": "Model 8270", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.193619855107265, + 30.965769192107185 + ] + }, + "properties": { + "id": "meter-8271", + "maker": "Maker H", + "model": "Model 8271", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.63564985754967, + 18.381140419825208 + ] + }, + "properties": { + "id": "meter-8272", + "maker": "Maker D", + "model": "Model 8272", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.286461191987215, + 29.979491555846902 + ] + }, + "properties": { + "id": "meter-8273", + "maker": "Maker D", + "model": "Model 8273", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.53691691735947, + 28.396556498797707 + ] + }, + "properties": { + "id": "meter-8274", + "maker": "Maker A", + "model": "Model 8274", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.19790740200961, + 17.47431799778025 + ] + }, + "properties": { + "id": "meter-8275", + "maker": "Maker E", + "model": "Model 8275", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.45828405185743, + 25.33722962393637 + ] + }, + "properties": { + "id": "meter-8276", + "maker": "Maker J", + "model": "Model 8276", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.680717873358184, + 27.481147313369533 + ] + }, + "properties": { + "id": "meter-8277", + "maker": "Maker C", + "model": "Model 8277", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.972554420005544, + 26.438026893616257 + ] + }, + "properties": { + "id": "meter-8278", + "maker": "Maker I", + "model": "Model 8278", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94093539778451, + 26.403063901442124 + ] + }, + "properties": { + "id": "meter-8279", + "maker": "Maker H", + "model": "Model 8279", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.88857210225689, + 26.365060343136452 + ] + }, + "properties": { + "id": "meter-8280", + "maker": "Maker I", + "model": "Model 8280", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.44140393485706, + 18.274030763601807 + ] + }, + "properties": { + "id": "meter-8281", + "maker": "Maker I", + "model": "Model 8281", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.91371298646583, + 21.476061462134062 + ] + }, + "properties": { + "id": "meter-8282", + "maker": "Maker H", + "model": "Model 8282", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.781286348248194, + 18.49159800639145 + ] + }, + "properties": { + "id": "meter-8283", + "maker": "Maker C", + "model": "Model 8283", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12142602884942, + 17.553385146233275 + ] + }, + "properties": { + "id": "meter-8284", + "maker": "Maker I", + "model": "Model 8284", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.0020976823657, + 26.29155224295829 + ] + }, + "properties": { + "id": "meter-8285", + "maker": "Maker G", + "model": "Model 8285", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.24474055955452, + 24.279859832514063 + ] + }, + "properties": { + "id": "meter-8286", + "maker": "Maker H", + "model": "Model 8286", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.29234742678485, + 21.45964186907557 + ] + }, + "properties": { + "id": "meter-8287", + "maker": "Maker J", + "model": "Model 8287", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24886219855571, + 21.426509371931274 + ] + }, + "properties": { + "id": "meter-8288", + "maker": "Maker I", + "model": "Model 8288", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.714667819020924, + 25.190250517031714 + ] + }, + "properties": { + "id": "meter-8289", + "maker": "Maker A", + "model": "Model 8289", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.93157695958995, + 21.43822941958191 + ] + }, + "properties": { + "id": "meter-8290", + "maker": "Maker D", + "model": "Model 8290", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.533093737387084, + 25.380445216498355 + ] + }, + "properties": { + "id": "meter-8291", + "maker": "Maker J", + "model": "Model 8291", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.01195947801765, + 24.239942535658617 + ] + }, + "properties": { + "id": "meter-8292", + "maker": "Maker C", + "model": "Model 8292", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45798792113795, + 18.016804426372225 + ] + }, + "properties": { + "id": "meter-8293", + "maker": "Maker G", + "model": "Model 8293", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.041114191944175, + 26.36975684733472 + ] + }, + "properties": { + "id": "meter-8294", + "maker": "Maker D", + "model": "Model 8294", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.672970783894364, + 27.51888904852374 + ] + }, + "properties": { + "id": "meter-8295", + "maker": "Maker D", + "model": "Model 8295", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02062564854877, + 26.753713561109393 + ] + }, + "properties": { + "id": "meter-8296", + "maker": "Maker C", + "model": "Model 8296", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.682320302343854, + 18.30115437349698 + ] + }, + "properties": { + "id": "meter-8297", + "maker": "Maker C", + "model": "Model 8297", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01359549341429, + 26.34249495084075 + ] + }, + "properties": { + "id": "meter-8298", + "maker": "Maker A", + "model": "Model 8298", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.224516337428014, + 29.903148289408 + ] + }, + "properties": { + "id": "meter-8299", + "maker": "Maker A", + "model": "Model 8299", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19770275599196, + 26.308212308175282 + ] + }, + "properties": { + "id": "meter-8300", + "maker": "Maker E", + "model": "Model 8300", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97736995872636, + 26.302478075818893 + ] + }, + "properties": { + "id": "meter-8301", + "maker": "Maker E", + "model": "Model 8301", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.738319466860496, + 27.49320679090776 + ] + }, + "properties": { + "id": "meter-8302", + "maker": "Maker C", + "model": "Model 8302", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.39082458623201, + 21.584845380118445 + ] + }, + "properties": { + "id": "meter-8303", + "maker": "Maker B", + "model": "Model 8303", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.812873388095035, + 24.623311278651435 + ] + }, + "properties": { + "id": "meter-8304", + "maker": "Maker D", + "model": "Model 8304", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95189594330976, + 26.36668981568302 + ] + }, + "properties": { + "id": "meter-8305", + "maker": "Maker I", + "model": "Model 8305", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42612285903899, + 19.9440359233599 + ] + }, + "properties": { + "id": "meter-8306", + "maker": "Maker E", + "model": "Model 8306", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42137786672075, + 20.129474295137786 + ] + }, + "properties": { + "id": "meter-8307", + "maker": "Maker C", + "model": "Model 8307", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.980337513946175, + 26.26627040445539 + ] + }, + "properties": { + "id": "meter-8308", + "maker": "Maker G", + "model": "Model 8308", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06576435520998, + 24.098544563663832 + ] + }, + "properties": { + "id": "meter-8309", + "maker": "Maker J", + "model": "Model 8309", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50582098680969, + 18.217612806399092 + ] + }, + "properties": { + "id": "meter-8310", + "maker": "Maker B", + "model": "Model 8310", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.687343654796074, + 28.52070540966311 + ] + }, + "properties": { + "id": "meter-8311", + "maker": "Maker E", + "model": "Model 8311", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.9600378202631, + 27.532300878801358 + ] + }, + "properties": { + "id": "meter-8312", + "maker": "Maker I", + "model": "Model 8312", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.031503439533886, + 17.7522130326947 + ] + }, + "properties": { + "id": "meter-8313", + "maker": "Maker A", + "model": "Model 8313", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.642237860247754, + 27.513900920856305 + ] + }, + "properties": { + "id": "meter-8314", + "maker": "Maker H", + "model": "Model 8314", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.70530668386336, + 24.44700238655075 + ] + }, + "properties": { + "id": "meter-8315", + "maker": "Maker E", + "model": "Model 8315", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.95033701578783, + 21.20339389265898 + ] + }, + "properties": { + "id": "meter-8316", + "maker": "Maker E", + "model": "Model 8316", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.89578383743589, + 24.781121511460054 + ] + }, + "properties": { + "id": "meter-8317", + "maker": "Maker A", + "model": "Model 8317", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.288723459685365, + 21.59581105055515 + ] + }, + "properties": { + "id": "meter-8318", + "maker": "Maker H", + "model": "Model 8318", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67798067705391, + 24.63608319979043 + ] + }, + "properties": { + "id": "meter-8319", + "maker": "Maker G", + "model": "Model 8319", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.57193768653188, + 28.484672759293527 + ] + }, + "properties": { + "id": "meter-8320", + "maker": "Maker A", + "model": "Model 8320", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.111669924255395, + 26.32982474753781 + ] + }, + "properties": { + "id": "meter-8321", + "maker": "Maker C", + "model": "Model 8321", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.881954768188784, + 26.4715418410607 + ] + }, + "properties": { + "id": "meter-8322", + "maker": "Maker D", + "model": "Model 8322", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.816621884849475, + 24.699512396458992 + ] + }, + "properties": { + "id": "meter-8323", + "maker": "Maker H", + "model": "Model 8323", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.78929255895992, + 26.34299508016478 + ] + }, + "properties": { + "id": "meter-8324", + "maker": "Maker E", + "model": "Model 8324", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49217777119772, + 18.19858436875962 + ] + }, + "properties": { + "id": "meter-8325", + "maker": "Maker E", + "model": "Model 8325", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.24579226563065, + 30.04138224058028 + ] + }, + "properties": { + "id": "meter-8326", + "maker": "Maker G", + "model": "Model 8326", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.39639213408349, + 28.414749298389246 + ] + }, + "properties": { + "id": "meter-8327", + "maker": "Maker G", + "model": "Model 8327", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11064292066557, + 26.18447248633355 + ] + }, + "properties": { + "id": "meter-8328", + "maker": "Maker C", + "model": "Model 8328", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.19825269161868, + 30.98354762700351 + ] + }, + "properties": { + "id": "meter-8329", + "maker": "Maker B", + "model": "Model 8329", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.5283484165685, + 25.117451069848226 + ] + }, + "properties": { + "id": "meter-8330", + "maker": "Maker I", + "model": "Model 8330", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.925174011307774, + 26.43404875690693 + ] + }, + "properties": { + "id": "meter-8331", + "maker": "Maker G", + "model": "Model 8331", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.199250359748724, + 26.24903757203189 + ] + }, + "properties": { + "id": "meter-8332", + "maker": "Maker B", + "model": "Model 8332", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66392737187695, + 18.27322678668872 + ] + }, + "properties": { + "id": "meter-8333", + "maker": "Maker I", + "model": "Model 8333", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.233418102442336, + 24.01248804777469 + ] + }, + "properties": { + "id": "meter-8334", + "maker": "Maker A", + "model": "Model 8334", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98718443685344, + 26.428694160985113 + ] + }, + "properties": { + "id": "meter-8335", + "maker": "Maker C", + "model": "Model 8335", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.09356380090232, + 30.87909658831861 + ] + }, + "properties": { + "id": "meter-8336", + "maker": "Maker H", + "model": "Model 8336", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.29515628389286, + 23.919834324249226 + ] + }, + "properties": { + "id": "meter-8337", + "maker": "Maker C", + "model": "Model 8337", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.004526212053236, + 26.334206096694547 + ] + }, + "properties": { + "id": "meter-8338", + "maker": "Maker E", + "model": "Model 8338", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.719541788668174, + 24.721322989779477 + ] + }, + "properties": { + "id": "meter-8339", + "maker": "Maker J", + "model": "Model 8339", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1111595693012, + 17.501964936811085 + ] + }, + "properties": { + "id": "meter-8340", + "maker": "Maker H", + "model": "Model 8340", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.563039816793854, + 24.508358674865462 + ] + }, + "properties": { + "id": "meter-8341", + "maker": "Maker C", + "model": "Model 8341", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07711237596245, + 24.08446746499997 + ] + }, + "properties": { + "id": "meter-8342", + "maker": "Maker B", + "model": "Model 8342", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65121862200104, + 27.668684398732584 + ] + }, + "properties": { + "id": "meter-8343", + "maker": "Maker E", + "model": "Model 8343", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.52509241830268, + 19.768094997656267 + ] + }, + "properties": { + "id": "meter-8344", + "maker": "Maker E", + "model": "Model 8344", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.47934752987946, + 29.96931811271462 + ] + }, + "properties": { + "id": "meter-8345", + "maker": "Maker F", + "model": "Model 8345", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13123366421833, + 26.43077883769066 + ] + }, + "properties": { + "id": "meter-8346", + "maker": "Maker F", + "model": "Model 8346", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.060866276467394, + 24.1019653131141 + ] + }, + "properties": { + "id": "meter-8347", + "maker": "Maker G", + "model": "Model 8347", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.92833630218865, + 27.608701081442554 + ] + }, + "properties": { + "id": "meter-8348", + "maker": "Maker G", + "model": "Model 8348", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.280217579784164, + 29.993998319333944 + ] + }, + "properties": { + "id": "meter-8349", + "maker": "Maker G", + "model": "Model 8349", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55114284507587, + 20.245786436287645 + ] + }, + "properties": { + "id": "meter-8350", + "maker": "Maker A", + "model": "Model 8350", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.6146060094198, + 28.40664798283232 + ] + }, + "properties": { + "id": "meter-8351", + "maker": "Maker G", + "model": "Model 8351", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92336751807865, + 26.374875965814894 + ] + }, + "properties": { + "id": "meter-8352", + "maker": "Maker A", + "model": "Model 8352", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.096660516448104, + 24.05747066719377 + ] + }, + "properties": { + "id": "meter-8353", + "maker": "Maker J", + "model": "Model 8353", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.38049468173466, + 21.4902089957403 + ] + }, + "properties": { + "id": "meter-8354", + "maker": "Maker F", + "model": "Model 8354", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.097315164001614, + 26.211164477313833 + ] + }, + "properties": { + "id": "meter-8355", + "maker": "Maker C", + "model": "Model 8355", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.06199961446528, + 30.10133753485564 + ] + }, + "properties": { + "id": "meter-8356", + "maker": "Maker A", + "model": "Model 8356", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.451492340425325, + 18.217269801141263 + ] + }, + "properties": { + "id": "meter-8357", + "maker": "Maker E", + "model": "Model 8357", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.210714742104464, + 26.24778919327144 + ] + }, + "properties": { + "id": "meter-8358", + "maker": "Maker B", + "model": "Model 8358", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65031310368522, + 19.98762041398361 + ] + }, + "properties": { + "id": "meter-8359", + "maker": "Maker E", + "model": "Model 8359", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.212427736196, + 26.313267178631165 + ] + }, + "properties": { + "id": "meter-8360", + "maker": "Maker A", + "model": "Model 8360", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.727334839126854, + 18.309291128550136 + ] + }, + "properties": { + "id": "meter-8361", + "maker": "Maker J", + "model": "Model 8361", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.70708837697987, + 18.28789102928411 + ] + }, + "properties": { + "id": "meter-8362", + "maker": "Maker F", + "model": "Model 8362", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69247221841748, + 18.07206757532624 + ] + }, + "properties": { + "id": "meter-8363", + "maker": "Maker I", + "model": "Model 8363", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21734933515064, + 21.258480346787945 + ] + }, + "properties": { + "id": "meter-8364", + "maker": "Maker C", + "model": "Model 8364", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.93834079293078, + 27.607094503372593 + ] + }, + "properties": { + "id": "meter-8365", + "maker": "Maker C", + "model": "Model 8365", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13140915617179, + 17.547421876698508 + ] + }, + "properties": { + "id": "meter-8366", + "maker": "Maker D", + "model": "Model 8366", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.186290192226004, + 24.29813886293358 + ] + }, + "properties": { + "id": "meter-8367", + "maker": "Maker D", + "model": "Model 8367", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.57643601711389, + 18.226235016716696 + ] + }, + "properties": { + "id": "meter-8368", + "maker": "Maker E", + "model": "Model 8368", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.82963972050896, + 27.39586868821642 + ] + }, + "properties": { + "id": "meter-8369", + "maker": "Maker I", + "model": "Model 8369", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.66156111844713, + 24.687364236797816 + ] + }, + "properties": { + "id": "meter-8370", + "maker": "Maker C", + "model": "Model 8370", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70188397955286, + 27.392532351504645 + ] + }, + "properties": { + "id": "meter-8371", + "maker": "Maker C", + "model": "Model 8371", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.232951904698346, + 17.40066220477928 + ] + }, + "properties": { + "id": "meter-8372", + "maker": "Maker E", + "model": "Model 8372", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88632193762845, + 24.487656395105677 + ] + }, + "properties": { + "id": "meter-8373", + "maker": "Maker H", + "model": "Model 8373", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.286556379431275, + 21.527114482646247 + ] + }, + "properties": { + "id": "meter-8374", + "maker": "Maker H", + "model": "Model 8374", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.012339669194894, + 17.55210960864837 + ] + }, + "properties": { + "id": "meter-8375", + "maker": "Maker F", + "model": "Model 8375", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.924181296867886, + 26.41087298559978 + ] + }, + "properties": { + "id": "meter-8376", + "maker": "Maker A", + "model": "Model 8376", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.679296055054934, + 27.391996114270142 + ] + }, + "properties": { + "id": "meter-8377", + "maker": "Maker H", + "model": "Model 8377", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06488207354758, + 26.283274504815186 + ] + }, + "properties": { + "id": "meter-8378", + "maker": "Maker F", + "model": "Model 8378", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09982192288101, + 26.30615546466949 + ] + }, + "properties": { + "id": "meter-8379", + "maker": "Maker C", + "model": "Model 8379", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.65589688396712, + 24.599656725998468 + ] + }, + "properties": { + "id": "meter-8380", + "maker": "Maker E", + "model": "Model 8380", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.205708141319185, + 26.22642515666615 + ] + }, + "properties": { + "id": "meter-8381", + "maker": "Maker B", + "model": "Model 8381", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.587361744167154, + 25.35478288226574 + ] + }, + "properties": { + "id": "meter-8382", + "maker": "Maker C", + "model": "Model 8382", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.95834484158603, + 26.257383918624612 + ] + }, + "properties": { + "id": "meter-8383", + "maker": "Maker J", + "model": "Model 8383", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.41668671453858, + 25.343860999052122 + ] + }, + "properties": { + "id": "meter-8384", + "maker": "Maker J", + "model": "Model 8384", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.7055814557769, + 27.452019855055003 + ] + }, + "properties": { + "id": "meter-8385", + "maker": "Maker E", + "model": "Model 8385", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.75000532114385, + 21.558252014552764 + ] + }, + "properties": { + "id": "meter-8386", + "maker": "Maker J", + "model": "Model 8386", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.501048284327716, + 18.488461972117438 + ] + }, + "properties": { + "id": "meter-8387", + "maker": "Maker J", + "model": "Model 8387", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68320851601661, + 24.53212215965548 + ] + }, + "properties": { + "id": "meter-8388", + "maker": "Maker G", + "model": "Model 8388", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.86090126939468, + 27.339678738809106 + ] + }, + "properties": { + "id": "meter-8389", + "maker": "Maker C", + "model": "Model 8389", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.87472868809465, + 27.41862415679731 + ] + }, + "properties": { + "id": "meter-8390", + "maker": "Maker A", + "model": "Model 8390", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97905318274256, + 26.073293080068932 + ] + }, + "properties": { + "id": "meter-8391", + "maker": "Maker I", + "model": "Model 8391", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.797914147866564, + 26.453421518330014 + ] + }, + "properties": { + "id": "meter-8392", + "maker": "Maker F", + "model": "Model 8392", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.71474977862653, + 25.378479181215297 + ] + }, + "properties": { + "id": "meter-8393", + "maker": "Maker G", + "model": "Model 8393", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0639363219203, + 24.090552161164656 + ] + }, + "properties": { + "id": "meter-8394", + "maker": "Maker D", + "model": "Model 8394", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09319699883898, + 26.22283816446246 + ] + }, + "properties": { + "id": "meter-8395", + "maker": "Maker I", + "model": "Model 8395", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10857192405612, + 17.488880832485147 + ] + }, + "properties": { + "id": "meter-8396", + "maker": "Maker E", + "model": "Model 8396", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.5013155152706, + 21.50761670540934 + ] + }, + "properties": { + "id": "meter-8397", + "maker": "Maker A", + "model": "Model 8397", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07834717159633, + 26.40973500312833 + ] + }, + "properties": { + "id": "meter-8398", + "maker": "Maker E", + "model": "Model 8398", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.78486819946541, + 18.241425475454644 + ] + }, + "properties": { + "id": "meter-8399", + "maker": "Maker E", + "model": "Model 8399", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.304441592015685, + 21.532013857463802 + ] + }, + "properties": { + "id": "meter-8400", + "maker": "Maker I", + "model": "Model 8400", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.529327529446554, + 25.386775933754873 + ] + }, + "properties": { + "id": "meter-8401", + "maker": "Maker H", + "model": "Model 8401", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.35120858341463, + 24.396032508036942 + ] + }, + "properties": { + "id": "meter-8402", + "maker": "Maker C", + "model": "Model 8402", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93165658495764, + 26.335230922962868 + ] + }, + "properties": { + "id": "meter-8403", + "maker": "Maker G", + "model": "Model 8403", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55700662025723, + 19.965056036696367 + ] + }, + "properties": { + "id": "meter-8404", + "maker": "Maker E", + "model": "Model 8404", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.685108987726636, + 20.03833393050574 + ] + }, + "properties": { + "id": "meter-8405", + "maker": "Maker C", + "model": "Model 8405", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.56251778556501, + 28.401033332835627 + ] + }, + "properties": { + "id": "meter-8406", + "maker": "Maker J", + "model": "Model 8406", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.633976008147776, + 24.815773999381797 + ] + }, + "properties": { + "id": "meter-8407", + "maker": "Maker A", + "model": "Model 8407", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.209578941643976, + 29.969123772216154 + ] + }, + "properties": { + "id": "meter-8408", + "maker": "Maker I", + "model": "Model 8408", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.95591798386158, + 26.364396605510912 + ] + }, + "properties": { + "id": "meter-8409", + "maker": "Maker C", + "model": "Model 8409", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.607131956457785, + 28.406269681912512 + ] + }, + "properties": { + "id": "meter-8410", + "maker": "Maker A", + "model": "Model 8410", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01338028169248, + 26.50382957996139 + ] + }, + "properties": { + "id": "meter-8411", + "maker": "Maker F", + "model": "Model 8411", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02841021362046, + 17.458829153411262 + ] + }, + "properties": { + "id": "meter-8412", + "maker": "Maker A", + "model": "Model 8412", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12304978194604, + 26.29334508436823 + ] + }, + "properties": { + "id": "meter-8413", + "maker": "Maker A", + "model": "Model 8413", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.76516981505006, + 27.410049577202443 + ] + }, + "properties": { + "id": "meter-8414", + "maker": "Maker E", + "model": "Model 8414", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.890732970351955, + 21.44560225936702 + ] + }, + "properties": { + "id": "meter-8415", + "maker": "Maker C", + "model": "Model 8415", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09153297879373, + 24.066367995465903 + ] + }, + "properties": { + "id": "meter-8416", + "maker": "Maker B", + "model": "Model 8416", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.9567296547081, + 24.66557922252888 + ] + }, + "properties": { + "id": "meter-8417", + "maker": "Maker F", + "model": "Model 8417", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.375461033060176, + 30.058579506671666 + ] + }, + "properties": { + "id": "meter-8418", + "maker": "Maker D", + "model": "Model 8418", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.45346829745456, + 24.71112122526797 + ] + }, + "properties": { + "id": "meter-8419", + "maker": "Maker B", + "model": "Model 8419", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.205525877155175, + 29.995690686737742 + ] + }, + "properties": { + "id": "meter-8420", + "maker": "Maker I", + "model": "Model 8420", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.38934883294956, + 30.05623166002483 + ] + }, + "properties": { + "id": "meter-8421", + "maker": "Maker B", + "model": "Model 8421", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.66074553239052, + 24.489010265138635 + ] + }, + "properties": { + "id": "meter-8422", + "maker": "Maker I", + "model": "Model 8422", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09883971898749, + 26.251776880530315 + ] + }, + "properties": { + "id": "meter-8423", + "maker": "Maker C", + "model": "Model 8423", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.213220320801035, + 17.69597738328272 + ] + }, + "properties": { + "id": "meter-8424", + "maker": "Maker D", + "model": "Model 8424", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.25020261785944, + 31.091228362033615 + ] + }, + "properties": { + "id": "meter-8425", + "maker": "Maker F", + "model": "Model 8425", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.92490522676899, + 18.34888688992599 + ] + }, + "properties": { + "id": "meter-8426", + "maker": "Maker J", + "model": "Model 8426", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.244468476064895, + 31.071883871404495 + ] + }, + "properties": { + "id": "meter-8427", + "maker": "Maker E", + "model": "Model 8427", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77093596174576, + 24.32026271487209 + ] + }, + "properties": { + "id": "meter-8428", + "maker": "Maker I", + "model": "Model 8428", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89902225345379, + 21.324793309529614 + ] + }, + "properties": { + "id": "meter-8429", + "maker": "Maker H", + "model": "Model 8429", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12020749624985, + 26.399329140102033 + ] + }, + "properties": { + "id": "meter-8430", + "maker": "Maker B", + "model": "Model 8430", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.405736887054466, + 25.461220420566242 + ] + }, + "properties": { + "id": "meter-8431", + "maker": "Maker D", + "model": "Model 8431", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03638526125956, + 26.391727046475307 + ] + }, + "properties": { + "id": "meter-8432", + "maker": "Maker J", + "model": "Model 8432", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19830794846111, + 26.31395336851713 + ] + }, + "properties": { + "id": "meter-8433", + "maker": "Maker F", + "model": "Model 8433", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09083026149526, + 26.438413487280958 + ] + }, + "properties": { + "id": "meter-8434", + "maker": "Maker E", + "model": "Model 8434", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.11523414316318, + 24.284355951111184 + ] + }, + "properties": { + "id": "meter-8435", + "maker": "Maker B", + "model": "Model 8435", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.97786095791297, + 21.308178293785073 + ] + }, + "properties": { + "id": "meter-8436", + "maker": "Maker A", + "model": "Model 8436", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.066859567208134, + 21.511517253271112 + ] + }, + "properties": { + "id": "meter-8437", + "maker": "Maker D", + "model": "Model 8437", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.91578619543408, + 21.392195966655134 + ] + }, + "properties": { + "id": "meter-8438", + "maker": "Maker D", + "model": "Model 8438", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86646686495847, + 21.26547166683241 + ] + }, + "properties": { + "id": "meter-8439", + "maker": "Maker G", + "model": "Model 8439", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.271189466571194, + 17.521647826736217 + ] + }, + "properties": { + "id": "meter-8440", + "maker": "Maker D", + "model": "Model 8440", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.064404963878324, + 24.08879348673752 + ] + }, + "properties": { + "id": "meter-8441", + "maker": "Maker H", + "model": "Model 8441", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00832967872089, + 26.45162422517891 + ] + }, + "properties": { + "id": "meter-8442", + "maker": "Maker A", + "model": "Model 8442", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.84697382793897, + 18.285743646300197 + ] + }, + "properties": { + "id": "meter-8443", + "maker": "Maker A", + "model": "Model 8443", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.60512811725648, + 25.309314898046917 + ] + }, + "properties": { + "id": "meter-8444", + "maker": "Maker I", + "model": "Model 8444", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.63407069648371, + 20.139115971091098 + ] + }, + "properties": { + "id": "meter-8445", + "maker": "Maker D", + "model": "Model 8445", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.58091386957263, + 28.230532511904517 + ] + }, + "properties": { + "id": "meter-8446", + "maker": "Maker E", + "model": "Model 8446", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.02907999521068, + 24.113874533748476 + ] + }, + "properties": { + "id": "meter-8447", + "maker": "Maker G", + "model": "Model 8447", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14729375975636, + 17.63128680398513 + ] + }, + "properties": { + "id": "meter-8448", + "maker": "Maker G", + "model": "Model 8448", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.575414893655136, + 24.576039739839178 + ] + }, + "properties": { + "id": "meter-8449", + "maker": "Maker E", + "model": "Model 8449", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23860616424087, + 30.215407387588904 + ] + }, + "properties": { + "id": "meter-8450", + "maker": "Maker D", + "model": "Model 8450", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.883590536449944, + 21.369045572656578 + ] + }, + "properties": { + "id": "meter-8451", + "maker": "Maker E", + "model": "Model 8451", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96331673189115, + 17.71662485946012 + ] + }, + "properties": { + "id": "meter-8452", + "maker": "Maker I", + "model": "Model 8452", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.30662533456657, + 17.619520489464673 + ] + }, + "properties": { + "id": "meter-8453", + "maker": "Maker H", + "model": "Model 8453", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.833969914122, + 24.654419877231824 + ] + }, + "properties": { + "id": "meter-8454", + "maker": "Maker C", + "model": "Model 8454", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.19742474558122, + 23.986549432538773 + ] + }, + "properties": { + "id": "meter-8455", + "maker": "Maker B", + "model": "Model 8455", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99136462764833, + 26.36938598531704 + ] + }, + "properties": { + "id": "meter-8456", + "maker": "Maker D", + "model": "Model 8456", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99814322332794, + 17.538842378180718 + ] + }, + "properties": { + "id": "meter-8457", + "maker": "Maker C", + "model": "Model 8457", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.38890287505616, + 21.60887086260845 + ] + }, + "properties": { + "id": "meter-8458", + "maker": "Maker F", + "model": "Model 8458", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.345186418784635, + 21.631724191750436 + ] + }, + "properties": { + "id": "meter-8459", + "maker": "Maker F", + "model": "Model 8459", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9091744310872, + 26.614390899408168 + ] + }, + "properties": { + "id": "meter-8460", + "maker": "Maker E", + "model": "Model 8460", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.51403688571584, + 25.2892258103257 + ] + }, + "properties": { + "id": "meter-8461", + "maker": "Maker I", + "model": "Model 8461", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18885659952592, + 26.251441970999974 + ] + }, + "properties": { + "id": "meter-8462", + "maker": "Maker D", + "model": "Model 8462", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10199483311584, + 26.38185139641924 + ] + }, + "properties": { + "id": "meter-8463", + "maker": "Maker B", + "model": "Model 8463", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.79891464986707, + 24.500419922865106 + ] + }, + "properties": { + "id": "meter-8464", + "maker": "Maker F", + "model": "Model 8464", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.98658208549131, + 24.36847051445075 + ] + }, + "properties": { + "id": "meter-8465", + "maker": "Maker E", + "model": "Model 8465", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.61056626105875, + 28.399876807153195 + ] + }, + "properties": { + "id": "meter-8466", + "maker": "Maker H", + "model": "Model 8466", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25799248977875, + 21.50076278696604 + ] + }, + "properties": { + "id": "meter-8467", + "maker": "Maker J", + "model": "Model 8467", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.013444875643074, + 18.28728170626939 + ] + }, + "properties": { + "id": "meter-8468", + "maker": "Maker H", + "model": "Model 8468", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.65257867596167, + 18.450712892399334 + ] + }, + "properties": { + "id": "meter-8469", + "maker": "Maker G", + "model": "Model 8469", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.1479009175227, + 30.18042105368544 + ] + }, + "properties": { + "id": "meter-8470", + "maker": "Maker E", + "model": "Model 8470", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.38117488741134, + 29.914065153798653 + ] + }, + "properties": { + "id": "meter-8471", + "maker": "Maker I", + "model": "Model 8471", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.583626641889055, + 28.390233112728225 + ] + }, + "properties": { + "id": "meter-8472", + "maker": "Maker H", + "model": "Model 8472", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.08240279449028, + 21.53775619275362 + ] + }, + "properties": { + "id": "meter-8473", + "maker": "Maker H", + "model": "Model 8473", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.82076140611088, + 26.33251018454604 + ] + }, + "properties": { + "id": "meter-8474", + "maker": "Maker J", + "model": "Model 8474", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.93562033805227, + 24.23814019314791 + ] + }, + "properties": { + "id": "meter-8475", + "maker": "Maker I", + "model": "Model 8475", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.037256705107275, + 30.975758681431444 + ] + }, + "properties": { + "id": "meter-8476", + "maker": "Maker J", + "model": "Model 8476", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.053391568786125, + 21.612096089116193 + ] + }, + "properties": { + "id": "meter-8477", + "maker": "Maker F", + "model": "Model 8477", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47802522244876, + 19.989266754680553 + ] + }, + "properties": { + "id": "meter-8478", + "maker": "Maker D", + "model": "Model 8478", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.15707201445445, + 29.932408648631274 + ] + }, + "properties": { + "id": "meter-8479", + "maker": "Maker J", + "model": "Model 8479", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.55144571771789, + 28.39464913133679 + ] + }, + "properties": { + "id": "meter-8480", + "maker": "Maker D", + "model": "Model 8480", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81812775885369, + 21.31263569136556 + ] + }, + "properties": { + "id": "meter-8481", + "maker": "Maker J", + "model": "Model 8481", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.66110112353948, + 28.497426070191715 + ] + }, + "properties": { + "id": "meter-8482", + "maker": "Maker J", + "model": "Model 8482", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03380160519018, + 26.412228181506926 + ] + }, + "properties": { + "id": "meter-8483", + "maker": "Maker D", + "model": "Model 8483", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.766177674238435, + 21.213302825748958 + ] + }, + "properties": { + "id": "meter-8484", + "maker": "Maker C", + "model": "Model 8484", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.475329770785955, + 19.764084539798336 + ] + }, + "properties": { + "id": "meter-8485", + "maker": "Maker B", + "model": "Model 8485", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.114962967817846, + 26.3865667451374 + ] + }, + "properties": { + "id": "meter-8486", + "maker": "Maker G", + "model": "Model 8486", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12302760279253, + 26.300838154903573 + ] + }, + "properties": { + "id": "meter-8487", + "maker": "Maker D", + "model": "Model 8487", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.17555814319556, + 30.003274768155556 + ] + }, + "properties": { + "id": "meter-8488", + "maker": "Maker F", + "model": "Model 8488", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.741364241885144, + 28.62607941842509 + ] + }, + "properties": { + "id": "meter-8489", + "maker": "Maker H", + "model": "Model 8489", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.85185846646859, + 26.625592556900756 + ] + }, + "properties": { + "id": "meter-8490", + "maker": "Maker E", + "model": "Model 8490", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.852091110206416, + 21.308985889916134 + ] + }, + "properties": { + "id": "meter-8491", + "maker": "Maker H", + "model": "Model 8491", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.047707907717225, + 26.047443861270676 + ] + }, + "properties": { + "id": "meter-8492", + "maker": "Maker D", + "model": "Model 8492", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.1520158667531, + 30.02905996425182 + ] + }, + "properties": { + "id": "meter-8493", + "maker": "Maker C", + "model": "Model 8493", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01565514905417, + 26.322235888840503 + ] + }, + "properties": { + "id": "meter-8494", + "maker": "Maker H", + "model": "Model 8494", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.990768697522284, + 26.256883248945556 + ] + }, + "properties": { + "id": "meter-8495", + "maker": "Maker H", + "model": "Model 8495", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.572639552289814, + 18.303651422985148 + ] + }, + "properties": { + "id": "meter-8496", + "maker": "Maker J", + "model": "Model 8496", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.53141923013348, + 28.484926795987473 + ] + }, + "properties": { + "id": "meter-8497", + "maker": "Maker I", + "model": "Model 8497", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.37694313155068, + 25.282196802432647 + ] + }, + "properties": { + "id": "meter-8498", + "maker": "Maker F", + "model": "Model 8498", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.47129343938169, + 21.449871307341414 + ] + }, + "properties": { + "id": "meter-8499", + "maker": "Maker J", + "model": "Model 8499", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.03871096092993, + 21.4907094895988 + ] + }, + "properties": { + "id": "meter-8500", + "maker": "Maker A", + "model": "Model 8500", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.922070869460086, + 26.505023852562534 + ] + }, + "properties": { + "id": "meter-8501", + "maker": "Maker J", + "model": "Model 8501", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.177086121657965, + 17.520074971383682 + ] + }, + "properties": { + "id": "meter-8502", + "maker": "Maker A", + "model": "Model 8502", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85105032711046, + 24.467206786686603 + ] + }, + "properties": { + "id": "meter-8503", + "maker": "Maker D", + "model": "Model 8503", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.51883473908388, + 20.206740519868895 + ] + }, + "properties": { + "id": "meter-8504", + "maker": "Maker F", + "model": "Model 8504", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.4723339259505, + 25.60080512193691 + ] + }, + "properties": { + "id": "meter-8505", + "maker": "Maker F", + "model": "Model 8505", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.43409009099601, + 25.329837250634778 + ] + }, + "properties": { + "id": "meter-8506", + "maker": "Maker D", + "model": "Model 8506", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.2001872409672, + 26.335224068129385 + ] + }, + "properties": { + "id": "meter-8507", + "maker": "Maker A", + "model": "Model 8507", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.033790555521904, + 26.239942011060208 + ] + }, + "properties": { + "id": "meter-8508", + "maker": "Maker E", + "model": "Model 8508", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.66571741123946, + 25.182665739320694 + ] + }, + "properties": { + "id": "meter-8509", + "maker": "Maker D", + "model": "Model 8509", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.731873636868634, + 18.099300019570848 + ] + }, + "properties": { + "id": "meter-8510", + "maker": "Maker I", + "model": "Model 8510", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95677716424115, + 26.54368448826852 + ] + }, + "properties": { + "id": "meter-8511", + "maker": "Maker E", + "model": "Model 8511", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.779503510831404, + 18.23283117366289 + ] + }, + "properties": { + "id": "meter-8512", + "maker": "Maker G", + "model": "Model 8512", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.801431799462954, + 27.76960303937231 + ] + }, + "properties": { + "id": "meter-8513", + "maker": "Maker E", + "model": "Model 8513", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.796213153915886, + 26.12534642940087 + ] + }, + "properties": { + "id": "meter-8514", + "maker": "Maker I", + "model": "Model 8514", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50137677580621, + 28.364313520965947 + ] + }, + "properties": { + "id": "meter-8515", + "maker": "Maker G", + "model": "Model 8515", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14364149881812, + 17.54851996173461 + ] + }, + "properties": { + "id": "meter-8516", + "maker": "Maker I", + "model": "Model 8516", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.07349330357991, + 30.110196661523467 + ] + }, + "properties": { + "id": "meter-8517", + "maker": "Maker I", + "model": "Model 8517", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93428898831414, + 26.309207020643083 + ] + }, + "properties": { + "id": "meter-8518", + "maker": "Maker B", + "model": "Model 8518", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.79776610976623, + 26.465090075760003 + ] + }, + "properties": { + "id": "meter-8519", + "maker": "Maker J", + "model": "Model 8519", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.35733224673054, + 21.434495563655936 + ] + }, + "properties": { + "id": "meter-8520", + "maker": "Maker H", + "model": "Model 8520", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97412217694899, + 26.412801832333574 + ] + }, + "properties": { + "id": "meter-8521", + "maker": "Maker J", + "model": "Model 8521", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02235507837542, + 26.35481860256042 + ] + }, + "properties": { + "id": "meter-8522", + "maker": "Maker D", + "model": "Model 8522", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45910872444342, + 18.20983779937913 + ] + }, + "properties": { + "id": "meter-8523", + "maker": "Maker B", + "model": "Model 8523", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.75163315400288, + 27.313471828932553 + ] + }, + "properties": { + "id": "meter-8524", + "maker": "Maker B", + "model": "Model 8524", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.83549015199541, + 24.788415663340032 + ] + }, + "properties": { + "id": "meter-8525", + "maker": "Maker E", + "model": "Model 8525", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.02614567347822, + 24.24823169135643 + ] + }, + "properties": { + "id": "meter-8526", + "maker": "Maker G", + "model": "Model 8526", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18401672113306, + 26.223704840620286 + ] + }, + "properties": { + "id": "meter-8527", + "maker": "Maker B", + "model": "Model 8527", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01147855624658, + 26.170520670630456 + ] + }, + "properties": { + "id": "meter-8528", + "maker": "Maker J", + "model": "Model 8528", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.38582526458509, + 24.373042343208308 + ] + }, + "properties": { + "id": "meter-8529", + "maker": "Maker J", + "model": "Model 8529", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99530392949139, + 26.30746315005933 + ] + }, + "properties": { + "id": "meter-8530", + "maker": "Maker A", + "model": "Model 8530", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21348126338429, + 30.06086427323056 + ] + }, + "properties": { + "id": "meter-8531", + "maker": "Maker D", + "model": "Model 8531", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01613064279519, + 26.456113197713478 + ] + }, + "properties": { + "id": "meter-8532", + "maker": "Maker B", + "model": "Model 8532", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.0511095292722, + 17.736486047525663 + ] + }, + "properties": { + "id": "meter-8533", + "maker": "Maker B", + "model": "Model 8533", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.677836543043696, + 24.716026913398384 + ] + }, + "properties": { + "id": "meter-8534", + "maker": "Maker H", + "model": "Model 8534", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88021564684965, + 21.41532453458128 + ] + }, + "properties": { + "id": "meter-8535", + "maker": "Maker H", + "model": "Model 8535", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.35467879576699, + 29.891852206390872 + ] + }, + "properties": { + "id": "meter-8536", + "maker": "Maker H", + "model": "Model 8536", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.65130069495733, + 18.31308057190004 + ] + }, + "properties": { + "id": "meter-8537", + "maker": "Maker E", + "model": "Model 8537", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.41215257602443, + 20.083924336584747 + ] + }, + "properties": { + "id": "meter-8538", + "maker": "Maker D", + "model": "Model 8538", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.191554128958096, + 26.270853753720917 + ] + }, + "properties": { + "id": "meter-8539", + "maker": "Maker B", + "model": "Model 8539", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.08412473304897, + 24.17974487469885 + ] + }, + "properties": { + "id": "meter-8540", + "maker": "Maker D", + "model": "Model 8540", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.209276374022664, + 26.28085115880285 + ] + }, + "properties": { + "id": "meter-8541", + "maker": "Maker H", + "model": "Model 8541", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47202636733642, + 20.017065012339096 + ] + }, + "properties": { + "id": "meter-8542", + "maker": "Maker G", + "model": "Model 8542", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.32706450356085, + 20.004140085918714 + ] + }, + "properties": { + "id": "meter-8543", + "maker": "Maker H", + "model": "Model 8543", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09866185369997, + 24.186422997931754 + ] + }, + "properties": { + "id": "meter-8544", + "maker": "Maker C", + "model": "Model 8544", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.945977004304716, + 26.33763956975464 + ] + }, + "properties": { + "id": "meter-8545", + "maker": "Maker H", + "model": "Model 8545", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.64440240202139, + 24.440623265312507 + ] + }, + "properties": { + "id": "meter-8546", + "maker": "Maker F", + "model": "Model 8546", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.838305346669735, + 26.22228076748404 + ] + }, + "properties": { + "id": "meter-8547", + "maker": "Maker D", + "model": "Model 8547", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.065293542568824, + 31.211833005552045 + ] + }, + "properties": { + "id": "meter-8548", + "maker": "Maker B", + "model": "Model 8548", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.180577881220806, + 21.281604047536295 + ] + }, + "properties": { + "id": "meter-8549", + "maker": "Maker H", + "model": "Model 8549", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.430509986226085, + 20.087609800234237 + ] + }, + "properties": { + "id": "meter-8550", + "maker": "Maker I", + "model": "Model 8550", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.922677562990025, + 26.358282490004253 + ] + }, + "properties": { + "id": "meter-8551", + "maker": "Maker B", + "model": "Model 8551", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50749904096858, + 28.316231687730003 + ] + }, + "properties": { + "id": "meter-8552", + "maker": "Maker J", + "model": "Model 8552", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.607296782051264, + 18.01319033718807 + ] + }, + "properties": { + "id": "meter-8553", + "maker": "Maker E", + "model": "Model 8553", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.48503712440454, + 21.57442629303557 + ] + }, + "properties": { + "id": "meter-8554", + "maker": "Maker A", + "model": "Model 8554", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.75167373756709, + 28.62680528701113 + ] + }, + "properties": { + "id": "meter-8555", + "maker": "Maker B", + "model": "Model 8555", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.790047448903124, + 25.49407674665607 + ] + }, + "properties": { + "id": "meter-8556", + "maker": "Maker F", + "model": "Model 8556", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20962930344998, + 26.30259866543518 + ] + }, + "properties": { + "id": "meter-8557", + "maker": "Maker G", + "model": "Model 8557", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65535905873708, + 24.609231016445886 + ] + }, + "properties": { + "id": "meter-8558", + "maker": "Maker B", + "model": "Model 8558", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86038278369688, + 24.41879718799858 + ] + }, + "properties": { + "id": "meter-8559", + "maker": "Maker C", + "model": "Model 8559", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97869677145216, + 26.41926681958187 + ] + }, + "properties": { + "id": "meter-8560", + "maker": "Maker C", + "model": "Model 8560", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.15716826017039, + 21.306679611115623 + ] + }, + "properties": { + "id": "meter-8561", + "maker": "Maker C", + "model": "Model 8561", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.99455832407998, + 21.492185834043138 + ] + }, + "properties": { + "id": "meter-8562", + "maker": "Maker C", + "model": "Model 8562", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.70074772417747, + 24.49678715366882 + ] + }, + "properties": { + "id": "meter-8563", + "maker": "Maker B", + "model": "Model 8563", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.608889039392984, + 18.53261272887884 + ] + }, + "properties": { + "id": "meter-8564", + "maker": "Maker D", + "model": "Model 8564", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.27711773162372, + 17.416296310712173 + ] + }, + "properties": { + "id": "meter-8565", + "maker": "Maker F", + "model": "Model 8565", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.451799194658435, + 18.250735350413386 + ] + }, + "properties": { + "id": "meter-8566", + "maker": "Maker I", + "model": "Model 8566", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.26820463672799, + 24.236680029323054 + ] + }, + "properties": { + "id": "meter-8567", + "maker": "Maker H", + "model": "Model 8567", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12264128605918, + 26.165465032003976 + ] + }, + "properties": { + "id": "meter-8568", + "maker": "Maker G", + "model": "Model 8568", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.83008296069718, + 18.055554282337578 + ] + }, + "properties": { + "id": "meter-8569", + "maker": "Maker H", + "model": "Model 8569", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.77611292126817, + 27.496913895054526 + ] + }, + "properties": { + "id": "meter-8570", + "maker": "Maker D", + "model": "Model 8570", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.68396420186439, + 27.4990610559584 + ] + }, + "properties": { + "id": "meter-8571", + "maker": "Maker G", + "model": "Model 8571", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59551624841451, + 25.225629044776415 + ] + }, + "properties": { + "id": "meter-8572", + "maker": "Maker I", + "model": "Model 8572", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.95452326109133, + 27.474164509215935 + ] + }, + "properties": { + "id": "meter-8573", + "maker": "Maker I", + "model": "Model 8573", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1654307874745, + 17.6559049553349 + ] + }, + "properties": { + "id": "meter-8574", + "maker": "Maker F", + "model": "Model 8574", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92784046950785, + 26.21036240200087 + ] + }, + "properties": { + "id": "meter-8575", + "maker": "Maker E", + "model": "Model 8575", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61383346059085, + 24.54621410490475 + ] + }, + "properties": { + "id": "meter-8576", + "maker": "Maker F", + "model": "Model 8576", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17681877828396, + 17.68483869428661 + ] + }, + "properties": { + "id": "meter-8577", + "maker": "Maker E", + "model": "Model 8577", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21467002559026, + 29.97892747477965 + ] + }, + "properties": { + "id": "meter-8578", + "maker": "Maker E", + "model": "Model 8578", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68080277486706, + 18.349922239214308 + ] + }, + "properties": { + "id": "meter-8579", + "maker": "Maker F", + "model": "Model 8579", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.089761347388404, + 26.394570150901366 + ] + }, + "properties": { + "id": "meter-8580", + "maker": "Maker E", + "model": "Model 8580", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46732734071947, + 19.741516501978193 + ] + }, + "properties": { + "id": "meter-8581", + "maker": "Maker C", + "model": "Model 8581", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54686360406767, + 25.362782459244144 + ] + }, + "properties": { + "id": "meter-8582", + "maker": "Maker A", + "model": "Model 8582", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.062715120091624, + 31.01666495600372 + ] + }, + "properties": { + "id": "meter-8583", + "maker": "Maker C", + "model": "Model 8583", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.974426699691804, + 21.305125310537807 + ] + }, + "properties": { + "id": "meter-8584", + "maker": "Maker D", + "model": "Model 8584", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91670546722654, + 26.345336338061543 + ] + }, + "properties": { + "id": "meter-8585", + "maker": "Maker H", + "model": "Model 8585", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.874885853968685, + 24.394868867628766 + ] + }, + "properties": { + "id": "meter-8586", + "maker": "Maker H", + "model": "Model 8586", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.939845550689114, + 26.50546546215445 + ] + }, + "properties": { + "id": "meter-8587", + "maker": "Maker E", + "model": "Model 8587", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.98915002266044, + 31.039704066036524 + ] + }, + "properties": { + "id": "meter-8588", + "maker": "Maker D", + "model": "Model 8588", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0147649438735, + 26.491285181824793 + ] + }, + "properties": { + "id": "meter-8589", + "maker": "Maker D", + "model": "Model 8589", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.709612209314095, + 25.155123867135604 + ] + }, + "properties": { + "id": "meter-8590", + "maker": "Maker D", + "model": "Model 8590", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.19190842980874, + 26.11904103273107 + ] + }, + "properties": { + "id": "meter-8591", + "maker": "Maker D", + "model": "Model 8591", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.86157678520697, + 31.16707576622061 + ] + }, + "properties": { + "id": "meter-8592", + "maker": "Maker J", + "model": "Model 8592", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.582956255526156, + 24.54377590576222 + ] + }, + "properties": { + "id": "meter-8593", + "maker": "Maker I", + "model": "Model 8593", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.32113174087254, + 30.000625799464693 + ] + }, + "properties": { + "id": "meter-8594", + "maker": "Maker H", + "model": "Model 8594", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.90988471993779, + 21.211699406936503 + ] + }, + "properties": { + "id": "meter-8595", + "maker": "Maker A", + "model": "Model 8595", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.76349619965101, + 24.66962459728487 + ] + }, + "properties": { + "id": "meter-8596", + "maker": "Maker G", + "model": "Model 8596", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54493965814511, + 25.290978877812584 + ] + }, + "properties": { + "id": "meter-8597", + "maker": "Maker F", + "model": "Model 8597", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05221497482089, + 26.319108989999787 + ] + }, + "properties": { + "id": "meter-8598", + "maker": "Maker F", + "model": "Model 8598", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.335871771108586, + 18.069709495137733 + ] + }, + "properties": { + "id": "meter-8599", + "maker": "Maker H", + "model": "Model 8599", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08328485987696, + 26.476183439665142 + ] + }, + "properties": { + "id": "meter-8600", + "maker": "Maker G", + "model": "Model 8600", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.66724482321455, + 28.69055725029433 + ] + }, + "properties": { + "id": "meter-8601", + "maker": "Maker I", + "model": "Model 8601", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08514798403298, + 17.556330780359353 + ] + }, + "properties": { + "id": "meter-8602", + "maker": "Maker J", + "model": "Model 8602", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.50618470693663, + 20.021930505383104 + ] + }, + "properties": { + "id": "meter-8603", + "maker": "Maker D", + "model": "Model 8603", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.48453359413676, + 18.262185937966407 + ] + }, + "properties": { + "id": "meter-8604", + "maker": "Maker C", + "model": "Model 8604", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.668069998149775, + 27.302785138670824 + ] + }, + "properties": { + "id": "meter-8605", + "maker": "Maker B", + "model": "Model 8605", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.96793155505916, + 24.12512470575425 + ] + }, + "properties": { + "id": "meter-8606", + "maker": "Maker H", + "model": "Model 8606", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.80153994960327, + 27.500974187928666 + ] + }, + "properties": { + "id": "meter-8607", + "maker": "Maker E", + "model": "Model 8607", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.22234255321523, + 29.888220728469904 + ] + }, + "properties": { + "id": "meter-8608", + "maker": "Maker G", + "model": "Model 8608", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.37442580472805, + 21.379538209342723 + ] + }, + "properties": { + "id": "meter-8609", + "maker": "Maker G", + "model": "Model 8609", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.90307550565769, + 27.506930140880918 + ] + }, + "properties": { + "id": "meter-8610", + "maker": "Maker I", + "model": "Model 8610", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08196637530846, + 17.498499049056043 + ] + }, + "properties": { + "id": "meter-8611", + "maker": "Maker H", + "model": "Model 8611", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.499400309852085, + 29.981360757331476 + ] + }, + "properties": { + "id": "meter-8612", + "maker": "Maker H", + "model": "Model 8612", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.82379959995294, + 25.39575469053233 + ] + }, + "properties": { + "id": "meter-8613", + "maker": "Maker D", + "model": "Model 8613", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18704048703729, + 26.235489249959386 + ] + }, + "properties": { + "id": "meter-8614", + "maker": "Maker H", + "model": "Model 8614", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77787501570393, + 24.747877917265825 + ] + }, + "properties": { + "id": "meter-8615", + "maker": "Maker J", + "model": "Model 8615", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.277226860799054, + 18.194673291114057 + ] + }, + "properties": { + "id": "meter-8616", + "maker": "Maker G", + "model": "Model 8616", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.542370100530505, + 28.29101134471889 + ] + }, + "properties": { + "id": "meter-8617", + "maker": "Maker J", + "model": "Model 8617", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.610664647537305, + 18.486153020260144 + ] + }, + "properties": { + "id": "meter-8618", + "maker": "Maker F", + "model": "Model 8618", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.35604966107563, + 21.39735199611226 + ] + }, + "properties": { + "id": "meter-8619", + "maker": "Maker G", + "model": "Model 8619", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.478281673358126, + 18.150098111071763 + ] + }, + "properties": { + "id": "meter-8620", + "maker": "Maker E", + "model": "Model 8620", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.7372822560274, + 28.569585440879866 + ] + }, + "properties": { + "id": "meter-8621", + "maker": "Maker G", + "model": "Model 8621", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12544657131267, + 17.496779927803193 + ] + }, + "properties": { + "id": "meter-8622", + "maker": "Maker I", + "model": "Model 8622", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15403097775381, + 26.167350306962064 + ] + }, + "properties": { + "id": "meter-8623", + "maker": "Maker G", + "model": "Model 8623", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.83448514210079, + 26.27668878299447 + ] + }, + "properties": { + "id": "meter-8624", + "maker": "Maker E", + "model": "Model 8624", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62557595429246, + 27.721435477389022 + ] + }, + "properties": { + "id": "meter-8625", + "maker": "Maker J", + "model": "Model 8625", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.57458832318582, + 18.153581711599244 + ] + }, + "properties": { + "id": "meter-8626", + "maker": "Maker I", + "model": "Model 8626", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.70309815370885, + 28.333129315643077 + ] + }, + "properties": { + "id": "meter-8627", + "maker": "Maker C", + "model": "Model 8627", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.615432367876615, + 20.076449244465337 + ] + }, + "properties": { + "id": "meter-8628", + "maker": "Maker C", + "model": "Model 8628", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63418639388684, + 24.594141632012587 + ] + }, + "properties": { + "id": "meter-8629", + "maker": "Maker C", + "model": "Model 8629", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.40269394608501, + 21.57073061604823 + ] + }, + "properties": { + "id": "meter-8630", + "maker": "Maker I", + "model": "Model 8630", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.677948682066805, + 25.43265097775106 + ] + }, + "properties": { + "id": "meter-8631", + "maker": "Maker A", + "model": "Model 8631", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.9050145974372, + 24.61981594290601 + ] + }, + "properties": { + "id": "meter-8632", + "maker": "Maker F", + "model": "Model 8632", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.2665423265523, + 17.545669824970552 + ] + }, + "properties": { + "id": "meter-8633", + "maker": "Maker F", + "model": "Model 8633", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.11217863213491, + 24.371214684340966 + ] + }, + "properties": { + "id": "meter-8634", + "maker": "Maker J", + "model": "Model 8634", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.17739154808665, + 31.190368671331715 + ] + }, + "properties": { + "id": "meter-8635", + "maker": "Maker A", + "model": "Model 8635", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.63500392595553, + 28.35606009425884 + ] + }, + "properties": { + "id": "meter-8636", + "maker": "Maker A", + "model": "Model 8636", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06511646125521, + 24.087431275334218 + ] + }, + "properties": { + "id": "meter-8637", + "maker": "Maker G", + "model": "Model 8637", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.756848989090166, + 18.31608811895888 + ] + }, + "properties": { + "id": "meter-8638", + "maker": "Maker I", + "model": "Model 8638", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.99897731637676, + 18.189769872810626 + ] + }, + "properties": { + "id": "meter-8639", + "maker": "Maker G", + "model": "Model 8639", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84395395401384, + 21.395298701187123 + ] + }, + "properties": { + "id": "meter-8640", + "maker": "Maker F", + "model": "Model 8640", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88292975578232, + 21.265987973812408 + ] + }, + "properties": { + "id": "meter-8641", + "maker": "Maker F", + "model": "Model 8641", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14831219855203, + 26.109907809321314 + ] + }, + "properties": { + "id": "meter-8642", + "maker": "Maker I", + "model": "Model 8642", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86702188437092, + 21.610116463775224 + ] + }, + "properties": { + "id": "meter-8643", + "maker": "Maker E", + "model": "Model 8643", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00908198322407, + 26.261764423886042 + ] + }, + "properties": { + "id": "meter-8644", + "maker": "Maker A", + "model": "Model 8644", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.15059578342885, + 31.11870248147286 + ] + }, + "properties": { + "id": "meter-8645", + "maker": "Maker E", + "model": "Model 8645", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.659121414151926, + 18.486231507106677 + ] + }, + "properties": { + "id": "meter-8646", + "maker": "Maker D", + "model": "Model 8646", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.142315641937365, + 26.394555137790288 + ] + }, + "properties": { + "id": "meter-8647", + "maker": "Maker D", + "model": "Model 8647", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.7975852675939, + 26.482652594217946 + ] + }, + "properties": { + "id": "meter-8648", + "maker": "Maker B", + "model": "Model 8648", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.095056757479455, + 26.32675768710395 + ] + }, + "properties": { + "id": "meter-8649", + "maker": "Maker F", + "model": "Model 8649", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.567831582455284, + 28.26157737185693 + ] + }, + "properties": { + "id": "meter-8650", + "maker": "Maker D", + "model": "Model 8650", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.138507153486216, + 21.47768991000517 + ] + }, + "properties": { + "id": "meter-8651", + "maker": "Maker J", + "model": "Model 8651", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.69841192920688, + 24.70932655076601 + ] + }, + "properties": { + "id": "meter-8652", + "maker": "Maker B", + "model": "Model 8652", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12873631687919, + 26.284941760072375 + ] + }, + "properties": { + "id": "meter-8653", + "maker": "Maker I", + "model": "Model 8653", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09834021473874, + 24.130160634782772 + ] + }, + "properties": { + "id": "meter-8654", + "maker": "Maker B", + "model": "Model 8654", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49667040647989, + 18.39595564117397 + ] + }, + "properties": { + "id": "meter-8655", + "maker": "Maker A", + "model": "Model 8655", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96166075860766, + 26.776160018615393 + ] + }, + "properties": { + "id": "meter-8656", + "maker": "Maker F", + "model": "Model 8656", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.178612544381, + 26.252179375032323 + ] + }, + "properties": { + "id": "meter-8657", + "maker": "Maker I", + "model": "Model 8657", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01865541921438, + 26.5113087445679 + ] + }, + "properties": { + "id": "meter-8658", + "maker": "Maker G", + "model": "Model 8658", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.160932198907666, + 29.963147250249378 + ] + }, + "properties": { + "id": "meter-8659", + "maker": "Maker H", + "model": "Model 8659", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02093846123396, + 17.614003909273663 + ] + }, + "properties": { + "id": "meter-8660", + "maker": "Maker G", + "model": "Model 8660", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.452910122994126, + 18.277389300803183 + ] + }, + "properties": { + "id": "meter-8661", + "maker": "Maker I", + "model": "Model 8661", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.8197627460009, + 18.405994921415875 + ] + }, + "properties": { + "id": "meter-8662", + "maker": "Maker G", + "model": "Model 8662", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08226835916479, + 26.27207626762699 + ] + }, + "properties": { + "id": "meter-8663", + "maker": "Maker B", + "model": "Model 8663", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15022618839783, + 26.409051580799392 + ] + }, + "properties": { + "id": "meter-8664", + "maker": "Maker J", + "model": "Model 8664", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.8235602337719, + 26.561024038361314 + ] + }, + "properties": { + "id": "meter-8665", + "maker": "Maker A", + "model": "Model 8665", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.15102581358975, + 17.4798054102247 + ] + }, + "properties": { + "id": "meter-8666", + "maker": "Maker C", + "model": "Model 8666", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.85222678889065, + 18.072533183200242 + ] + }, + "properties": { + "id": "meter-8667", + "maker": "Maker J", + "model": "Model 8667", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.8709897323108, + 26.51093490066535 + ] + }, + "properties": { + "id": "meter-8668", + "maker": "Maker E", + "model": "Model 8668", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50628712204846, + 18.34735230798992 + ] + }, + "properties": { + "id": "meter-8669", + "maker": "Maker F", + "model": "Model 8669", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.795182763024755, + 24.71323619676909 + ] + }, + "properties": { + "id": "meter-8670", + "maker": "Maker J", + "model": "Model 8670", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.71901543382257, + 25.417221596523664 + ] + }, + "properties": { + "id": "meter-8671", + "maker": "Maker F", + "model": "Model 8671", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93948605933933, + 26.311813413104478 + ] + }, + "properties": { + "id": "meter-8672", + "maker": "Maker I", + "model": "Model 8672", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48924624959237, + 27.601223703234844 + ] + }, + "properties": { + "id": "meter-8673", + "maker": "Maker I", + "model": "Model 8673", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.717196678006495, + 28.63828434437289 + ] + }, + "properties": { + "id": "meter-8674", + "maker": "Maker F", + "model": "Model 8674", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99956415366445, + 26.224523899105662 + ] + }, + "properties": { + "id": "meter-8675", + "maker": "Maker A", + "model": "Model 8675", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59973777318727, + 25.254429322398273 + ] + }, + "properties": { + "id": "meter-8676", + "maker": "Maker J", + "model": "Model 8676", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.82998283898455, + 21.307319801150676 + ] + }, + "properties": { + "id": "meter-8677", + "maker": "Maker E", + "model": "Model 8677", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.22977621057972, + 30.02543540046505 + ] + }, + "properties": { + "id": "meter-8678", + "maker": "Maker H", + "model": "Model 8678", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23881906317431, + 21.48663214774602 + ] + }, + "properties": { + "id": "meter-8679", + "maker": "Maker D", + "model": "Model 8679", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.28621694337554, + 21.451050325328055 + ] + }, + "properties": { + "id": "meter-8680", + "maker": "Maker B", + "model": "Model 8680", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.69162914449257, + 24.738292565970916 + ] + }, + "properties": { + "id": "meter-8681", + "maker": "Maker H", + "model": "Model 8681", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.2349398017708, + 17.40435244169954 + ] + }, + "properties": { + "id": "meter-8682", + "maker": "Maker H", + "model": "Model 8682", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.85675571189864, + 17.54514391830246 + ] + }, + "properties": { + "id": "meter-8683", + "maker": "Maker C", + "model": "Model 8683", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.466581553131135, + 20.015541583862625 + ] + }, + "properties": { + "id": "meter-8684", + "maker": "Maker G", + "model": "Model 8684", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.698028989315944, + 27.49675609797499 + ] + }, + "properties": { + "id": "meter-8685", + "maker": "Maker J", + "model": "Model 8685", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.708414552783196, + 28.283133208990417 + ] + }, + "properties": { + "id": "meter-8686", + "maker": "Maker F", + "model": "Model 8686", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.313594451648406, + 17.426456461904444 + ] + }, + "properties": { + "id": "meter-8687", + "maker": "Maker B", + "model": "Model 8687", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.888514985754206, + 17.553200938054314 + ] + }, + "properties": { + "id": "meter-8688", + "maker": "Maker J", + "model": "Model 8688", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20005618843045, + 29.97668065283648 + ] + }, + "properties": { + "id": "meter-8689", + "maker": "Maker I", + "model": "Model 8689", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.14452850663583, + 24.153467453217225 + ] + }, + "properties": { + "id": "meter-8690", + "maker": "Maker B", + "model": "Model 8690", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.95341760476243, + 18.125222902469748 + ] + }, + "properties": { + "id": "meter-8691", + "maker": "Maker G", + "model": "Model 8691", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.48639805918234, + 25.411553400851954 + ] + }, + "properties": { + "id": "meter-8692", + "maker": "Maker B", + "model": "Model 8692", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.40257013470659, + 21.48743408162355 + ] + }, + "properties": { + "id": "meter-8693", + "maker": "Maker G", + "model": "Model 8693", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.80581602140911, + 26.26003860957239 + ] + }, + "properties": { + "id": "meter-8694", + "maker": "Maker J", + "model": "Model 8694", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.50438559819261, + 20.075547585232677 + ] + }, + "properties": { + "id": "meter-8695", + "maker": "Maker A", + "model": "Model 8695", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.6199342606888, + 24.565511062979926 + ] + }, + "properties": { + "id": "meter-8696", + "maker": "Maker E", + "model": "Model 8696", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.19766051446785, + 24.353834000823607 + ] + }, + "properties": { + "id": "meter-8697", + "maker": "Maker J", + "model": "Model 8697", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84524083074522, + 21.613911972014556 + ] + }, + "properties": { + "id": "meter-8698", + "maker": "Maker D", + "model": "Model 8698", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.233704760949784, + 30.030597398446112 + ] + }, + "properties": { + "id": "meter-8699", + "maker": "Maker F", + "model": "Model 8699", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.22326066040279, + 29.73777903906062 + ] + }, + "properties": { + "id": "meter-8700", + "maker": "Maker B", + "model": "Model 8700", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.755337948104504, + 24.732156730732953 + ] + }, + "properties": { + "id": "meter-8701", + "maker": "Maker D", + "model": "Model 8701", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46966795117379, + 20.17471403398937 + ] + }, + "properties": { + "id": "meter-8702", + "maker": "Maker H", + "model": "Model 8702", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14246653599714, + 26.330773182319444 + ] + }, + "properties": { + "id": "meter-8703", + "maker": "Maker J", + "model": "Model 8703", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.559395963294335, + 25.549549089412043 + ] + }, + "properties": { + "id": "meter-8704", + "maker": "Maker C", + "model": "Model 8704", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19905545294619, + 26.280240658960142 + ] + }, + "properties": { + "id": "meter-8705", + "maker": "Maker E", + "model": "Model 8705", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.021861045075475, + 18.247148235279 + ] + }, + "properties": { + "id": "meter-8706", + "maker": "Maker J", + "model": "Model 8706", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.15049934665496, + 17.53261738496852 + ] + }, + "properties": { + "id": "meter-8707", + "maker": "Maker E", + "model": "Model 8707", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.694394058398984, + 27.534066497554047 + ] + }, + "properties": { + "id": "meter-8708", + "maker": "Maker A", + "model": "Model 8708", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.714504719285365, + 24.50341140916056 + ] + }, + "properties": { + "id": "meter-8709", + "maker": "Maker J", + "model": "Model 8709", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85422427358107, + 21.642321373044485 + ] + }, + "properties": { + "id": "meter-8710", + "maker": "Maker F", + "model": "Model 8710", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65616600924422, + 27.43423078713211 + ] + }, + "properties": { + "id": "meter-8711", + "maker": "Maker A", + "model": "Model 8711", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20540642753945, + 29.889423829689655 + ] + }, + "properties": { + "id": "meter-8712", + "maker": "Maker H", + "model": "Model 8712", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.967708865382654, + 26.59210935296045 + ] + }, + "properties": { + "id": "meter-8713", + "maker": "Maker H", + "model": "Model 8713", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.5858371147707, + 25.35062040345742 + ] + }, + "properties": { + "id": "meter-8714", + "maker": "Maker E", + "model": "Model 8714", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.74994060009835, + 26.358497919072523 + ] + }, + "properties": { + "id": "meter-8715", + "maker": "Maker J", + "model": "Model 8715", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1274424346303, + 17.479420712545476 + ] + }, + "properties": { + "id": "meter-8716", + "maker": "Maker G", + "model": "Model 8716", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.915646768702786, + 26.487834845422412 + ] + }, + "properties": { + "id": "meter-8717", + "maker": "Maker F", + "model": "Model 8717", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97241395210511, + 26.704005525420033 + ] + }, + "properties": { + "id": "meter-8718", + "maker": "Maker J", + "model": "Model 8718", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.496559832969076, + 18.15225359136252 + ] + }, + "properties": { + "id": "meter-8719", + "maker": "Maker F", + "model": "Model 8719", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89124387021689, + 21.380916358593865 + ] + }, + "properties": { + "id": "meter-8720", + "maker": "Maker F", + "model": "Model 8720", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11389932761403, + 26.22727141501665 + ] + }, + "properties": { + "id": "meter-8721", + "maker": "Maker D", + "model": "Model 8721", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71545226659744, + 18.390431962270743 + ] + }, + "properties": { + "id": "meter-8722", + "maker": "Maker C", + "model": "Model 8722", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.603165037003336, + 27.64671656356465 + ] + }, + "properties": { + "id": "meter-8723", + "maker": "Maker H", + "model": "Model 8723", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.701716943513645, + 19.98801286164256 + ] + }, + "properties": { + "id": "meter-8724", + "maker": "Maker G", + "model": "Model 8724", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.463218335303836, + 25.42304704416484 + ] + }, + "properties": { + "id": "meter-8725", + "maker": "Maker G", + "model": "Model 8725", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.748335586426336, + 24.74821282089888 + ] + }, + "properties": { + "id": "meter-8726", + "maker": "Maker J", + "model": "Model 8726", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.25600082548789, + 30.794659503025184 + ] + }, + "properties": { + "id": "meter-8727", + "maker": "Maker I", + "model": "Model 8727", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.207564406234205, + 26.280574095557096 + ] + }, + "properties": { + "id": "meter-8728", + "maker": "Maker D", + "model": "Model 8728", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.15700430093348, + 30.25661041254285 + ] + }, + "properties": { + "id": "meter-8729", + "maker": "Maker F", + "model": "Model 8729", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.22919819137205, + 24.17716708360262 + ] + }, + "properties": { + "id": "meter-8730", + "maker": "Maker F", + "model": "Model 8730", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.93427749209236, + 24.722265217180023 + ] + }, + "properties": { + "id": "meter-8731", + "maker": "Maker C", + "model": "Model 8731", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.72101068871014, + 28.277285660092627 + ] + }, + "properties": { + "id": "meter-8732", + "maker": "Maker C", + "model": "Model 8732", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.144866443748874, + 17.49295247078851 + ] + }, + "properties": { + "id": "meter-8733", + "maker": "Maker G", + "model": "Model 8733", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.049540397994576, + 24.322751210178485 + ] + }, + "properties": { + "id": "meter-8734", + "maker": "Maker A", + "model": "Model 8734", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.44773872875164, + 19.96486445965836 + ] + }, + "properties": { + "id": "meter-8735", + "maker": "Maker J", + "model": "Model 8735", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91720765933134, + 26.62957806072313 + ] + }, + "properties": { + "id": "meter-8736", + "maker": "Maker B", + "model": "Model 8736", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25438552472995, + 21.461326309855934 + ] + }, + "properties": { + "id": "meter-8737", + "maker": "Maker H", + "model": "Model 8737", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97498205743532, + 26.5423252599778 + ] + }, + "properties": { + "id": "meter-8738", + "maker": "Maker D", + "model": "Model 8738", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.43605105668814, + 18.178770401773402 + ] + }, + "properties": { + "id": "meter-8739", + "maker": "Maker C", + "model": "Model 8739", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.043093597877075, + 24.190493201752805 + ] + }, + "properties": { + "id": "meter-8740", + "maker": "Maker H", + "model": "Model 8740", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72871759967016, + 18.309758946584285 + ] + }, + "properties": { + "id": "meter-8741", + "maker": "Maker F", + "model": "Model 8741", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19288601210556, + 26.25226815608551 + ] + }, + "properties": { + "id": "meter-8742", + "maker": "Maker I", + "model": "Model 8742", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.013279932391704, + 26.479210213396048 + ] + }, + "properties": { + "id": "meter-8743", + "maker": "Maker D", + "model": "Model 8743", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.64088205278593, + 25.464333815425796 + ] + }, + "properties": { + "id": "meter-8744", + "maker": "Maker C", + "model": "Model 8744", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.779560169032266, + 28.178743109912993 + ] + }, + "properties": { + "id": "meter-8745", + "maker": "Maker E", + "model": "Model 8745", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.318429691387934, + 21.709642975257 + ] + }, + "properties": { + "id": "meter-8746", + "maker": "Maker C", + "model": "Model 8746", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.33721359430325, + 25.35201984908985 + ] + }, + "properties": { + "id": "meter-8747", + "maker": "Maker I", + "model": "Model 8747", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.423924262585714, + 28.40187356978712 + ] + }, + "properties": { + "id": "meter-8748", + "maker": "Maker H", + "model": "Model 8748", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.207184180368394, + 26.308476894650326 + ] + }, + "properties": { + "id": "meter-8749", + "maker": "Maker D", + "model": "Model 8749", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.53591241305688, + 28.36361211349005 + ] + }, + "properties": { + "id": "meter-8750", + "maker": "Maker D", + "model": "Model 8750", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.507156455814204, + 18.498668109355037 + ] + }, + "properties": { + "id": "meter-8751", + "maker": "Maker E", + "model": "Model 8751", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.5052319647887, + 18.295774509814805 + ] + }, + "properties": { + "id": "meter-8752", + "maker": "Maker C", + "model": "Model 8752", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.8073418341699, + 24.938104622014126 + ] + }, + "properties": { + "id": "meter-8753", + "maker": "Maker F", + "model": "Model 8753", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86403721653751, + 21.429528503892474 + ] + }, + "properties": { + "id": "meter-8754", + "maker": "Maker G", + "model": "Model 8754", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.90669858496023, + 31.125417592851978 + ] + }, + "properties": { + "id": "meter-8755", + "maker": "Maker H", + "model": "Model 8755", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.57538428543093, + 20.260645952264817 + ] + }, + "properties": { + "id": "meter-8756", + "maker": "Maker H", + "model": "Model 8756", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.8681085708915, + 31.202650770668264 + ] + }, + "properties": { + "id": "meter-8757", + "maker": "Maker A", + "model": "Model 8757", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54953778426993, + 25.296153119420378 + ] + }, + "properties": { + "id": "meter-8758", + "maker": "Maker E", + "model": "Model 8758", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.75902857559746, + 25.159048981671962 + ] + }, + "properties": { + "id": "meter-8759", + "maker": "Maker E", + "model": "Model 8759", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96279256607461, + 26.225632490270314 + ] + }, + "properties": { + "id": "meter-8760", + "maker": "Maker C", + "model": "Model 8760", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.58376355337368, + 19.748032412534286 + ] + }, + "properties": { + "id": "meter-8761", + "maker": "Maker I", + "model": "Model 8761", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.76781042765748, + 27.58115289314519 + ] + }, + "properties": { + "id": "meter-8762", + "maker": "Maker C", + "model": "Model 8762", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.112816912331695, + 30.961093874727894 + ] + }, + "properties": { + "id": "meter-8763", + "maker": "Maker G", + "model": "Model 8763", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.80548472873064, + 18.266931949023963 + ] + }, + "properties": { + "id": "meter-8764", + "maker": "Maker I", + "model": "Model 8764", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.209712836825695, + 26.200165763722016 + ] + }, + "properties": { + "id": "meter-8765", + "maker": "Maker E", + "model": "Model 8765", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.68429276078893, + 25.514130897638587 + ] + }, + "properties": { + "id": "meter-8766", + "maker": "Maker A", + "model": "Model 8766", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.280145455358706, + 21.437021866062736 + ] + }, + "properties": { + "id": "meter-8767", + "maker": "Maker H", + "model": "Model 8767", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.76901845563298, + 27.70962210829305 + ] + }, + "properties": { + "id": "meter-8768", + "maker": "Maker A", + "model": "Model 8768", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.111685297534486, + 21.416874289963545 + ] + }, + "properties": { + "id": "meter-8769", + "maker": "Maker A", + "model": "Model 8769", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.5412896780191, + 28.414219703742063 + ] + }, + "properties": { + "id": "meter-8770", + "maker": "Maker H", + "model": "Model 8770", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.210152184562794, + 26.288372461922915 + ] + }, + "properties": { + "id": "meter-8771", + "maker": "Maker B", + "model": "Model 8771", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.177572792257216, + 26.23033212093351 + ] + }, + "properties": { + "id": "meter-8772", + "maker": "Maker B", + "model": "Model 8772", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.26508266390179, + 30.079383202039658 + ] + }, + "properties": { + "id": "meter-8773", + "maker": "Maker D", + "model": "Model 8773", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.259488359647044, + 21.5013814056425 + ] + }, + "properties": { + "id": "meter-8774", + "maker": "Maker F", + "model": "Model 8774", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21485050007428, + 21.55511754771608 + ] + }, + "properties": { + "id": "meter-8775", + "maker": "Maker F", + "model": "Model 8775", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.097142356676784, + 24.087316758816968 + ] + }, + "properties": { + "id": "meter-8776", + "maker": "Maker A", + "model": "Model 8776", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.383985790020304, + 28.35943740141665 + ] + }, + "properties": { + "id": "meter-8777", + "maker": "Maker H", + "model": "Model 8777", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21940862547693, + 30.034785031294895 + ] + }, + "properties": { + "id": "meter-8778", + "maker": "Maker J", + "model": "Model 8778", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.551891118462855, + 18.136005908830256 + ] + }, + "properties": { + "id": "meter-8779", + "maker": "Maker D", + "model": "Model 8779", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.77892812924185, + 27.512299104517496 + ] + }, + "properties": { + "id": "meter-8780", + "maker": "Maker D", + "model": "Model 8780", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.67242556303, + 18.285282193017782 + ] + }, + "properties": { + "id": "meter-8781", + "maker": "Maker F", + "model": "Model 8781", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.92154616314892, + 27.602572139565368 + ] + }, + "properties": { + "id": "meter-8782", + "maker": "Maker C", + "model": "Model 8782", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.82724016703779, + 18.450964495972265 + ] + }, + "properties": { + "id": "meter-8783", + "maker": "Maker E", + "model": "Model 8783", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99931341051228, + 26.27413399773626 + ] + }, + "properties": { + "id": "meter-8784", + "maker": "Maker H", + "model": "Model 8784", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.39056070305386, + 18.170620581586277 + ] + }, + "properties": { + "id": "meter-8785", + "maker": "Maker D", + "model": "Model 8785", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.687222947070694, + 25.008775788565124 + ] + }, + "properties": { + "id": "meter-8786", + "maker": "Maker D", + "model": "Model 8786", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.617775775776835, + 24.533138468539402 + ] + }, + "properties": { + "id": "meter-8787", + "maker": "Maker F", + "model": "Model 8787", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.498964557147914, + 21.547321197518446 + ] + }, + "properties": { + "id": "meter-8788", + "maker": "Maker H", + "model": "Model 8788", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09508793649084, + 26.412968254207804 + ] + }, + "properties": { + "id": "meter-8789", + "maker": "Maker J", + "model": "Model 8789", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.129554821455265, + 21.598735765313606 + ] + }, + "properties": { + "id": "meter-8790", + "maker": "Maker I", + "model": "Model 8790", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.20698697598702, + 17.77234993464617 + ] + }, + "properties": { + "id": "meter-8791", + "maker": "Maker H", + "model": "Model 8791", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.171867787739195, + 26.399629140687924 + ] + }, + "properties": { + "id": "meter-8792", + "maker": "Maker J", + "model": "Model 8792", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9629265454842, + 26.224884132053383 + ] + }, + "properties": { + "id": "meter-8793", + "maker": "Maker E", + "model": "Model 8793", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1893843793607, + 17.464734032495233 + ] + }, + "properties": { + "id": "meter-8794", + "maker": "Maker I", + "model": "Model 8794", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14123735053996, + 26.28058672949427 + ] + }, + "properties": { + "id": "meter-8795", + "maker": "Maker G", + "model": "Model 8795", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.29838601231939, + 19.991619052278732 + ] + }, + "properties": { + "id": "meter-8796", + "maker": "Maker E", + "model": "Model 8796", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.18093109391566, + 29.980037726081033 + ] + }, + "properties": { + "id": "meter-8797", + "maker": "Maker I", + "model": "Model 8797", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.845562388436406, + 21.424870227652132 + ] + }, + "properties": { + "id": "meter-8798", + "maker": "Maker G", + "model": "Model 8798", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.66822334291902, + 25.212053431011995 + ] + }, + "properties": { + "id": "meter-8799", + "maker": "Maker A", + "model": "Model 8799", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.567405111593814, + 18.150993189023804 + ] + }, + "properties": { + "id": "meter-8800", + "maker": "Maker F", + "model": "Model 8800", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.65731859509533, + 24.568865908038795 + ] + }, + "properties": { + "id": "meter-8801", + "maker": "Maker J", + "model": "Model 8801", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.774314787969836, + 26.325377074193135 + ] + }, + "properties": { + "id": "meter-8802", + "maker": "Maker H", + "model": "Model 8802", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84280532050909, + 24.626769981826943 + ] + }, + "properties": { + "id": "meter-8803", + "maker": "Maker G", + "model": "Model 8803", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.3561391425591, + 17.619285771073375 + ] + }, + "properties": { + "id": "meter-8804", + "maker": "Maker F", + "model": "Model 8804", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.234580578377695, + 29.95781490499666 + ] + }, + "properties": { + "id": "meter-8805", + "maker": "Maker I", + "model": "Model 8805", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.603966262088534, + 28.418183320036338 + ] + }, + "properties": { + "id": "meter-8806", + "maker": "Maker H", + "model": "Model 8806", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.60782022178139, + 28.400802611286178 + ] + }, + "properties": { + "id": "meter-8807", + "maker": "Maker A", + "model": "Model 8807", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.34756616043144, + 17.507814492082385 + ] + }, + "properties": { + "id": "meter-8808", + "maker": "Maker D", + "model": "Model 8808", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.63825715854537, + 25.314726627102115 + ] + }, + "properties": { + "id": "meter-8809", + "maker": "Maker E", + "model": "Model 8809", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.027445409885544, + 17.68923866319031 + ] + }, + "properties": { + "id": "meter-8810", + "maker": "Maker A", + "model": "Model 8810", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.286629831700914, + 21.484971556337044 + ] + }, + "properties": { + "id": "meter-8811", + "maker": "Maker H", + "model": "Model 8811", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.1939835403681, + 29.975072493724095 + ] + }, + "properties": { + "id": "meter-8812", + "maker": "Maker J", + "model": "Model 8812", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.48064357415843, + 28.279812659868696 + ] + }, + "properties": { + "id": "meter-8813", + "maker": "Maker G", + "model": "Model 8813", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.70775260483613, + 18.272564580773142 + ] + }, + "properties": { + "id": "meter-8814", + "maker": "Maker F", + "model": "Model 8814", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98358829507669, + 26.38993832229909 + ] + }, + "properties": { + "id": "meter-8815", + "maker": "Maker J", + "model": "Model 8815", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97617385896461, + 26.52361927600073 + ] + }, + "properties": { + "id": "meter-8816", + "maker": "Maker A", + "model": "Model 8816", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.573422925137834, + 25.34708754982133 + ] + }, + "properties": { + "id": "meter-8817", + "maker": "Maker G", + "model": "Model 8817", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86814638705231, + 21.415355897263737 + ] + }, + "properties": { + "id": "meter-8818", + "maker": "Maker E", + "model": "Model 8818", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2243372063897, + 21.646380176418518 + ] + }, + "properties": { + "id": "meter-8819", + "maker": "Maker D", + "model": "Model 8819", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.7438581951654, + 28.194674466210042 + ] + }, + "properties": { + "id": "meter-8820", + "maker": "Maker F", + "model": "Model 8820", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.4508167633184, + 28.487852063376568 + ] + }, + "properties": { + "id": "meter-8821", + "maker": "Maker A", + "model": "Model 8821", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.098608230601236, + 30.68163753267086 + ] + }, + "properties": { + "id": "meter-8822", + "maker": "Maker E", + "model": "Model 8822", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.819412048891806, + 27.599306146590667 + ] + }, + "properties": { + "id": "meter-8823", + "maker": "Maker C", + "model": "Model 8823", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06294254063966, + 24.10232490427063 + ] + }, + "properties": { + "id": "meter-8824", + "maker": "Maker I", + "model": "Model 8824", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.58184079837943, + 28.398793969093752 + ] + }, + "properties": { + "id": "meter-8825", + "maker": "Maker F", + "model": "Model 8825", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.167174950053806, + 26.294220934844162 + ] + }, + "properties": { + "id": "meter-8826", + "maker": "Maker F", + "model": "Model 8826", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12764928208952, + 26.220420788637412 + ] + }, + "properties": { + "id": "meter-8827", + "maker": "Maker I", + "model": "Model 8827", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.84983530152121, + 18.519737098367774 + ] + }, + "properties": { + "id": "meter-8828", + "maker": "Maker A", + "model": "Model 8828", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.0765604137027, + 26.11905032159167 + ] + }, + "properties": { + "id": "meter-8829", + "maker": "Maker C", + "model": "Model 8829", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.68836196779529, + 26.353015464310037 + ] + }, + "properties": { + "id": "meter-8830", + "maker": "Maker A", + "model": "Model 8830", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.96688493150853, + 21.51717286245335 + ] + }, + "properties": { + "id": "meter-8831", + "maker": "Maker F", + "model": "Model 8831", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.16447937550518, + 21.652105711642225 + ] + }, + "properties": { + "id": "meter-8832", + "maker": "Maker D", + "model": "Model 8832", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17734193985032, + 17.536569608794956 + ] + }, + "properties": { + "id": "meter-8833", + "maker": "Maker F", + "model": "Model 8833", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.568896967699686, + 25.29920349971718 + ] + }, + "properties": { + "id": "meter-8834", + "maker": "Maker G", + "model": "Model 8834", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14295840787861, + 17.494548453540155 + ] + }, + "properties": { + "id": "meter-8835", + "maker": "Maker B", + "model": "Model 8835", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.79717722497642, + 18.165146949329557 + ] + }, + "properties": { + "id": "meter-8836", + "maker": "Maker E", + "model": "Model 8836", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.259876359590365, + 24.19445316161236 + ] + }, + "properties": { + "id": "meter-8837", + "maker": "Maker D", + "model": "Model 8837", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.70701641442412, + 21.179613312375185 + ] + }, + "properties": { + "id": "meter-8838", + "maker": "Maker C", + "model": "Model 8838", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55644101870167, + 19.84111561129872 + ] + }, + "properties": { + "id": "meter-8839", + "maker": "Maker G", + "model": "Model 8839", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.410848301737694, + 17.549938934004917 + ] + }, + "properties": { + "id": "meter-8840", + "maker": "Maker H", + "model": "Model 8840", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.961959633506375, + 30.98250117925505 + ] + }, + "properties": { + "id": "meter-8841", + "maker": "Maker A", + "model": "Model 8841", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.182147211984606, + 17.44426310253884 + ] + }, + "properties": { + "id": "meter-8842", + "maker": "Maker I", + "model": "Model 8842", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.850973267953265, + 27.561284556371877 + ] + }, + "properties": { + "id": "meter-8843", + "maker": "Maker B", + "model": "Model 8843", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.734044106253876, + 24.414682278784106 + ] + }, + "properties": { + "id": "meter-8844", + "maker": "Maker F", + "model": "Model 8844", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02786636720349, + 26.305705529966232 + ] + }, + "properties": { + "id": "meter-8845", + "maker": "Maker D", + "model": "Model 8845", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13470696017954, + 26.304789553227756 + ] + }, + "properties": { + "id": "meter-8846", + "maker": "Maker H", + "model": "Model 8846", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06430196703828, + 24.091478757579353 + ] + }, + "properties": { + "id": "meter-8847", + "maker": "Maker G", + "model": "Model 8847", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.68741186258935, + 25.353574303641846 + ] + }, + "properties": { + "id": "meter-8848", + "maker": "Maker A", + "model": "Model 8848", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.58177001181355, + 18.395386271519932 + ] + }, + "properties": { + "id": "meter-8849", + "maker": "Maker A", + "model": "Model 8849", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.69139444256323, + 28.268722614652464 + ] + }, + "properties": { + "id": "meter-8850", + "maker": "Maker A", + "model": "Model 8850", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.028301825529674, + 30.012333703098975 + ] + }, + "properties": { + "id": "meter-8851", + "maker": "Maker B", + "model": "Model 8851", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.37155619695445, + 17.608644650118705 + ] + }, + "properties": { + "id": "meter-8852", + "maker": "Maker G", + "model": "Model 8852", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.190833252439525, + 30.224813201628784 + ] + }, + "properties": { + "id": "meter-8853", + "maker": "Maker C", + "model": "Model 8853", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.781186370110994, + 21.244852929477307 + ] + }, + "properties": { + "id": "meter-8854", + "maker": "Maker A", + "model": "Model 8854", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.926623994839716, + 30.046885493499843 + ] + }, + "properties": { + "id": "meter-8855", + "maker": "Maker A", + "model": "Model 8855", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.042193976137504, + 26.459720066584303 + ] + }, + "properties": { + "id": "meter-8856", + "maker": "Maker G", + "model": "Model 8856", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93700938502194, + 26.393771846383938 + ] + }, + "properties": { + "id": "meter-8857", + "maker": "Maker A", + "model": "Model 8857", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.1661806585967, + 21.36603174490106 + ] + }, + "properties": { + "id": "meter-8858", + "maker": "Maker C", + "model": "Model 8858", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.968278233274056, + 30.871690277946943 + ] + }, + "properties": { + "id": "meter-8859", + "maker": "Maker B", + "model": "Model 8859", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89613034339298, + 21.308820918078904 + ] + }, + "properties": { + "id": "meter-8860", + "maker": "Maker J", + "model": "Model 8860", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.94341792135656, + 21.374934112088024 + ] + }, + "properties": { + "id": "meter-8861", + "maker": "Maker B", + "model": "Model 8861", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.07472093289398, + 30.908766350706216 + ] + }, + "properties": { + "id": "meter-8862", + "maker": "Maker G", + "model": "Model 8862", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.75488185805398, + 25.449689466035675 + ] + }, + "properties": { + "id": "meter-8863", + "maker": "Maker B", + "model": "Model 8863", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19190544498626, + 26.2612371143609 + ] + }, + "properties": { + "id": "meter-8864", + "maker": "Maker J", + "model": "Model 8864", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.74384105032299, + 18.315073463751478 + ] + }, + "properties": { + "id": "meter-8865", + "maker": "Maker J", + "model": "Model 8865", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.13430427762606, + 24.32861480441908 + ] + }, + "properties": { + "id": "meter-8866", + "maker": "Maker G", + "model": "Model 8866", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.69527200672177, + 25.352543759440547 + ] + }, + "properties": { + "id": "meter-8867", + "maker": "Maker A", + "model": "Model 8867", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45191086285021, + 18.17209928381333 + ] + }, + "properties": { + "id": "meter-8868", + "maker": "Maker G", + "model": "Model 8868", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.619763584199276, + 19.98679876915994 + ] + }, + "properties": { + "id": "meter-8869", + "maker": "Maker G", + "model": "Model 8869", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.64315555453952, + 18.30837331015304 + ] + }, + "properties": { + "id": "meter-8870", + "maker": "Maker F", + "model": "Model 8870", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.047286742329675, + 24.11592530680614 + ] + }, + "properties": { + "id": "meter-8871", + "maker": "Maker A", + "model": "Model 8871", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.22614533553935, + 21.46822959745309 + ] + }, + "properties": { + "id": "meter-8872", + "maker": "Maker J", + "model": "Model 8872", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01221889211733, + 26.456182754239446 + ] + }, + "properties": { + "id": "meter-8873", + "maker": "Maker E", + "model": "Model 8873", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.1021452420563, + 30.954411622390218 + ] + }, + "properties": { + "id": "meter-8874", + "maker": "Maker H", + "model": "Model 8874", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.87486094693567, + 21.394171662235642 + ] + }, + "properties": { + "id": "meter-8875", + "maker": "Maker B", + "model": "Model 8875", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.576823086387066, + 25.34634201297151 + ] + }, + "properties": { + "id": "meter-8876", + "maker": "Maker H", + "model": "Model 8876", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.02625995877494, + 31.131783135381923 + ] + }, + "properties": { + "id": "meter-8877", + "maker": "Maker G", + "model": "Model 8877", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69256227917869, + 27.50601062687174 + ] + }, + "properties": { + "id": "meter-8878", + "maker": "Maker F", + "model": "Model 8878", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.15539918004118, + 17.495729480262153 + ] + }, + "properties": { + "id": "meter-8879", + "maker": "Maker D", + "model": "Model 8879", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.471625121562944, + 24.362631867138052 + ] + }, + "properties": { + "id": "meter-8880", + "maker": "Maker G", + "model": "Model 8880", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.714765174342865, + 27.463893750660258 + ] + }, + "properties": { + "id": "meter-8881", + "maker": "Maker H", + "model": "Model 8881", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09833407179762, + 24.367573566892286 + ] + }, + "properties": { + "id": "meter-8882", + "maker": "Maker E", + "model": "Model 8882", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.6181854692398, + 24.536959555758987 + ] + }, + "properties": { + "id": "meter-8883", + "maker": "Maker I", + "model": "Model 8883", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0681188126251, + 24.105875107828872 + ] + }, + "properties": { + "id": "meter-8884", + "maker": "Maker B", + "model": "Model 8884", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.51339787876954, + 24.583672525125767 + ] + }, + "properties": { + "id": "meter-8885", + "maker": "Maker I", + "model": "Model 8885", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72583595923707, + 18.29091353092031 + ] + }, + "properties": { + "id": "meter-8886", + "maker": "Maker E", + "model": "Model 8886", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.832008995967385, + 26.72236058768609 + ] + }, + "properties": { + "id": "meter-8887", + "maker": "Maker B", + "model": "Model 8887", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96568048639748, + 26.445863315266767 + ] + }, + "properties": { + "id": "meter-8888", + "maker": "Maker E", + "model": "Model 8888", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.001990023438196, + 17.423376421928737 + ] + }, + "properties": { + "id": "meter-8889", + "maker": "Maker H", + "model": "Model 8889", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17267359326413, + 17.537331084162453 + ] + }, + "properties": { + "id": "meter-8890", + "maker": "Maker C", + "model": "Model 8890", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.27268050725007, + 29.901012720075258 + ] + }, + "properties": { + "id": "meter-8891", + "maker": "Maker D", + "model": "Model 8891", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84500559634795, + 24.688443161542217 + ] + }, + "properties": { + "id": "meter-8892", + "maker": "Maker B", + "model": "Model 8892", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.912739172092095, + 30.7435245183753 + ] + }, + "properties": { + "id": "meter-8893", + "maker": "Maker I", + "model": "Model 8893", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.61094217332005, + 24.699054903391147 + ] + }, + "properties": { + "id": "meter-8894", + "maker": "Maker A", + "model": "Model 8894", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.119332970324734, + 17.371450470907245 + ] + }, + "properties": { + "id": "meter-8895", + "maker": "Maker I", + "model": "Model 8895", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67503097003605, + 19.812322139051602 + ] + }, + "properties": { + "id": "meter-8896", + "maker": "Maker C", + "model": "Model 8896", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.85050171323286, + 26.361002545666967 + ] + }, + "properties": { + "id": "meter-8897", + "maker": "Maker D", + "model": "Model 8897", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.598877224577095, + 24.592623759934032 + ] + }, + "properties": { + "id": "meter-8898", + "maker": "Maker B", + "model": "Model 8898", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.05353862028017, + 26.220317263066374 + ] + }, + "properties": { + "id": "meter-8899", + "maker": "Maker I", + "model": "Model 8899", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95422106596069, + 26.489726928870862 + ] + }, + "properties": { + "id": "meter-8900", + "maker": "Maker D", + "model": "Model 8900", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.81275098935827, + 31.057623499618785 + ] + }, + "properties": { + "id": "meter-8901", + "maker": "Maker H", + "model": "Model 8901", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.58814684347738, + 24.76507684639679 + ] + }, + "properties": { + "id": "meter-8902", + "maker": "Maker J", + "model": "Model 8902", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.6173008481128, + 25.349521618918384 + ] + }, + "properties": { + "id": "meter-8903", + "maker": "Maker F", + "model": "Model 8903", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.59262524013644, + 19.88049582526247 + ] + }, + "properties": { + "id": "meter-8904", + "maker": "Maker I", + "model": "Model 8904", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9838690797513, + 26.279157349475515 + ] + }, + "properties": { + "id": "meter-8905", + "maker": "Maker J", + "model": "Model 8905", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.085762792474675, + 24.231372142697566 + ] + }, + "properties": { + "id": "meter-8906", + "maker": "Maker E", + "model": "Model 8906", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.80245878319693, + 24.475291768499204 + ] + }, + "properties": { + "id": "meter-8907", + "maker": "Maker C", + "model": "Model 8907", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68829407890816, + 24.715170813033122 + ] + }, + "properties": { + "id": "meter-8908", + "maker": "Maker J", + "model": "Model 8908", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.58285254219883, + 24.907900220623183 + ] + }, + "properties": { + "id": "meter-8909", + "maker": "Maker I", + "model": "Model 8909", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.571195245769275, + 19.770946294631475 + ] + }, + "properties": { + "id": "meter-8910", + "maker": "Maker I", + "model": "Model 8910", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98534233996586, + 26.349004150248074 + ] + }, + "properties": { + "id": "meter-8911", + "maker": "Maker F", + "model": "Model 8911", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98712305000686, + 26.340303414178017 + ] + }, + "properties": { + "id": "meter-8912", + "maker": "Maker A", + "model": "Model 8912", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.51426167483654, + 18.267677646349032 + ] + }, + "properties": { + "id": "meter-8913", + "maker": "Maker H", + "model": "Model 8913", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.18520167706305, + 29.94304034604503 + ] + }, + "properties": { + "id": "meter-8914", + "maker": "Maker J", + "model": "Model 8914", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50791411532027, + 18.21940811872177 + ] + }, + "properties": { + "id": "meter-8915", + "maker": "Maker F", + "model": "Model 8915", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.30624282825997, + 25.249006353212025 + ] + }, + "properties": { + "id": "meter-8916", + "maker": "Maker F", + "model": "Model 8916", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96461889022637, + 26.589098956233087 + ] + }, + "properties": { + "id": "meter-8917", + "maker": "Maker C", + "model": "Model 8917", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.591238420966505, + 28.109627554856214 + ] + }, + "properties": { + "id": "meter-8918", + "maker": "Maker F", + "model": "Model 8918", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.98489509088376, + 24.173316042090274 + ] + }, + "properties": { + "id": "meter-8919", + "maker": "Maker H", + "model": "Model 8919", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.86457700025612, + 31.055095673576094 + ] + }, + "properties": { + "id": "meter-8920", + "maker": "Maker G", + "model": "Model 8920", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.024538158304175, + 30.057277208836847 + ] + }, + "properties": { + "id": "meter-8921", + "maker": "Maker E", + "model": "Model 8921", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12159451590664, + 26.35904175719826 + ] + }, + "properties": { + "id": "meter-8922", + "maker": "Maker H", + "model": "Model 8922", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.833264189447945, + 17.45310947407476 + ] + }, + "properties": { + "id": "meter-8923", + "maker": "Maker H", + "model": "Model 8923", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.21420585156949, + 30.92704583658965 + ] + }, + "properties": { + "id": "meter-8924", + "maker": "Maker E", + "model": "Model 8924", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.74705191115004, + 18.297251750259377 + ] + }, + "properties": { + "id": "meter-8925", + "maker": "Maker E", + "model": "Model 8925", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.2154191041961, + 26.328179066152376 + ] + }, + "properties": { + "id": "meter-8926", + "maker": "Maker F", + "model": "Model 8926", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.064085826892885, + 24.115544056760605 + ] + }, + "properties": { + "id": "meter-8927", + "maker": "Maker A", + "model": "Model 8927", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.5275085063011, + 20.002506486734784 + ] + }, + "properties": { + "id": "meter-8928", + "maker": "Maker I", + "model": "Model 8928", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59274941064862, + 25.351331601420974 + ] + }, + "properties": { + "id": "meter-8929", + "maker": "Maker G", + "model": "Model 8929", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.36035644997773, + 20.102158394813767 + ] + }, + "properties": { + "id": "meter-8930", + "maker": "Maker C", + "model": "Model 8930", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59616550997897, + 25.376002721213613 + ] + }, + "properties": { + "id": "meter-8931", + "maker": "Maker C", + "model": "Model 8931", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.29615084417708, + 29.84008796613833 + ] + }, + "properties": { + "id": "meter-8932", + "maker": "Maker G", + "model": "Model 8932", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63606364914831, + 24.600866607697046 + ] + }, + "properties": { + "id": "meter-8933", + "maker": "Maker J", + "model": "Model 8933", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.356457382458615, + 17.56176603643107 + ] + }, + "properties": { + "id": "meter-8934", + "maker": "Maker A", + "model": "Model 8934", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09005850970859, + 26.432949323490316 + ] + }, + "properties": { + "id": "meter-8935", + "maker": "Maker J", + "model": "Model 8935", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.64160527939714, + 24.56082970849308 + ] + }, + "properties": { + "id": "meter-8936", + "maker": "Maker J", + "model": "Model 8936", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.54397675032041, + 18.084610647001917 + ] + }, + "properties": { + "id": "meter-8937", + "maker": "Maker J", + "model": "Model 8937", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.93060283050346, + 21.521197705453726 + ] + }, + "properties": { + "id": "meter-8938", + "maker": "Maker I", + "model": "Model 8938", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.336396664038865, + 20.06645357318718 + ] + }, + "properties": { + "id": "meter-8939", + "maker": "Maker C", + "model": "Model 8939", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.114426910750986, + 26.392881603442877 + ] + }, + "properties": { + "id": "meter-8940", + "maker": "Maker I", + "model": "Model 8940", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.87849525897988, + 27.317355660959645 + ] + }, + "properties": { + "id": "meter-8941", + "maker": "Maker H", + "model": "Model 8941", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67310611270524, + 24.717353034629156 + ] + }, + "properties": { + "id": "meter-8942", + "maker": "Maker A", + "model": "Model 8942", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23605900058623, + 21.47985896498538 + ] + }, + "properties": { + "id": "meter-8943", + "maker": "Maker H", + "model": "Model 8943", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.23458008983504, + 30.946641630033312 + ] + }, + "properties": { + "id": "meter-8944", + "maker": "Maker I", + "model": "Model 8944", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93581344526496, + 26.573598506373685 + ] + }, + "properties": { + "id": "meter-8945", + "maker": "Maker A", + "model": "Model 8945", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.7544700803693, + 26.640126906474944 + ] + }, + "properties": { + "id": "meter-8946", + "maker": "Maker D", + "model": "Model 8946", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.799551085842744, + 25.27350498411897 + ] + }, + "properties": { + "id": "meter-8947", + "maker": "Maker F", + "model": "Model 8947", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.641948728251805, + 25.333466150777024 + ] + }, + "properties": { + "id": "meter-8948", + "maker": "Maker C", + "model": "Model 8948", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.385116409406216, + 19.991273945448448 + ] + }, + "properties": { + "id": "meter-8949", + "maker": "Maker I", + "model": "Model 8949", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.029580571085724, + 26.394948471472006 + ] + }, + "properties": { + "id": "meter-8950", + "maker": "Maker E", + "model": "Model 8950", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.637631061861065, + 18.062144335889748 + ] + }, + "properties": { + "id": "meter-8951", + "maker": "Maker E", + "model": "Model 8951", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.85549507523291, + 26.110765801913896 + ] + }, + "properties": { + "id": "meter-8952", + "maker": "Maker A", + "model": "Model 8952", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.644649813916004, + 18.03510180075729 + ] + }, + "properties": { + "id": "meter-8953", + "maker": "Maker I", + "model": "Model 8953", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97193566731491, + 26.665706941718387 + ] + }, + "properties": { + "id": "meter-8954", + "maker": "Maker A", + "model": "Model 8954", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.898378555384475, + 26.64478911918698 + ] + }, + "properties": { + "id": "meter-8955", + "maker": "Maker H", + "model": "Model 8955", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14853409043232, + 26.22580091940607 + ] + }, + "properties": { + "id": "meter-8956", + "maker": "Maker G", + "model": "Model 8956", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.05452360234455, + 30.868648530368073 + ] + }, + "properties": { + "id": "meter-8957", + "maker": "Maker B", + "model": "Model 8957", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70136300148509, + 27.476527142220924 + ] + }, + "properties": { + "id": "meter-8958", + "maker": "Maker F", + "model": "Model 8958", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.483174902176955, + 24.720969620509297 + ] + }, + "properties": { + "id": "meter-8959", + "maker": "Maker B", + "model": "Model 8959", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.06821902569168, + 31.0690733040194 + ] + }, + "properties": { + "id": "meter-8960", + "maker": "Maker B", + "model": "Model 8960", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.62684173991044, + 24.759969187051965 + ] + }, + "properties": { + "id": "meter-8961", + "maker": "Maker B", + "model": "Model 8961", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.660567535792, + 28.679231557231066 + ] + }, + "properties": { + "id": "meter-8962", + "maker": "Maker J", + "model": "Model 8962", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94163506359961, + 17.58693388406445 + ] + }, + "properties": { + "id": "meter-8963", + "maker": "Maker F", + "model": "Model 8963", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.906094290283995, + 24.287678370478407 + ] + }, + "properties": { + "id": "meter-8964", + "maker": "Maker D", + "model": "Model 8964", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.638359290489966, + 18.17464096332075 + ] + }, + "properties": { + "id": "meter-8965", + "maker": "Maker B", + "model": "Model 8965", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03686789013844, + 30.97574042575955 + ] + }, + "properties": { + "id": "meter-8966", + "maker": "Maker F", + "model": "Model 8966", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20613816302393, + 29.97618499001087 + ] + }, + "properties": { + "id": "meter-8967", + "maker": "Maker G", + "model": "Model 8967", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.815723915182886, + 28.3708857198995 + ] + }, + "properties": { + "id": "meter-8968", + "maker": "Maker F", + "model": "Model 8968", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.573088673044296, + 25.472505715846058 + ] + }, + "properties": { + "id": "meter-8969", + "maker": "Maker G", + "model": "Model 8969", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.62498818525538, + 18.256381880047265 + ] + }, + "properties": { + "id": "meter-8970", + "maker": "Maker E", + "model": "Model 8970", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.2008279327059, + 26.307755443927437 + ] + }, + "properties": { + "id": "meter-8971", + "maker": "Maker F", + "model": "Model 8971", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.28806607940943, + 21.315648641510652 + ] + }, + "properties": { + "id": "meter-8972", + "maker": "Maker J", + "model": "Model 8972", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61342098840443, + 24.531305894749558 + ] + }, + "properties": { + "id": "meter-8973", + "maker": "Maker I", + "model": "Model 8973", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.035801101689636, + 26.290424416165475 + ] + }, + "properties": { + "id": "meter-8974", + "maker": "Maker B", + "model": "Model 8974", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.86982578380771, + 26.49732686383127 + ] + }, + "properties": { + "id": "meter-8975", + "maker": "Maker G", + "model": "Model 8975", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94656342813055, + 26.356957329197225 + ] + }, + "properties": { + "id": "meter-8976", + "maker": "Maker A", + "model": "Model 8976", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.02430863225345, + 31.027920998355118 + ] + }, + "properties": { + "id": "meter-8977", + "maker": "Maker B", + "model": "Model 8977", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24146624272558, + 21.519585466097347 + ] + }, + "properties": { + "id": "meter-8978", + "maker": "Maker I", + "model": "Model 8978", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19441380330008, + 26.310346993939234 + ] + }, + "properties": { + "id": "meter-8979", + "maker": "Maker H", + "model": "Model 8979", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52398238718186, + 18.191659659187458 + ] + }, + "properties": { + "id": "meter-8980", + "maker": "Maker H", + "model": "Model 8980", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.54094198910093, + 27.515365140764793 + ] + }, + "properties": { + "id": "meter-8981", + "maker": "Maker E", + "model": "Model 8981", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06328486257663, + 26.456477443014897 + ] + }, + "properties": { + "id": "meter-8982", + "maker": "Maker J", + "model": "Model 8982", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.070178840770865, + 24.339508815792588 + ] + }, + "properties": { + "id": "meter-8983", + "maker": "Maker E", + "model": "Model 8983", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.0636486796553, + 26.381801379208763 + ] + }, + "properties": { + "id": "meter-8984", + "maker": "Maker I", + "model": "Model 8984", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.133603653143076, + 17.490739833078408 + ] + }, + "properties": { + "id": "meter-8985", + "maker": "Maker D", + "model": "Model 8985", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.66795641269184, + 21.502716237647117 + ] + }, + "properties": { + "id": "meter-8986", + "maker": "Maker G", + "model": "Model 8986", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.18338296833485, + 17.507724415914996 + ] + }, + "properties": { + "id": "meter-8987", + "maker": "Maker F", + "model": "Model 8987", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.90153536948208, + 21.288404471300215 + ] + }, + "properties": { + "id": "meter-8988", + "maker": "Maker A", + "model": "Model 8988", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.79132390251063, + 26.379513489251817 + ] + }, + "properties": { + "id": "meter-8989", + "maker": "Maker H", + "model": "Model 8989", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09550877872711, + 24.170694673366366 + ] + }, + "properties": { + "id": "meter-8990", + "maker": "Maker E", + "model": "Model 8990", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.40014766168867, + 28.30437974943226 + ] + }, + "properties": { + "id": "meter-8991", + "maker": "Maker A", + "model": "Model 8991", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97247161761113, + 26.68313762164517 + ] + }, + "properties": { + "id": "meter-8992", + "maker": "Maker J", + "model": "Model 8992", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.57041660178818, + 19.88872348116352 + ] + }, + "properties": { + "id": "meter-8993", + "maker": "Maker F", + "model": "Model 8993", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85037614843233, + 21.15094233533876 + ] + }, + "properties": { + "id": "meter-8994", + "maker": "Maker E", + "model": "Model 8994", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13442366456932, + 17.498212347730583 + ] + }, + "properties": { + "id": "meter-8995", + "maker": "Maker J", + "model": "Model 8995", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98931230189971, + 26.39190782295255 + ] + }, + "properties": { + "id": "meter-8996", + "maker": "Maker F", + "model": "Model 8996", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.5544782219116, + 24.61870984166639 + ] + }, + "properties": { + "id": "meter-8997", + "maker": "Maker I", + "model": "Model 8997", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67920792663293, + 24.656440879596225 + ] + }, + "properties": { + "id": "meter-8998", + "maker": "Maker J", + "model": "Model 8998", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.56794784709797, + 28.379215668162328 + ] + }, + "properties": { + "id": "meter-8999", + "maker": "Maker E", + "model": "Model 8999", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.33917357145619, + 21.420132718670796 + ] + }, + "properties": { + "id": "meter-9000", + "maker": "Maker H", + "model": "Model 9000", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.01112386958719, + 21.332649337052736 + ] + }, + "properties": { + "id": "meter-9001", + "maker": "Maker F", + "model": "Model 9001", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.226766253698564, + 21.61089565923094 + ] + }, + "properties": { + "id": "meter-9002", + "maker": "Maker J", + "model": "Model 9002", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.45251792782861, + 28.203426487715248 + ] + }, + "properties": { + "id": "meter-9003", + "maker": "Maker B", + "model": "Model 9003", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.181349484101375, + 17.662614625973223 + ] + }, + "properties": { + "id": "meter-9004", + "maker": "Maker A", + "model": "Model 9004", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.747634599189084, + 25.593050777318297 + ] + }, + "properties": { + "id": "meter-9005", + "maker": "Maker C", + "model": "Model 9005", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.58759576887565, + 18.383808797760633 + ] + }, + "properties": { + "id": "meter-9006", + "maker": "Maker E", + "model": "Model 9006", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.43870832023104, + 25.211641039420144 + ] + }, + "properties": { + "id": "meter-9007", + "maker": "Maker D", + "model": "Model 9007", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.891107101224975, + 26.48245198852114 + ] + }, + "properties": { + "id": "meter-9008", + "maker": "Maker G", + "model": "Model 9008", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.30638327274933, + 30.230855836897554 + ] + }, + "properties": { + "id": "meter-9009", + "maker": "Maker C", + "model": "Model 9009", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86625572666347, + 21.43407425026577 + ] + }, + "properties": { + "id": "meter-9010", + "maker": "Maker C", + "model": "Model 9010", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.749993993938375, + 21.449908094766172 + ] + }, + "properties": { + "id": "meter-9011", + "maker": "Maker H", + "model": "Model 9011", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.22071963329839, + 29.920194509684052 + ] + }, + "properties": { + "id": "meter-9012", + "maker": "Maker C", + "model": "Model 9012", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.821282588781564, + 21.397476629670717 + ] + }, + "properties": { + "id": "meter-9013", + "maker": "Maker A", + "model": "Model 9013", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.953805965297576, + 21.434652291015098 + ] + }, + "properties": { + "id": "meter-9014", + "maker": "Maker F", + "model": "Model 9014", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.43064833466535, + 27.486898272961106 + ] + }, + "properties": { + "id": "meter-9015", + "maker": "Maker C", + "model": "Model 9015", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.330472522119855, + 21.707320437109768 + ] + }, + "properties": { + "id": "meter-9016", + "maker": "Maker H", + "model": "Model 9016", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.40006854937739, + 21.405272868396132 + ] + }, + "properties": { + "id": "meter-9017", + "maker": "Maker E", + "model": "Model 9017", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00701521594793, + 26.392819000318944 + ] + }, + "properties": { + "id": "meter-9018", + "maker": "Maker I", + "model": "Model 9018", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08720815241137, + 26.422417494708686 + ] + }, + "properties": { + "id": "meter-9019", + "maker": "Maker G", + "model": "Model 9019", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.885275882844724, + 24.581667006465835 + ] + }, + "properties": { + "id": "meter-9020", + "maker": "Maker H", + "model": "Model 9020", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.70346507304677, + 24.721346600017746 + ] + }, + "properties": { + "id": "meter-9021", + "maker": "Maker I", + "model": "Model 9021", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.95227518695187, + 26.128348943449108 + ] + }, + "properties": { + "id": "meter-9022", + "maker": "Maker B", + "model": "Model 9022", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.32740083303892, + 29.738871822274824 + ] + }, + "properties": { + "id": "meter-9023", + "maker": "Maker B", + "model": "Model 9023", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.077619438651304, + 26.42940385102281 + ] + }, + "properties": { + "id": "meter-9024", + "maker": "Maker B", + "model": "Model 9024", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73084609608212, + 18.323077960722962 + ] + }, + "properties": { + "id": "meter-9025", + "maker": "Maker E", + "model": "Model 9025", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55273800254715, + 19.809492346975816 + ] + }, + "properties": { + "id": "meter-9026", + "maker": "Maker I", + "model": "Model 9026", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.70449130628327, + 25.40162595832466 + ] + }, + "properties": { + "id": "meter-9027", + "maker": "Maker B", + "model": "Model 9027", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.16885901840637, + 26.315517696670412 + ] + }, + "properties": { + "id": "meter-9028", + "maker": "Maker G", + "model": "Model 9028", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.301362081597816, + 21.520818376436896 + ] + }, + "properties": { + "id": "meter-9029", + "maker": "Maker D", + "model": "Model 9029", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.687669566086356, + 21.498455621258877 + ] + }, + "properties": { + "id": "meter-9030", + "maker": "Maker A", + "model": "Model 9030", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95355846844518, + 26.312539330297867 + ] + }, + "properties": { + "id": "meter-9031", + "maker": "Maker E", + "model": "Model 9031", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.85339377845696, + 18.473830037853418 + ] + }, + "properties": { + "id": "meter-9032", + "maker": "Maker I", + "model": "Model 9032", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.372969404303454, + 18.13141654149859 + ] + }, + "properties": { + "id": "meter-9033", + "maker": "Maker I", + "model": "Model 9033", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.566820869948906, + 18.273214487050232 + ] + }, + "properties": { + "id": "meter-9034", + "maker": "Maker G", + "model": "Model 9034", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.224117460856135, + 29.961105123611183 + ] + }, + "properties": { + "id": "meter-9035", + "maker": "Maker H", + "model": "Model 9035", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.302424785906545, + 21.380334162347847 + ] + }, + "properties": { + "id": "meter-9036", + "maker": "Maker F", + "model": "Model 9036", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.1852673978385, + 24.190696854251783 + ] + }, + "properties": { + "id": "meter-9037", + "maker": "Maker I", + "model": "Model 9037", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59254054743907, + 25.327002141914367 + ] + }, + "properties": { + "id": "meter-9038", + "maker": "Maker E", + "model": "Model 9038", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.72064294079211, + 27.76929087221422 + ] + }, + "properties": { + "id": "meter-9039", + "maker": "Maker B", + "model": "Model 9039", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.6635410899735, + 24.461681897377478 + ] + }, + "properties": { + "id": "meter-9040", + "maker": "Maker A", + "model": "Model 9040", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.54333582813227, + 28.51101214713743 + ] + }, + "properties": { + "id": "meter-9041", + "maker": "Maker C", + "model": "Model 9041", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.344766942807425, + 21.23239227064166 + ] + }, + "properties": { + "id": "meter-9042", + "maker": "Maker E", + "model": "Model 9042", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.68671060004033, + 27.58439404938984 + ] + }, + "properties": { + "id": "meter-9043", + "maker": "Maker C", + "model": "Model 9043", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.43689332138178, + 28.274130037430123 + ] + }, + "properties": { + "id": "meter-9044", + "maker": "Maker H", + "model": "Model 9044", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.7486655862987, + 18.46094373862764 + ] + }, + "properties": { + "id": "meter-9045", + "maker": "Maker J", + "model": "Model 9045", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.238935372181835, + 21.492345851471878 + ] + }, + "properties": { + "id": "meter-9046", + "maker": "Maker I", + "model": "Model 9046", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01439421025863, + 26.28686300444101 + ] + }, + "properties": { + "id": "meter-9047", + "maker": "Maker E", + "model": "Model 9047", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.001222251605675, + 30.96498939035415 + ] + }, + "properties": { + "id": "meter-9048", + "maker": "Maker G", + "model": "Model 9048", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.503117697034135, + 24.531541723443606 + ] + }, + "properties": { + "id": "meter-9049", + "maker": "Maker I", + "model": "Model 9049", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08362227203453, + 26.41212888587676 + ] + }, + "properties": { + "id": "meter-9050", + "maker": "Maker I", + "model": "Model 9050", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.43474056965235, + 18.08326560931306 + ] + }, + "properties": { + "id": "meter-9051", + "maker": "Maker G", + "model": "Model 9051", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.218109305074044, + 29.870600331281835 + ] + }, + "properties": { + "id": "meter-9052", + "maker": "Maker G", + "model": "Model 9052", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.7490174270879, + 21.18436218666605 + ] + }, + "properties": { + "id": "meter-9053", + "maker": "Maker E", + "model": "Model 9053", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00846498905158, + 26.24676044645982 + ] + }, + "properties": { + "id": "meter-9054", + "maker": "Maker B", + "model": "Model 9054", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.931623178948534, + 17.524692082346554 + ] + }, + "properties": { + "id": "meter-9055", + "maker": "Maker A", + "model": "Model 9055", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.940296547778885, + 21.645029780912388 + ] + }, + "properties": { + "id": "meter-9056", + "maker": "Maker I", + "model": "Model 9056", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17790196696473, + 26.3066516298768 + ] + }, + "properties": { + "id": "meter-9057", + "maker": "Maker H", + "model": "Model 9057", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04150274846257, + 24.224796305248326 + ] + }, + "properties": { + "id": "meter-9058", + "maker": "Maker B", + "model": "Model 9058", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26240928086215, + 21.34608626515617 + ] + }, + "properties": { + "id": "meter-9059", + "maker": "Maker C", + "model": "Model 9059", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.129888721248925, + 17.4924436602199 + ] + }, + "properties": { + "id": "meter-9060", + "maker": "Maker B", + "model": "Model 9060", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09225950138058, + 26.44753911268599 + ] + }, + "properties": { + "id": "meter-9061", + "maker": "Maker E", + "model": "Model 9061", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.129516348769585, + 26.09801693868148 + ] + }, + "properties": { + "id": "meter-9062", + "maker": "Maker D", + "model": "Model 9062", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.41156741748814, + 24.650236868495522 + ] + }, + "properties": { + "id": "meter-9063", + "maker": "Maker E", + "model": "Model 9063", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.05345853274993, + 31.088481355338274 + ] + }, + "properties": { + "id": "meter-9064", + "maker": "Maker E", + "model": "Model 9064", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.917063335422526, + 24.663322875699855 + ] + }, + "properties": { + "id": "meter-9065", + "maker": "Maker A", + "model": "Model 9065", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.870220321997664, + 21.39394285000884 + ] + }, + "properties": { + "id": "meter-9066", + "maker": "Maker B", + "model": "Model 9066", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.854468818926776, + 30.887620460061303 + ] + }, + "properties": { + "id": "meter-9067", + "maker": "Maker F", + "model": "Model 9067", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01418349034476, + 26.497553401667766 + ] + }, + "properties": { + "id": "meter-9068", + "maker": "Maker J", + "model": "Model 9068", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.90680082256639, + 26.36028716832885 + ] + }, + "properties": { + "id": "meter-9069", + "maker": "Maker I", + "model": "Model 9069", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.78041458494111, + 21.624929207295988 + ] + }, + "properties": { + "id": "meter-9070", + "maker": "Maker B", + "model": "Model 9070", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.36024459426902, + 28.559050398422606 + ] + }, + "properties": { + "id": "meter-9071", + "maker": "Maker I", + "model": "Model 9071", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.702009486298394, + 18.372566559232872 + ] + }, + "properties": { + "id": "meter-9072", + "maker": "Maker F", + "model": "Model 9072", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.509981389735664, + 25.424683874425877 + ] + }, + "properties": { + "id": "meter-9073", + "maker": "Maker H", + "model": "Model 9073", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.918886430460056, + 26.361210954516064 + ] + }, + "properties": { + "id": "meter-9074", + "maker": "Maker A", + "model": "Model 9074", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.67512619245143, + 25.480551331473798 + ] + }, + "properties": { + "id": "meter-9075", + "maker": "Maker E", + "model": "Model 9075", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.681830800264365, + 28.499314105295895 + ] + }, + "properties": { + "id": "meter-9076", + "maker": "Maker D", + "model": "Model 9076", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47859885255766, + 20.237554757888496 + ] + }, + "properties": { + "id": "meter-9077", + "maker": "Maker I", + "model": "Model 9077", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.365784438852884, + 18.01428488667647 + ] + }, + "properties": { + "id": "meter-9078", + "maker": "Maker F", + "model": "Model 9078", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50869966763563, + 18.197177124198955 + ] + }, + "properties": { + "id": "meter-9079", + "maker": "Maker D", + "model": "Model 9079", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.363858157708385, + 30.16478610530006 + ] + }, + "properties": { + "id": "meter-9080", + "maker": "Maker E", + "model": "Model 9080", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92288893388161, + 26.354620046953737 + ] + }, + "properties": { + "id": "meter-9081", + "maker": "Maker C", + "model": "Model 9081", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.579758719630355, + 25.169222840289436 + ] + }, + "properties": { + "id": "meter-9082", + "maker": "Maker D", + "model": "Model 9082", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92978434711718, + 26.528767383199675 + ] + }, + "properties": { + "id": "meter-9083", + "maker": "Maker F", + "model": "Model 9083", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88645944252701, + 21.177604221043698 + ] + }, + "properties": { + "id": "meter-9084", + "maker": "Maker J", + "model": "Model 9084", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12907666803562, + 17.57315488246558 + ] + }, + "properties": { + "id": "meter-9085", + "maker": "Maker B", + "model": "Model 9085", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88624939247712, + 21.3662046368711 + ] + }, + "properties": { + "id": "meter-9086", + "maker": "Maker I", + "model": "Model 9086", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.76350412760111, + 25.363659699826368 + ] + }, + "properties": { + "id": "meter-9087", + "maker": "Maker C", + "model": "Model 9087", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.585318420724114, + 28.40144253855213 + ] + }, + "properties": { + "id": "meter-9088", + "maker": "Maker G", + "model": "Model 9088", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89627118355206, + 21.55146455248541 + ] + }, + "properties": { + "id": "meter-9089", + "maker": "Maker D", + "model": "Model 9089", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.9537476882825, + 30.95697960620347 + ] + }, + "properties": { + "id": "meter-9090", + "maker": "Maker A", + "model": "Model 9090", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.573889806413916, + 25.304961982517874 + ] + }, + "properties": { + "id": "meter-9091", + "maker": "Maker I", + "model": "Model 9091", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.451038406642894, + 24.64444025353641 + ] + }, + "properties": { + "id": "meter-9092", + "maker": "Maker E", + "model": "Model 9092", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.18249743744454, + 17.49446042150637 + ] + }, + "properties": { + "id": "meter-9093", + "maker": "Maker F", + "model": "Model 9093", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02215636409843, + 26.44775726241392 + ] + }, + "properties": { + "id": "meter-9094", + "maker": "Maker B", + "model": "Model 9094", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.104811085116744, + 24.114448347492328 + ] + }, + "properties": { + "id": "meter-9095", + "maker": "Maker F", + "model": "Model 9095", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.656555332818904, + 21.297239793848718 + ] + }, + "properties": { + "id": "meter-9096", + "maker": "Maker H", + "model": "Model 9096", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.660827055555984, + 25.48844170046244 + ] + }, + "properties": { + "id": "meter-9097", + "maker": "Maker H", + "model": "Model 9097", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17514598411299, + 26.325216455635037 + ] + }, + "properties": { + "id": "meter-9098", + "maker": "Maker G", + "model": "Model 9098", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.064161242261, + 26.209181138936906 + ] + }, + "properties": { + "id": "meter-9099", + "maker": "Maker A", + "model": "Model 9099", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12974787756951, + 26.14865164064817 + ] + }, + "properties": { + "id": "meter-9100", + "maker": "Maker G", + "model": "Model 9100", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.578405878920684, + 27.316562319142847 + ] + }, + "properties": { + "id": "meter-9101", + "maker": "Maker E", + "model": "Model 9101", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10876808839537, + 17.467548775321557 + ] + }, + "properties": { + "id": "meter-9102", + "maker": "Maker C", + "model": "Model 9102", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06517973542303, + 26.226795510828016 + ] + }, + "properties": { + "id": "meter-9103", + "maker": "Maker G", + "model": "Model 9103", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.26274837550978, + 24.201766731963314 + ] + }, + "properties": { + "id": "meter-9104", + "maker": "Maker E", + "model": "Model 9104", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.89627461624149, + 17.416861598315293 + ] + }, + "properties": { + "id": "meter-9105", + "maker": "Maker G", + "model": "Model 9105", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1892398016216, + 26.20582230086147 + ] + }, + "properties": { + "id": "meter-9106", + "maker": "Maker F", + "model": "Model 9106", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.5746867215886, + 25.278286803440196 + ] + }, + "properties": { + "id": "meter-9107", + "maker": "Maker J", + "model": "Model 9107", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68714809086323, + 24.66495078011028 + ] + }, + "properties": { + "id": "meter-9108", + "maker": "Maker F", + "model": "Model 9108", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.00777759202482, + 31.272957734072545 + ] + }, + "properties": { + "id": "meter-9109", + "maker": "Maker C", + "model": "Model 9109", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09590094971403, + 26.333409719834876 + ] + }, + "properties": { + "id": "meter-9110", + "maker": "Maker B", + "model": "Model 9110", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.6619420002958, + 28.31925045366982 + ] + }, + "properties": { + "id": "meter-9111", + "maker": "Maker J", + "model": "Model 9111", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.38336844567724, + 25.53206952284431 + ] + }, + "properties": { + "id": "meter-9112", + "maker": "Maker J", + "model": "Model 9112", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.081570299163864, + 26.464817509354003 + ] + }, + "properties": { + "id": "meter-9113", + "maker": "Maker A", + "model": "Model 9113", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.02587326467129, + 30.0198328704602 + ] + }, + "properties": { + "id": "meter-9114", + "maker": "Maker F", + "model": "Model 9114", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20651793812066, + 29.933696816413995 + ] + }, + "properties": { + "id": "meter-9115", + "maker": "Maker F", + "model": "Model 9115", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.030777185309596, + 26.780631479943587 + ] + }, + "properties": { + "id": "meter-9116", + "maker": "Maker B", + "model": "Model 9116", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.32977481820462, + 25.379367055075008 + ] + }, + "properties": { + "id": "meter-9117", + "maker": "Maker B", + "model": "Model 9117", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10365676050768, + 26.15685317501998 + ] + }, + "properties": { + "id": "meter-9118", + "maker": "Maker F", + "model": "Model 9118", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94676218120342, + 26.27401772992409 + ] + }, + "properties": { + "id": "meter-9119", + "maker": "Maker H", + "model": "Model 9119", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.687493183919436, + 24.426360713059942 + ] + }, + "properties": { + "id": "meter-9120", + "maker": "Maker C", + "model": "Model 9120", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.48723657008488, + 24.726714290803706 + ] + }, + "properties": { + "id": "meter-9121", + "maker": "Maker J", + "model": "Model 9121", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81109247866877, + 21.581560447686797 + ] + }, + "properties": { + "id": "meter-9122", + "maker": "Maker B", + "model": "Model 9122", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.982101138647, + 26.45000396837218 + ] + }, + "properties": { + "id": "meter-9123", + "maker": "Maker H", + "model": "Model 9123", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42270685720707, + 20.251105664536368 + ] + }, + "properties": { + "id": "meter-9124", + "maker": "Maker A", + "model": "Model 9124", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.02974048599865, + 29.955823307024627 + ] + }, + "properties": { + "id": "meter-9125", + "maker": "Maker B", + "model": "Model 9125", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09700535165416, + 17.398480138103867 + ] + }, + "properties": { + "id": "meter-9126", + "maker": "Maker A", + "model": "Model 9126", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09885231576875, + 26.39162804700171 + ] + }, + "properties": { + "id": "meter-9127", + "maker": "Maker J", + "model": "Model 9127", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.61390416932347, + 25.10551642854743 + ] + }, + "properties": { + "id": "meter-9128", + "maker": "Maker H", + "model": "Model 9128", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.94661227390408, + 24.360042724824382 + ] + }, + "properties": { + "id": "meter-9129", + "maker": "Maker H", + "model": "Model 9129", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.04417313767312, + 26.37116704761364 + ] + }, + "properties": { + "id": "meter-9130", + "maker": "Maker E", + "model": "Model 9130", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.965709396230864, + 26.47356358534688 + ] + }, + "properties": { + "id": "meter-9131", + "maker": "Maker J", + "model": "Model 9131", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.035917942370865, + 30.179263052482884 + ] + }, + "properties": { + "id": "meter-9132", + "maker": "Maker G", + "model": "Model 9132", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84338518281479, + 24.569101328302924 + ] + }, + "properties": { + "id": "meter-9133", + "maker": "Maker J", + "model": "Model 9133", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.993374499103545, + 26.458641941175898 + ] + }, + "properties": { + "id": "meter-9134", + "maker": "Maker B", + "model": "Model 9134", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.07668695502553, + 29.79809130307534 + ] + }, + "properties": { + "id": "meter-9135", + "maker": "Maker I", + "model": "Model 9135", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.1213450276732, + 24.076217400144674 + ] + }, + "properties": { + "id": "meter-9136", + "maker": "Maker A", + "model": "Model 9136", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6682882393708, + 27.79090269032951 + ] + }, + "properties": { + "id": "meter-9137", + "maker": "Maker C", + "model": "Model 9137", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.9042014675571, + 17.53912663834244 + ] + }, + "properties": { + "id": "meter-9138", + "maker": "Maker J", + "model": "Model 9138", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.87401877726527, + 18.157555923070227 + ] + }, + "properties": { + "id": "meter-9139", + "maker": "Maker H", + "model": "Model 9139", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.655317556595605, + 28.37271820003957 + ] + }, + "properties": { + "id": "meter-9140", + "maker": "Maker J", + "model": "Model 9140", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.66406689016492, + 28.50468962366683 + ] + }, + "properties": { + "id": "meter-9141", + "maker": "Maker D", + "model": "Model 9141", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.6256802303782, + 18.35896443543709 + ] + }, + "properties": { + "id": "meter-9142", + "maker": "Maker H", + "model": "Model 9142", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.168090924814734, + 26.329287013421016 + ] + }, + "properties": { + "id": "meter-9143", + "maker": "Maker F", + "model": "Model 9143", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59643480678281, + 25.284627743624377 + ] + }, + "properties": { + "id": "meter-9144", + "maker": "Maker H", + "model": "Model 9144", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.48732789061351, + 24.85465245751406 + ] + }, + "properties": { + "id": "meter-9145", + "maker": "Maker A", + "model": "Model 9145", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87850042731476, + 26.564712786636523 + ] + }, + "properties": { + "id": "meter-9146", + "maker": "Maker H", + "model": "Model 9146", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.80072118746693, + 26.498409553644418 + ] + }, + "properties": { + "id": "meter-9147", + "maker": "Maker C", + "model": "Model 9147", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.14101810571049, + 21.434598847645653 + ] + }, + "properties": { + "id": "meter-9148", + "maker": "Maker F", + "model": "Model 9148", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.63941641542855, + 27.704738488446505 + ] + }, + "properties": { + "id": "meter-9149", + "maker": "Maker A", + "model": "Model 9149", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.246755364683054, + 21.536531265880452 + ] + }, + "properties": { + "id": "meter-9150", + "maker": "Maker H", + "model": "Model 9150", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13828295731724, + 26.26579316311326 + ] + }, + "properties": { + "id": "meter-9151", + "maker": "Maker E", + "model": "Model 9151", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.272929290038675, + 21.491725278402452 + ] + }, + "properties": { + "id": "meter-9152", + "maker": "Maker E", + "model": "Model 9152", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.79479817558089, + 28.535354585818403 + ] + }, + "properties": { + "id": "meter-9153", + "maker": "Maker H", + "model": "Model 9153", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14726612194504, + 26.187819065773272 + ] + }, + "properties": { + "id": "meter-9154", + "maker": "Maker C", + "model": "Model 9154", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.76098300144994, + 18.064822484486918 + ] + }, + "properties": { + "id": "meter-9155", + "maker": "Maker D", + "model": "Model 9155", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.53812971508373, + 28.221049717797854 + ] + }, + "properties": { + "id": "meter-9156", + "maker": "Maker A", + "model": "Model 9156", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9122796953712, + 26.271942887906725 + ] + }, + "properties": { + "id": "meter-9157", + "maker": "Maker I", + "model": "Model 9157", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.254366026545824, + 30.248967796917647 + ] + }, + "properties": { + "id": "meter-9158", + "maker": "Maker C", + "model": "Model 9158", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13167308924725, + 17.408072879741024 + ] + }, + "properties": { + "id": "meter-9159", + "maker": "Maker I", + "model": "Model 9159", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.62393426498072, + 24.503961483260188 + ] + }, + "properties": { + "id": "meter-9160", + "maker": "Maker F", + "model": "Model 9160", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.338218297500504, + 21.47756502444426 + ] + }, + "properties": { + "id": "meter-9161", + "maker": "Maker J", + "model": "Model 9161", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.183569567064815, + 21.500533766895092 + ] + }, + "properties": { + "id": "meter-9162", + "maker": "Maker J", + "model": "Model 9162", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.490866517278775, + 17.951306810856657 + ] + }, + "properties": { + "id": "meter-9163", + "maker": "Maker H", + "model": "Model 9163", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.945921429082, + 24.192804490284935 + ] + }, + "properties": { + "id": "meter-9164", + "maker": "Maker J", + "model": "Model 9164", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11428807426238, + 26.383958852312382 + ] + }, + "properties": { + "id": "meter-9165", + "maker": "Maker H", + "model": "Model 9165", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21379590576425, + 26.273015443843832 + ] + }, + "properties": { + "id": "meter-9166", + "maker": "Maker D", + "model": "Model 9166", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.57301276244266, + 27.525722556288844 + ] + }, + "properties": { + "id": "meter-9167", + "maker": "Maker H", + "model": "Model 9167", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.038217629659755, + 24.280468395433065 + ] + }, + "properties": { + "id": "meter-9168", + "maker": "Maker C", + "model": "Model 9168", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.465947119256846, + 25.2263307752261 + ] + }, + "properties": { + "id": "meter-9169", + "maker": "Maker I", + "model": "Model 9169", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.13815078993196, + 24.080915116305363 + ] + }, + "properties": { + "id": "meter-9170", + "maker": "Maker I", + "model": "Model 9170", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.969419165660334, + 26.354536450978962 + ] + }, + "properties": { + "id": "meter-9171", + "maker": "Maker H", + "model": "Model 9171", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.080826973079645, + 24.114983801472714 + ] + }, + "properties": { + "id": "meter-9172", + "maker": "Maker B", + "model": "Model 9172", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.76368697031801, + 21.64645451730106 + ] + }, + "properties": { + "id": "meter-9173", + "maker": "Maker D", + "model": "Model 9173", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59885541296875, + 25.51404600471977 + ] + }, + "properties": { + "id": "meter-9174", + "maker": "Maker B", + "model": "Model 9174", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.29802649994242, + 25.30098959278199 + ] + }, + "properties": { + "id": "meter-9175", + "maker": "Maker J", + "model": "Model 9175", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.31419029522941, + 29.764848362935734 + ] + }, + "properties": { + "id": "meter-9176", + "maker": "Maker A", + "model": "Model 9176", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.71441900755785, + 28.316251375639585 + ] + }, + "properties": { + "id": "meter-9177", + "maker": "Maker G", + "model": "Model 9177", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81965487592857, + 21.10748324724837 + ] + }, + "properties": { + "id": "meter-9178", + "maker": "Maker J", + "model": "Model 9178", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.075912088271814, + 24.209079893403388 + ] + }, + "properties": { + "id": "meter-9179", + "maker": "Maker C", + "model": "Model 9179", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.42650405232854, + 21.656157450318343 + ] + }, + "properties": { + "id": "meter-9180", + "maker": "Maker I", + "model": "Model 9180", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.217558462215756, + 17.758968398827466 + ] + }, + "properties": { + "id": "meter-9181", + "maker": "Maker G", + "model": "Model 9181", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85157341772835, + 21.36843121786034 + ] + }, + "properties": { + "id": "meter-9182", + "maker": "Maker A", + "model": "Model 9182", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.207410011376425, + 26.27480768586333 + ] + }, + "properties": { + "id": "meter-9183", + "maker": "Maker I", + "model": "Model 9183", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99575078109631, + 26.48202782224676 + ] + }, + "properties": { + "id": "meter-9184", + "maker": "Maker G", + "model": "Model 9184", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.917120002112156, + 26.233879251629517 + ] + }, + "properties": { + "id": "meter-9185", + "maker": "Maker D", + "model": "Model 9185", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.39327087075339, + 18.212294951698215 + ] + }, + "properties": { + "id": "meter-9186", + "maker": "Maker D", + "model": "Model 9186", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.185236679020285, + 21.28410004971601 + ] + }, + "properties": { + "id": "meter-9187", + "maker": "Maker J", + "model": "Model 9187", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.15760340610465, + 17.495110605497214 + ] + }, + "properties": { + "id": "meter-9188", + "maker": "Maker F", + "model": "Model 9188", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97267010534582, + 26.523819994402675 + ] + }, + "properties": { + "id": "meter-9189", + "maker": "Maker D", + "model": "Model 9189", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.339410184177254, + 30.06788178498162 + ] + }, + "properties": { + "id": "meter-9190", + "maker": "Maker H", + "model": "Model 9190", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.712405415967574, + 27.50792333950207 + ] + }, + "properties": { + "id": "meter-9191", + "maker": "Maker E", + "model": "Model 9191", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.204074209089995, + 26.265720535746034 + ] + }, + "properties": { + "id": "meter-9192", + "maker": "Maker J", + "model": "Model 9192", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.86273549997107, + 18.226733288110516 + ] + }, + "properties": { + "id": "meter-9193", + "maker": "Maker C", + "model": "Model 9193", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.75769842877808, + 26.462318573705222 + ] + }, + "properties": { + "id": "meter-9194", + "maker": "Maker D", + "model": "Model 9194", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1094263205505, + 26.513663749101298 + ] + }, + "properties": { + "id": "meter-9195", + "maker": "Maker H", + "model": "Model 9195", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05449788243153, + 26.305286618898997 + ] + }, + "properties": { + "id": "meter-9196", + "maker": "Maker C", + "model": "Model 9196", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.35318693753285, + 21.308371230950883 + ] + }, + "properties": { + "id": "meter-9197", + "maker": "Maker A", + "model": "Model 9197", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.81270859180079, + 28.271055465292335 + ] + }, + "properties": { + "id": "meter-9198", + "maker": "Maker A", + "model": "Model 9198", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.9622922792912, + 31.129119423927182 + ] + }, + "properties": { + "id": "meter-9199", + "maker": "Maker B", + "model": "Model 9199", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.443772067266906, + 24.42072847205829 + ] + }, + "properties": { + "id": "meter-9200", + "maker": "Maker B", + "model": "Model 9200", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.489655220463234, + 20.018222228534537 + ] + }, + "properties": { + "id": "meter-9201", + "maker": "Maker E", + "model": "Model 9201", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.474242356435695, + 20.037542528769844 + ] + }, + "properties": { + "id": "meter-9202", + "maker": "Maker B", + "model": "Model 9202", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.422418112781116, + 18.4483278043693 + ] + }, + "properties": { + "id": "meter-9203", + "maker": "Maker J", + "model": "Model 9203", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.212659308071146, + 26.310094916243887 + ] + }, + "properties": { + "id": "meter-9204", + "maker": "Maker A", + "model": "Model 9204", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.19805988319087, + 29.798255012378736 + ] + }, + "properties": { + "id": "meter-9205", + "maker": "Maker A", + "model": "Model 9205", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.747228411148285, + 18.280181188385487 + ] + }, + "properties": { + "id": "meter-9206", + "maker": "Maker B", + "model": "Model 9206", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.18478624201493, + 24.032066283262072 + ] + }, + "properties": { + "id": "meter-9207", + "maker": "Maker A", + "model": "Model 9207", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.331608041326454, + 28.370764315820878 + ] + }, + "properties": { + "id": "meter-9208", + "maker": "Maker C", + "model": "Model 9208", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.92663225715898, + 27.527720054588848 + ] + }, + "properties": { + "id": "meter-9209", + "maker": "Maker F", + "model": "Model 9209", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.16121152649156, + 17.537788380274066 + ] + }, + "properties": { + "id": "meter-9210", + "maker": "Maker E", + "model": "Model 9210", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.05415664062014, + 26.353348564031517 + ] + }, + "properties": { + "id": "meter-9211", + "maker": "Maker J", + "model": "Model 9211", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.69557084049096, + 24.70670235663318 + ] + }, + "properties": { + "id": "meter-9212", + "maker": "Maker F", + "model": "Model 9212", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.06459942849758, + 30.914856336861966 + ] + }, + "properties": { + "id": "meter-9213", + "maker": "Maker J", + "model": "Model 9213", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.019565240956155, + 31.017406086841238 + ] + }, + "properties": { + "id": "meter-9214", + "maker": "Maker B", + "model": "Model 9214", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.47714584954618, + 18.06803178793309 + ] + }, + "properties": { + "id": "meter-9215", + "maker": "Maker H", + "model": "Model 9215", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.08386248846703, + 31.103017256306188 + ] + }, + "properties": { + "id": "meter-9216", + "maker": "Maker E", + "model": "Model 9216", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.262525011855345, + 20.153344719312347 + ] + }, + "properties": { + "id": "meter-9217", + "maker": "Maker B", + "model": "Model 9217", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.822986466250526, + 26.457287360059507 + ] + }, + "properties": { + "id": "meter-9218", + "maker": "Maker D", + "model": "Model 9218", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.337901422013005, + 19.787581663582266 + ] + }, + "properties": { + "id": "meter-9219", + "maker": "Maker F", + "model": "Model 9219", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.486356938528566, + 25.450430525809715 + ] + }, + "properties": { + "id": "meter-9220", + "maker": "Maker G", + "model": "Model 9220", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.6759896058141, + 24.71456776884828 + ] + }, + "properties": { + "id": "meter-9221", + "maker": "Maker J", + "model": "Model 9221", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63805738468271, + 24.520652178199203 + ] + }, + "properties": { + "id": "meter-9222", + "maker": "Maker B", + "model": "Model 9222", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97135297267931, + 26.253626091896624 + ] + }, + "properties": { + "id": "meter-9223", + "maker": "Maker B", + "model": "Model 9223", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2707950025245, + 21.525552638498347 + ] + }, + "properties": { + "id": "meter-9224", + "maker": "Maker E", + "model": "Model 9224", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.6343801687218, + 28.402842739562537 + ] + }, + "properties": { + "id": "meter-9225", + "maker": "Maker G", + "model": "Model 9225", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.29871559098589, + 17.731862596736104 + ] + }, + "properties": { + "id": "meter-9226", + "maker": "Maker B", + "model": "Model 9226", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.26073315886619, + 17.720223653466665 + ] + }, + "properties": { + "id": "meter-9227", + "maker": "Maker F", + "model": "Model 9227", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.468942072711705, + 18.16275339713107 + ] + }, + "properties": { + "id": "meter-9228", + "maker": "Maker D", + "model": "Model 9228", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67137214627015, + 21.465329248284995 + ] + }, + "properties": { + "id": "meter-9229", + "maker": "Maker J", + "model": "Model 9229", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.71574729513154, + 24.27422838985093 + ] + }, + "properties": { + "id": "meter-9230", + "maker": "Maker A", + "model": "Model 9230", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09907082552785, + 17.558453255886185 + ] + }, + "properties": { + "id": "meter-9231", + "maker": "Maker A", + "model": "Model 9231", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.614597996314494, + 19.94747605362355 + ] + }, + "properties": { + "id": "meter-9232", + "maker": "Maker I", + "model": "Model 9232", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.714238417470625, + 26.35008675170192 + ] + }, + "properties": { + "id": "meter-9233", + "maker": "Maker E", + "model": "Model 9233", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.878349615295264, + 26.274104813502895 + ] + }, + "properties": { + "id": "meter-9234", + "maker": "Maker C", + "model": "Model 9234", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.855562032849086, + 24.639139660445007 + ] + }, + "properties": { + "id": "meter-9235", + "maker": "Maker I", + "model": "Model 9235", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.63190180462831, + 28.419110263554295 + ] + }, + "properties": { + "id": "meter-9236", + "maker": "Maker C", + "model": "Model 9236", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.18161226910985, + 21.728665876967717 + ] + }, + "properties": { + "id": "meter-9237", + "maker": "Maker D", + "model": "Model 9237", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.87665142897423, + 30.928390996057384 + ] + }, + "properties": { + "id": "meter-9238", + "maker": "Maker G", + "model": "Model 9238", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.059708743150175, + 31.101138643557828 + ] + }, + "properties": { + "id": "meter-9239", + "maker": "Maker B", + "model": "Model 9239", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62838335260746, + 27.5563795275894 + ] + }, + "properties": { + "id": "meter-9240", + "maker": "Maker B", + "model": "Model 9240", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.73543616333623, + 28.16145526543916 + ] + }, + "properties": { + "id": "meter-9241", + "maker": "Maker F", + "model": "Model 9241", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99065433093439, + 26.509551022191673 + ] + }, + "properties": { + "id": "meter-9242", + "maker": "Maker H", + "model": "Model 9242", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.610257157719985, + 24.59809350965783 + ] + }, + "properties": { + "id": "meter-9243", + "maker": "Maker B", + "model": "Model 9243", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62099892267078, + 27.77420305408785 + ] + }, + "properties": { + "id": "meter-9244", + "maker": "Maker B", + "model": "Model 9244", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.760962620256784, + 25.341587733248186 + ] + }, + "properties": { + "id": "meter-9245", + "maker": "Maker A", + "model": "Model 9245", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.42453662326225, + 24.658376781393283 + ] + }, + "properties": { + "id": "meter-9246", + "maker": "Maker G", + "model": "Model 9246", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.202079680655345, + 26.289142297921217 + ] + }, + "properties": { + "id": "meter-9247", + "maker": "Maker E", + "model": "Model 9247", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18776235768271, + 26.24702432061194 + ] + }, + "properties": { + "id": "meter-9248", + "maker": "Maker H", + "model": "Model 9248", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.420082898073076, + 20.010676021752467 + ] + }, + "properties": { + "id": "meter-9249", + "maker": "Maker D", + "model": "Model 9249", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.70824286190079, + 28.271228156737745 + ] + }, + "properties": { + "id": "meter-9250", + "maker": "Maker C", + "model": "Model 9250", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11555570130202, + 26.274586145024283 + ] + }, + "properties": { + "id": "meter-9251", + "maker": "Maker I", + "model": "Model 9251", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.61134372497609, + 25.227206648454032 + ] + }, + "properties": { + "id": "meter-9252", + "maker": "Maker E", + "model": "Model 9252", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.114040620944806, + 26.440749400327665 + ] + }, + "properties": { + "id": "meter-9253", + "maker": "Maker G", + "model": "Model 9253", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.35742850203638, + 21.26321544427323 + ] + }, + "properties": { + "id": "meter-9254", + "maker": "Maker A", + "model": "Model 9254", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.24310713609067, + 17.453230751068023 + ] + }, + "properties": { + "id": "meter-9255", + "maker": "Maker E", + "model": "Model 9255", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.22355254394138, + 31.086700773120644 + ] + }, + "properties": { + "id": "meter-9256", + "maker": "Maker E", + "model": "Model 9256", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68593484788136, + 24.77284693715394 + ] + }, + "properties": { + "id": "meter-9257", + "maker": "Maker B", + "model": "Model 9257", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.088375243081444, + 26.429740582956004 + ] + }, + "properties": { + "id": "meter-9258", + "maker": "Maker A", + "model": "Model 9258", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.885626393866644, + 30.755634900290747 + ] + }, + "properties": { + "id": "meter-9259", + "maker": "Maker A", + "model": "Model 9259", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.041064106026, + 17.441827564293096 + ] + }, + "properties": { + "id": "meter-9260", + "maker": "Maker G", + "model": "Model 9260", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.10817414555005, + 24.37930778634376 + ] + }, + "properties": { + "id": "meter-9261", + "maker": "Maker I", + "model": "Model 9261", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.60416972906159, + 19.84001430577243 + ] + }, + "properties": { + "id": "meter-9262", + "maker": "Maker E", + "model": "Model 9262", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.74772538550632, + 24.54067675180371 + ] + }, + "properties": { + "id": "meter-9263", + "maker": "Maker A", + "model": "Model 9263", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48244930229651, + 27.2954597889128 + ] + }, + "properties": { + "id": "meter-9264", + "maker": "Maker B", + "model": "Model 9264", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13489286595262, + 17.519616614564974 + ] + }, + "properties": { + "id": "meter-9265", + "maker": "Maker I", + "model": "Model 9265", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.11814078619567, + 29.730616484986978 + ] + }, + "properties": { + "id": "meter-9266", + "maker": "Maker C", + "model": "Model 9266", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.934400676664055, + 24.346260614376046 + ] + }, + "properties": { + "id": "meter-9267", + "maker": "Maker C", + "model": "Model 9267", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.096882937598075, + 17.544746357440115 + ] + }, + "properties": { + "id": "meter-9268", + "maker": "Maker E", + "model": "Model 9268", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.66199244181489, + 24.398665387227165 + ] + }, + "properties": { + "id": "meter-9269", + "maker": "Maker C", + "model": "Model 9269", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.956252205557675, + 17.42659989920767 + ] + }, + "properties": { + "id": "meter-9270", + "maker": "Maker C", + "model": "Model 9270", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.94473303509855, + 27.601504104664254 + ] + }, + "properties": { + "id": "meter-9271", + "maker": "Maker J", + "model": "Model 9271", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.852412953715415, + 21.39879936047691 + ] + }, + "properties": { + "id": "meter-9272", + "maker": "Maker G", + "model": "Model 9272", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.321895165952085, + 23.950458931019686 + ] + }, + "properties": { + "id": "meter-9273", + "maker": "Maker I", + "model": "Model 9273", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.81211596189715, + 24.851683676176386 + ] + }, + "properties": { + "id": "meter-9274", + "maker": "Maker J", + "model": "Model 9274", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03723904900994, + 26.31348880943299 + ] + }, + "properties": { + "id": "meter-9275", + "maker": "Maker J", + "model": "Model 9275", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.25927099696065, + 30.0855418622131 + ] + }, + "properties": { + "id": "meter-9276", + "maker": "Maker B", + "model": "Model 9276", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.6277626611217, + 18.11310006664552 + ] + }, + "properties": { + "id": "meter-9277", + "maker": "Maker C", + "model": "Model 9277", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.33014927940429, + 28.502796222524786 + ] + }, + "properties": { + "id": "meter-9278", + "maker": "Maker C", + "model": "Model 9278", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.5419385001684, + 24.500694213245644 + ] + }, + "properties": { + "id": "meter-9279", + "maker": "Maker C", + "model": "Model 9279", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.060772328725825, + 24.089305828770925 + ] + }, + "properties": { + "id": "meter-9280", + "maker": "Maker E", + "model": "Model 9280", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.57130825020616, + 19.91838027024797 + ] + }, + "properties": { + "id": "meter-9281", + "maker": "Maker F", + "model": "Model 9281", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.24069402831375, + 20.115714608719717 + ] + }, + "properties": { + "id": "meter-9282", + "maker": "Maker F", + "model": "Model 9282", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.223254812507065, + 19.961437301587488 + ] + }, + "properties": { + "id": "meter-9283", + "maker": "Maker A", + "model": "Model 9283", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.45290116297104, + 24.40131653277906 + ] + }, + "properties": { + "id": "meter-9284", + "maker": "Maker F", + "model": "Model 9284", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.507899274196795, + 18.117821192411235 + ] + }, + "properties": { + "id": "meter-9285", + "maker": "Maker H", + "model": "Model 9285", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.610095908442595, + 28.52510138430682 + ] + }, + "properties": { + "id": "meter-9286", + "maker": "Maker A", + "model": "Model 9286", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.6176147736283, + 25.34233020234034 + ] + }, + "properties": { + "id": "meter-9287", + "maker": "Maker H", + "model": "Model 9287", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.24267912412085, + 24.129130986629804 + ] + }, + "properties": { + "id": "meter-9288", + "maker": "Maker B", + "model": "Model 9288", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62295226657029, + 19.99965698444351 + ] + }, + "properties": { + "id": "meter-9289", + "maker": "Maker B", + "model": "Model 9289", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.65748454925907, + 28.59068167649755 + ] + }, + "properties": { + "id": "meter-9290", + "maker": "Maker I", + "model": "Model 9290", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57054479375017, + 25.343820022909547 + ] + }, + "properties": { + "id": "meter-9291", + "maker": "Maker C", + "model": "Model 9291", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.494276410702305, + 24.32044546268082 + ] + }, + "properties": { + "id": "meter-9292", + "maker": "Maker G", + "model": "Model 9292", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.63105185990737, + 18.27567842226476 + ] + }, + "properties": { + "id": "meter-9293", + "maker": "Maker J", + "model": "Model 9293", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42131292231254, + 20.223102707866328 + ] + }, + "properties": { + "id": "meter-9294", + "maker": "Maker B", + "model": "Model 9294", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.789928836410326, + 21.645674652637076 + ] + }, + "properties": { + "id": "meter-9295", + "maker": "Maker I", + "model": "Model 9295", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.680192665774634, + 24.68801358973106 + ] + }, + "properties": { + "id": "meter-9296", + "maker": "Maker H", + "model": "Model 9296", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.752216658062, + 21.463406249015826 + ] + }, + "properties": { + "id": "meter-9297", + "maker": "Maker J", + "model": "Model 9297", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.409285398379794, + 30.03941172641768 + ] + }, + "properties": { + "id": "meter-9298", + "maker": "Maker F", + "model": "Model 9298", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.35903411252114, + 29.832315288519126 + ] + }, + "properties": { + "id": "meter-9299", + "maker": "Maker G", + "model": "Model 9299", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.224921790380925, + 23.997171067143892 + ] + }, + "properties": { + "id": "meter-9300", + "maker": "Maker A", + "model": "Model 9300", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.17624280682191, + 30.120586541316918 + ] + }, + "properties": { + "id": "meter-9301", + "maker": "Maker C", + "model": "Model 9301", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.77543397697677, + 26.561394250556273 + ] + }, + "properties": { + "id": "meter-9302", + "maker": "Maker B", + "model": "Model 9302", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.640234979196315, + 21.50595500431568 + ] + }, + "properties": { + "id": "meter-9303", + "maker": "Maker E", + "model": "Model 9303", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07713932705921, + 26.387355045183813 + ] + }, + "properties": { + "id": "meter-9304", + "maker": "Maker B", + "model": "Model 9304", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.07665564402922, + 21.43707015334456 + ] + }, + "properties": { + "id": "meter-9305", + "maker": "Maker I", + "model": "Model 9305", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15181629782519, + 26.341512387150495 + ] + }, + "properties": { + "id": "meter-9306", + "maker": "Maker J", + "model": "Model 9306", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.04701623599909, + 26.39056340483088 + ] + }, + "properties": { + "id": "meter-9307", + "maker": "Maker J", + "model": "Model 9307", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47778953937131, + 20.00278584739962 + ] + }, + "properties": { + "id": "meter-9308", + "maker": "Maker D", + "model": "Model 9308", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.447090404534194, + 21.568176760189875 + ] + }, + "properties": { + "id": "meter-9309", + "maker": "Maker E", + "model": "Model 9309", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.20872750954671, + 17.64266769371792 + ] + }, + "properties": { + "id": "meter-9310", + "maker": "Maker J", + "model": "Model 9310", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23749749927312, + 21.69013490850027 + ] + }, + "properties": { + "id": "meter-9311", + "maker": "Maker G", + "model": "Model 9311", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61542673331127, + 24.51812678056508 + ] + }, + "properties": { + "id": "meter-9312", + "maker": "Maker H", + "model": "Model 9312", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.650730570391715, + 19.886282629897988 + ] + }, + "properties": { + "id": "meter-9313", + "maker": "Maker F", + "model": "Model 9313", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.84363794922376, + 24.877984143316997 + ] + }, + "properties": { + "id": "meter-9314", + "maker": "Maker F", + "model": "Model 9314", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.45941858068993, + 24.76910071192788 + ] + }, + "properties": { + "id": "meter-9315", + "maker": "Maker I", + "model": "Model 9315", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.909536594687935, + 26.40063474735454 + ] + }, + "properties": { + "id": "meter-9316", + "maker": "Maker F", + "model": "Model 9316", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.5907575401252, + 25.30807321729527 + ] + }, + "properties": { + "id": "meter-9317", + "maker": "Maker J", + "model": "Model 9317", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06334378422404, + 24.145269496342433 + ] + }, + "properties": { + "id": "meter-9318", + "maker": "Maker A", + "model": "Model 9318", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.60750658467305, + 24.745010626408174 + ] + }, + "properties": { + "id": "meter-9319", + "maker": "Maker D", + "model": "Model 9319", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.142846232554525, + 17.41052461047254 + ] + }, + "properties": { + "id": "meter-9320", + "maker": "Maker B", + "model": "Model 9320", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.816632285203845, + 21.21310142391038 + ] + }, + "properties": { + "id": "meter-9321", + "maker": "Maker A", + "model": "Model 9321", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14357389393829, + 17.538297968725 + ] + }, + "properties": { + "id": "meter-9322", + "maker": "Maker F", + "model": "Model 9322", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.187814294484156, + 26.256580831139992 + ] + }, + "properties": { + "id": "meter-9323", + "maker": "Maker I", + "model": "Model 9323", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02310213447288, + 26.216726649019694 + ] + }, + "properties": { + "id": "meter-9324", + "maker": "Maker B", + "model": "Model 9324", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.86860389549067, + 28.28477147004974 + ] + }, + "properties": { + "id": "meter-9325", + "maker": "Maker D", + "model": "Model 9325", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.47134479124973, + 24.595009719987083 + ] + }, + "properties": { + "id": "meter-9326", + "maker": "Maker F", + "model": "Model 9326", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.222101130546854, + 18.278806331845328 + ] + }, + "properties": { + "id": "meter-9327", + "maker": "Maker J", + "model": "Model 9327", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.20287704352098, + 24.295550897479664 + ] + }, + "properties": { + "id": "meter-9328", + "maker": "Maker C", + "model": "Model 9328", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1856800880081, + 26.363981140466556 + ] + }, + "properties": { + "id": "meter-9329", + "maker": "Maker H", + "model": "Model 9329", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.57206292854069, + 20.08479349329148 + ] + }, + "properties": { + "id": "meter-9330", + "maker": "Maker G", + "model": "Model 9330", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85980321186061, + 21.365095712269056 + ] + }, + "properties": { + "id": "meter-9331", + "maker": "Maker J", + "model": "Model 9331", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96451594148889, + 26.328780192404917 + ] + }, + "properties": { + "id": "meter-9332", + "maker": "Maker J", + "model": "Model 9332", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.741759147123915, + 28.43229194573761 + ] + }, + "properties": { + "id": "meter-9333", + "maker": "Maker A", + "model": "Model 9333", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.29778006669054, + 17.578087541750623 + ] + }, + "properties": { + "id": "meter-9334", + "maker": "Maker G", + "model": "Model 9334", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02339871750028, + 17.500600131936757 + ] + }, + "properties": { + "id": "meter-9335", + "maker": "Maker E", + "model": "Model 9335", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.793950997550084, + 21.199409245368344 + ] + }, + "properties": { + "id": "meter-9336", + "maker": "Maker I", + "model": "Model 9336", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10404375578645, + 17.431371623686392 + ] + }, + "properties": { + "id": "meter-9337", + "maker": "Maker G", + "model": "Model 9337", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.349951161770115, + 30.007191357535937 + ] + }, + "properties": { + "id": "meter-9338", + "maker": "Maker A", + "model": "Model 9338", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59968668840851, + 25.448875146614057 + ] + }, + "properties": { + "id": "meter-9339", + "maker": "Maker A", + "model": "Model 9339", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67557199490758, + 24.70682158494743 + ] + }, + "properties": { + "id": "meter-9340", + "maker": "Maker H", + "model": "Model 9340", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4924899883241, + 20.047680685207684 + ] + }, + "properties": { + "id": "meter-9341", + "maker": "Maker D", + "model": "Model 9341", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.96225201563612, + 21.3310867611055 + ] + }, + "properties": { + "id": "meter-9342", + "maker": "Maker J", + "model": "Model 9342", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99523562811854, + 26.24363180240462 + ] + }, + "properties": { + "id": "meter-9343", + "maker": "Maker F", + "model": "Model 9343", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.20718131955463, + 17.632725577686664 + ] + }, + "properties": { + "id": "meter-9344", + "maker": "Maker E", + "model": "Model 9344", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.181404091867385, + 17.616701857399143 + ] + }, + "properties": { + "id": "meter-9345", + "maker": "Maker G", + "model": "Model 9345", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.842028430861134, + 30.937421128149644 + ] + }, + "properties": { + "id": "meter-9346", + "maker": "Maker D", + "model": "Model 9346", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.8665220858879, + 21.2391317716928 + ] + }, + "properties": { + "id": "meter-9347", + "maker": "Maker G", + "model": "Model 9347", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87575230442487, + 26.66455989168495 + ] + }, + "properties": { + "id": "meter-9348", + "maker": "Maker B", + "model": "Model 9348", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.64558814893642, + 28.430487775552564 + ] + }, + "properties": { + "id": "meter-9349", + "maker": "Maker E", + "model": "Model 9349", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.967995587119155, + 26.321139483473207 + ] + }, + "properties": { + "id": "meter-9350", + "maker": "Maker C", + "model": "Model 9350", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25183390746016, + 21.477601814833182 + ] + }, + "properties": { + "id": "meter-9351", + "maker": "Maker J", + "model": "Model 9351", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.395528155142976, + 21.365076409380567 + ] + }, + "properties": { + "id": "meter-9352", + "maker": "Maker G", + "model": "Model 9352", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97519493255033, + 26.16586429600542 + ] + }, + "properties": { + "id": "meter-9353", + "maker": "Maker A", + "model": "Model 9353", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.17516423411832, + 21.349848586551868 + ] + }, + "properties": { + "id": "meter-9354", + "maker": "Maker I", + "model": "Model 9354", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.834065870811806, + 21.490043221364843 + ] + }, + "properties": { + "id": "meter-9355", + "maker": "Maker J", + "model": "Model 9355", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.43437348647936, + 21.512052796887016 + ] + }, + "properties": { + "id": "meter-9356", + "maker": "Maker H", + "model": "Model 9356", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4737216125565, + 20.03000478145537 + ] + }, + "properties": { + "id": "meter-9357", + "maker": "Maker B", + "model": "Model 9357", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73265231969372, + 18.40932570921275 + ] + }, + "properties": { + "id": "meter-9358", + "maker": "Maker G", + "model": "Model 9358", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2578011129346, + 21.560214383785997 + ] + }, + "properties": { + "id": "meter-9359", + "maker": "Maker J", + "model": "Model 9359", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.886919504170386, + 24.58339547306128 + ] + }, + "properties": { + "id": "meter-9360", + "maker": "Maker B", + "model": "Model 9360", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.1786126608933, + 21.357013220066083 + ] + }, + "properties": { + "id": "meter-9361", + "maker": "Maker B", + "model": "Model 9361", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24499479371792, + 21.480375332444275 + ] + }, + "properties": { + "id": "meter-9362", + "maker": "Maker H", + "model": "Model 9362", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59763247693986, + 25.34361106575905 + ] + }, + "properties": { + "id": "meter-9363", + "maker": "Maker G", + "model": "Model 9363", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.86552233483046, + 28.3934861877639 + ] + }, + "properties": { + "id": "meter-9364", + "maker": "Maker G", + "model": "Model 9364", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.818295569119456, + 26.4769565529474 + ] + }, + "properties": { + "id": "meter-9365", + "maker": "Maker G", + "model": "Model 9365", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.62147449964447, + 24.551426587736902 + ] + }, + "properties": { + "id": "meter-9366", + "maker": "Maker D", + "model": "Model 9366", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.88476564993919, + 26.266942693419487 + ] + }, + "properties": { + "id": "meter-9367", + "maker": "Maker E", + "model": "Model 9367", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11373857740086, + 26.16681217154383 + ] + }, + "properties": { + "id": "meter-9368", + "maker": "Maker I", + "model": "Model 9368", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.38425165861436, + 17.541425291617905 + ] + }, + "properties": { + "id": "meter-9369", + "maker": "Maker F", + "model": "Model 9369", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.56523912846844, + 24.791643271900245 + ] + }, + "properties": { + "id": "meter-9370", + "maker": "Maker J", + "model": "Model 9370", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.004304001343876, + 26.498069749398898 + ] + }, + "properties": { + "id": "meter-9371", + "maker": "Maker J", + "model": "Model 9371", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.315736141553955, + 24.221157685491807 + ] + }, + "properties": { + "id": "meter-9372", + "maker": "Maker D", + "model": "Model 9372", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.72467124591897, + 27.557300206894556 + ] + }, + "properties": { + "id": "meter-9373", + "maker": "Maker A", + "model": "Model 9373", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98897609189208, + 26.51522045503541 + ] + }, + "properties": { + "id": "meter-9374", + "maker": "Maker H", + "model": "Model 9374", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54099214431053, + 25.569753810225414 + ] + }, + "properties": { + "id": "meter-9375", + "maker": "Maker C", + "model": "Model 9375", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.84953491752636, + 28.487279868024302 + ] + }, + "properties": { + "id": "meter-9376", + "maker": "Maker A", + "model": "Model 9376", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05186443070222, + 24.097512382976017 + ] + }, + "properties": { + "id": "meter-9377", + "maker": "Maker A", + "model": "Model 9377", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.751845286101435, + 21.55245635171827 + ] + }, + "properties": { + "id": "meter-9378", + "maker": "Maker J", + "model": "Model 9378", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11119130589207, + 26.36533893780665 + ] + }, + "properties": { + "id": "meter-9379", + "maker": "Maker C", + "model": "Model 9379", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1850761815512, + 26.267084494209353 + ] + }, + "properties": { + "id": "meter-9380", + "maker": "Maker H", + "model": "Model 9380", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.06812255105237, + 17.460985540262207 + ] + }, + "properties": { + "id": "meter-9381", + "maker": "Maker J", + "model": "Model 9381", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.41211440447323, + 19.92110023411452 + ] + }, + "properties": { + "id": "meter-9382", + "maker": "Maker J", + "model": "Model 9382", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58056904919199, + 25.421382992961014 + ] + }, + "properties": { + "id": "meter-9383", + "maker": "Maker F", + "model": "Model 9383", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.736627349202, + 18.196770998203696 + ] + }, + "properties": { + "id": "meter-9384", + "maker": "Maker F", + "model": "Model 9384", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65274472807246, + 20.000148621761376 + ] + }, + "properties": { + "id": "meter-9385", + "maker": "Maker J", + "model": "Model 9385", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01284430330868, + 26.510385529199276 + ] + }, + "properties": { + "id": "meter-9386", + "maker": "Maker D", + "model": "Model 9386", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03745119018889, + 17.368896561903657 + ] + }, + "properties": { + "id": "meter-9387", + "maker": "Maker B", + "model": "Model 9387", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.18710276216517, + 24.003376751071805 + ] + }, + "properties": { + "id": "meter-9388", + "maker": "Maker F", + "model": "Model 9388", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.56629757390918, + 25.351677209279195 + ] + }, + "properties": { + "id": "meter-9389", + "maker": "Maker F", + "model": "Model 9389", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.595831179203685, + 27.508046354696305 + ] + }, + "properties": { + "id": "meter-9390", + "maker": "Maker A", + "model": "Model 9390", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15882032673281, + 26.320821950872848 + ] + }, + "properties": { + "id": "meter-9391", + "maker": "Maker A", + "model": "Model 9391", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.59477220220331, + 24.53612957260944 + ] + }, + "properties": { + "id": "meter-9392", + "maker": "Maker H", + "model": "Model 9392", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26191567975424, + 21.472870225765305 + ] + }, + "properties": { + "id": "meter-9393", + "maker": "Maker C", + "model": "Model 9393", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.279969407739216, + 21.44272879653176 + ] + }, + "properties": { + "id": "meter-9394", + "maker": "Maker H", + "model": "Model 9394", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.957070827026435, + 26.315715704131314 + ] + }, + "properties": { + "id": "meter-9395", + "maker": "Maker B", + "model": "Model 9395", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09573128173293, + 26.415852974174612 + ] + }, + "properties": { + "id": "meter-9396", + "maker": "Maker D", + "model": "Model 9396", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.45341987886242, + 25.38685071403339 + ] + }, + "properties": { + "id": "meter-9397", + "maker": "Maker J", + "model": "Model 9397", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97834667841514, + 26.33592328079904 + ] + }, + "properties": { + "id": "meter-9398", + "maker": "Maker J", + "model": "Model 9398", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.234906769689324, + 17.671209510431865 + ] + }, + "properties": { + "id": "meter-9399", + "maker": "Maker A", + "model": "Model 9399", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98601513203702, + 17.451123700050342 + ] + }, + "properties": { + "id": "meter-9400", + "maker": "Maker A", + "model": "Model 9400", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.469022672641515, + 28.1358667859516 + ] + }, + "properties": { + "id": "meter-9401", + "maker": "Maker J", + "model": "Model 9401", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02993450560205, + 26.20225388130639 + ] + }, + "properties": { + "id": "meter-9402", + "maker": "Maker C", + "model": "Model 9402", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.80137537509851, + 27.623200289086707 + ] + }, + "properties": { + "id": "meter-9403", + "maker": "Maker B", + "model": "Model 9403", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68032384493999, + 18.413951174029116 + ] + }, + "properties": { + "id": "meter-9404", + "maker": "Maker H", + "model": "Model 9404", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.35081132793231, + 25.19718263117075 + ] + }, + "properties": { + "id": "meter-9405", + "maker": "Maker F", + "model": "Model 9405", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.3975806301209, + 20.016732279205534 + ] + }, + "properties": { + "id": "meter-9406", + "maker": "Maker B", + "model": "Model 9406", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.578067974295145, + 24.50291774718477 + ] + }, + "properties": { + "id": "meter-9407", + "maker": "Maker F", + "model": "Model 9407", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.59447694393809, + 18.252284688889606 + ] + }, + "properties": { + "id": "meter-9408", + "maker": "Maker J", + "model": "Model 9408", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.675792349498295, + 24.617638326990093 + ] + }, + "properties": { + "id": "meter-9409", + "maker": "Maker I", + "model": "Model 9409", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.19719925526061, + 24.311575128893494 + ] + }, + "properties": { + "id": "meter-9410", + "maker": "Maker J", + "model": "Model 9410", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.591875099012704, + 25.52526103525172 + ] + }, + "properties": { + "id": "meter-9411", + "maker": "Maker C", + "model": "Model 9411", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.82510448467891, + 24.4679818336158 + ] + }, + "properties": { + "id": "meter-9412", + "maker": "Maker B", + "model": "Model 9412", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.05659442182862, + 26.059055854190778 + ] + }, + "properties": { + "id": "meter-9413", + "maker": "Maker A", + "model": "Model 9413", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48743104604302, + 20.00418945921786 + ] + }, + "properties": { + "id": "meter-9414", + "maker": "Maker I", + "model": "Model 9414", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21910388305167, + 21.49308326916731 + ] + }, + "properties": { + "id": "meter-9415", + "maker": "Maker C", + "model": "Model 9415", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.7625840950308, + 24.6987130298384 + ] + }, + "properties": { + "id": "meter-9416", + "maker": "Maker H", + "model": "Model 9416", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.92436688437657, + 21.339663130558773 + ] + }, + "properties": { + "id": "meter-9417", + "maker": "Maker H", + "model": "Model 9417", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26859208458441, + 21.49732678750556 + ] + }, + "properties": { + "id": "meter-9418", + "maker": "Maker I", + "model": "Model 9418", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.210784906619516, + 23.974119346183862 + ] + }, + "properties": { + "id": "meter-9419", + "maker": "Maker I", + "model": "Model 9419", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.516837140471196, + 21.501178771218807 + ] + }, + "properties": { + "id": "meter-9420", + "maker": "Maker I", + "model": "Model 9420", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.64690027858743, + 25.336037343382003 + ] + }, + "properties": { + "id": "meter-9421", + "maker": "Maker G", + "model": "Model 9421", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.66858933871034, + 20.125239041003635 + ] + }, + "properties": { + "id": "meter-9422", + "maker": "Maker G", + "model": "Model 9422", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.938994592311126, + 26.330998507174183 + ] + }, + "properties": { + "id": "meter-9423", + "maker": "Maker F", + "model": "Model 9423", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02795455106558, + 26.291094140866083 + ] + }, + "properties": { + "id": "meter-9424", + "maker": "Maker E", + "model": "Model 9424", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.6970625677571, + 26.326424180398515 + ] + }, + "properties": { + "id": "meter-9425", + "maker": "Maker A", + "model": "Model 9425", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.601409325856395, + 28.37088069784552 + ] + }, + "properties": { + "id": "meter-9426", + "maker": "Maker I", + "model": "Model 9426", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.51558488525591, + 24.30743912504028 + ] + }, + "properties": { + "id": "meter-9427", + "maker": "Maker A", + "model": "Model 9427", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.5486773093107, + 24.483501248489354 + ] + }, + "properties": { + "id": "meter-9428", + "maker": "Maker A", + "model": "Model 9428", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.035664533525726, + 26.208924488637297 + ] + }, + "properties": { + "id": "meter-9429", + "maker": "Maker A", + "model": "Model 9429", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2349957864453, + 21.486152841624524 + ] + }, + "properties": { + "id": "meter-9430", + "maker": "Maker J", + "model": "Model 9430", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.735878198616305, + 25.311392726945382 + ] + }, + "properties": { + "id": "meter-9431", + "maker": "Maker H", + "model": "Model 9431", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13892902399022, + 26.405833501127976 + ] + }, + "properties": { + "id": "meter-9432", + "maker": "Maker C", + "model": "Model 9432", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.81972388887309, + 31.088871351499005 + ] + }, + "properties": { + "id": "meter-9433", + "maker": "Maker B", + "model": "Model 9433", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.440622940093434, + 19.92123769331229 + ] + }, + "properties": { + "id": "meter-9434", + "maker": "Maker E", + "model": "Model 9434", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98827826819555, + 26.328890966486846 + ] + }, + "properties": { + "id": "meter-9435", + "maker": "Maker H", + "model": "Model 9435", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.79602488833731, + 26.503684874691483 + ] + }, + "properties": { + "id": "meter-9436", + "maker": "Maker A", + "model": "Model 9436", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.114622384429204, + 31.238265936441543 + ] + }, + "properties": { + "id": "meter-9437", + "maker": "Maker C", + "model": "Model 9437", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.97425107587602, + 31.057349858807953 + ] + }, + "properties": { + "id": "meter-9438", + "maker": "Maker H", + "model": "Model 9438", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.717099236954304, + 27.54039799908493 + ] + }, + "properties": { + "id": "meter-9439", + "maker": "Maker I", + "model": "Model 9439", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.038761402421294, + 26.384451735902207 + ] + }, + "properties": { + "id": "meter-9440", + "maker": "Maker F", + "model": "Model 9440", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.59120033010557, + 18.22253085012754 + ] + }, + "properties": { + "id": "meter-9441", + "maker": "Maker I", + "model": "Model 9441", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.93175143412245, + 26.275883915125256 + ] + }, + "properties": { + "id": "meter-9442", + "maker": "Maker A", + "model": "Model 9442", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.999933979380216, + 26.435827881200932 + ] + }, + "properties": { + "id": "meter-9443", + "maker": "Maker J", + "model": "Model 9443", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47916285286369, + 20.016418475144192 + ] + }, + "properties": { + "id": "meter-9444", + "maker": "Maker D", + "model": "Model 9444", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.17687796051801, + 24.007404918642692 + ] + }, + "properties": { + "id": "meter-9445", + "maker": "Maker E", + "model": "Model 9445", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.81528796183558, + 26.344946382491234 + ] + }, + "properties": { + "id": "meter-9446", + "maker": "Maker B", + "model": "Model 9446", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.537753546269556, + 28.4188275898193 + ] + }, + "properties": { + "id": "meter-9447", + "maker": "Maker G", + "model": "Model 9447", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.852137445662656, + 24.832200880858707 + ] + }, + "properties": { + "id": "meter-9448", + "maker": "Maker H", + "model": "Model 9448", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.4599361254165, + 29.89765343098062 + ] + }, + "properties": { + "id": "meter-9449", + "maker": "Maker B", + "model": "Model 9449", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.603805871872716, + 18.279590314690058 + ] + }, + "properties": { + "id": "meter-9450", + "maker": "Maker C", + "model": "Model 9450", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49231031957861, + 18.103752519786312 + ] + }, + "properties": { + "id": "meter-9451", + "maker": "Maker E", + "model": "Model 9451", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.31763382232664, + 30.1473330363699 + ] + }, + "properties": { + "id": "meter-9452", + "maker": "Maker A", + "model": "Model 9452", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96940461643178, + 26.522797204211276 + ] + }, + "properties": { + "id": "meter-9453", + "maker": "Maker B", + "model": "Model 9453", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.29986640733274, + 18.21935265004164 + ] + }, + "properties": { + "id": "meter-9454", + "maker": "Maker E", + "model": "Model 9454", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03691511231576, + 30.977441356973102 + ] + }, + "properties": { + "id": "meter-9455", + "maker": "Maker C", + "model": "Model 9455", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.84916483372002, + 30.7928173100736 + ] + }, + "properties": { + "id": "meter-9456", + "maker": "Maker E", + "model": "Model 9456", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.1258333901167, + 29.905617484947467 + ] + }, + "properties": { + "id": "meter-9457", + "maker": "Maker A", + "model": "Model 9457", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23550563767302, + 29.90025311315178 + ] + }, + "properties": { + "id": "meter-9458", + "maker": "Maker G", + "model": "Model 9458", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.798939259282974, + 21.530486800526834 + ] + }, + "properties": { + "id": "meter-9459", + "maker": "Maker A", + "model": "Model 9459", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.660800151979245, + 21.257742480944724 + ] + }, + "properties": { + "id": "meter-9460", + "maker": "Maker J", + "model": "Model 9460", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.22116451071548, + 29.938845410008387 + ] + }, + "properties": { + "id": "meter-9461", + "maker": "Maker D", + "model": "Model 9461", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.85180777755119, + 26.5685983461863 + ] + }, + "properties": { + "id": "meter-9462", + "maker": "Maker A", + "model": "Model 9462", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6618711081112, + 27.530916058992727 + ] + }, + "properties": { + "id": "meter-9463", + "maker": "Maker H", + "model": "Model 9463", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13750606785449, + 17.584975976111078 + ] + }, + "properties": { + "id": "meter-9464", + "maker": "Maker F", + "model": "Model 9464", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.785603943151344, + 24.687474720255715 + ] + }, + "properties": { + "id": "meter-9465", + "maker": "Maker C", + "model": "Model 9465", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.833965478906904, + 21.391251134266074 + ] + }, + "properties": { + "id": "meter-9466", + "maker": "Maker G", + "model": "Model 9466", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.059197091312846, + 17.52064726299984 + ] + }, + "properties": { + "id": "meter-9467", + "maker": "Maker C", + "model": "Model 9467", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.428137864740535, + 24.402637661795957 + ] + }, + "properties": { + "id": "meter-9468", + "maker": "Maker D", + "model": "Model 9468", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00371174300132, + 17.564985038037292 + ] + }, + "properties": { + "id": "meter-9469", + "maker": "Maker C", + "model": "Model 9469", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20417799465253, + 30.19915837905155 + ] + }, + "properties": { + "id": "meter-9470", + "maker": "Maker J", + "model": "Model 9470", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14360176231201, + 26.358989495453777 + ] + }, + "properties": { + "id": "meter-9471", + "maker": "Maker E", + "model": "Model 9471", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.677191117633555, + 24.452859578357693 + ] + }, + "properties": { + "id": "meter-9472", + "maker": "Maker B", + "model": "Model 9472", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.81494159175278, + 30.847640157481738 + ] + }, + "properties": { + "id": "meter-9473", + "maker": "Maker C", + "model": "Model 9473", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50369622690689, + 18.218988407982522 + ] + }, + "properties": { + "id": "meter-9474", + "maker": "Maker J", + "model": "Model 9474", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66337117755101, + 18.47069583623672 + ] + }, + "properties": { + "id": "meter-9475", + "maker": "Maker G", + "model": "Model 9475", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09905673769772, + 26.4175907867832 + ] + }, + "properties": { + "id": "meter-9476", + "maker": "Maker J", + "model": "Model 9476", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.213853356544874, + 30.827708950494674 + ] + }, + "properties": { + "id": "meter-9477", + "maker": "Maker F", + "model": "Model 9477", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.90366895047341, + 24.25902443747195 + ] + }, + "properties": { + "id": "meter-9478", + "maker": "Maker H", + "model": "Model 9478", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.420613880251715, + 21.49255488737007 + ] + }, + "properties": { + "id": "meter-9479", + "maker": "Maker J", + "model": "Model 9479", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58891499753154, + 25.35287281559197 + ] + }, + "properties": { + "id": "meter-9480", + "maker": "Maker D", + "model": "Model 9480", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.313383069225154, + 28.467529530729962 + ] + }, + "properties": { + "id": "meter-9481", + "maker": "Maker G", + "model": "Model 9481", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.62461108140226, + 24.534533221625743 + ] + }, + "properties": { + "id": "meter-9482", + "maker": "Maker I", + "model": "Model 9482", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25369471412157, + 21.483219429571335 + ] + }, + "properties": { + "id": "meter-9483", + "maker": "Maker C", + "model": "Model 9483", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.56249139554083, + 27.351122603931703 + ] + }, + "properties": { + "id": "meter-9484", + "maker": "Maker J", + "model": "Model 9484", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.724547267780125, + 24.700594229632234 + ] + }, + "properties": { + "id": "meter-9485", + "maker": "Maker A", + "model": "Model 9485", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13495556129694, + 26.26721790667761 + ] + }, + "properties": { + "id": "meter-9486", + "maker": "Maker G", + "model": "Model 9486", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.60689080966117, + 28.38976387041185 + ] + }, + "properties": { + "id": "meter-9487", + "maker": "Maker C", + "model": "Model 9487", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.521024269194996, + 25.546582108242372 + ] + }, + "properties": { + "id": "meter-9488", + "maker": "Maker F", + "model": "Model 9488", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.762536299016254, + 20.024693863822858 + ] + }, + "properties": { + "id": "meter-9489", + "maker": "Maker D", + "model": "Model 9489", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.670224190747675, + 18.1773246926183 + ] + }, + "properties": { + "id": "meter-9490", + "maker": "Maker B", + "model": "Model 9490", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.60920823714861, + 18.41380873081381 + ] + }, + "properties": { + "id": "meter-9491", + "maker": "Maker B", + "model": "Model 9491", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.2116683428648, + 26.23075545182948 + ] + }, + "properties": { + "id": "meter-9492", + "maker": "Maker D", + "model": "Model 9492", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.104190399027665, + 29.975447967989695 + ] + }, + "properties": { + "id": "meter-9493", + "maker": "Maker H", + "model": "Model 9493", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08085431448285, + 26.330859915394857 + ] + }, + "properties": { + "id": "meter-9494", + "maker": "Maker H", + "model": "Model 9494", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.369055727773976, + 21.379020861514032 + ] + }, + "properties": { + "id": "meter-9495", + "maker": "Maker I", + "model": "Model 9495", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.736799292124026, + 24.59356010747132 + ] + }, + "properties": { + "id": "meter-9496", + "maker": "Maker I", + "model": "Model 9496", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.4390660942053, + 18.42609462795097 + ] + }, + "properties": { + "id": "meter-9497", + "maker": "Maker H", + "model": "Model 9497", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21206958347352, + 21.388130448474616 + ] + }, + "properties": { + "id": "meter-9498", + "maker": "Maker H", + "model": "Model 9498", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17132093317061, + 26.23964659862831 + ] + }, + "properties": { + "id": "meter-9499", + "maker": "Maker H", + "model": "Model 9499", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.56986201830528, + 18.145521958051205 + ] + }, + "properties": { + "id": "meter-9500", + "maker": "Maker D", + "model": "Model 9500", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.43636770298838, + 19.899230210811364 + ] + }, + "properties": { + "id": "meter-9501", + "maker": "Maker F", + "model": "Model 9501", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.46282625350907, + 18.325310795451518 + ] + }, + "properties": { + "id": "meter-9502", + "maker": "Maker H", + "model": "Model 9502", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.211616433309686, + 17.50565046739904 + ] + }, + "properties": { + "id": "meter-9503", + "maker": "Maker A", + "model": "Model 9503", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.84333104687377, + 26.369900211354825 + ] + }, + "properties": { + "id": "meter-9504", + "maker": "Maker G", + "model": "Model 9504", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.85155453412539, + 24.228654359591694 + ] + }, + "properties": { + "id": "meter-9505", + "maker": "Maker B", + "model": "Model 9505", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0802767384399, + 26.429749434853676 + ] + }, + "properties": { + "id": "meter-9506", + "maker": "Maker C", + "model": "Model 9506", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.70090278822453, + 25.315733772353372 + ] + }, + "properties": { + "id": "meter-9507", + "maker": "Maker E", + "model": "Model 9507", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.512381160744646, + 20.26761699546677 + ] + }, + "properties": { + "id": "meter-9508", + "maker": "Maker D", + "model": "Model 9508", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55080422402504, + 27.591753959183613 + ] + }, + "properties": { + "id": "meter-9509", + "maker": "Maker C", + "model": "Model 9509", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62980908598367, + 20.01771432528765 + ] + }, + "properties": { + "id": "meter-9510", + "maker": "Maker E", + "model": "Model 9510", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.113894359680195, + 17.740882904394432 + ] + }, + "properties": { + "id": "meter-9511", + "maker": "Maker J", + "model": "Model 9511", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.63186253612878, + 18.259420748383214 + ] + }, + "properties": { + "id": "meter-9512", + "maker": "Maker E", + "model": "Model 9512", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1725517689833, + 26.18803773478059 + ] + }, + "properties": { + "id": "meter-9513", + "maker": "Maker G", + "model": "Model 9513", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.16081691466834, + 24.07111681586866 + ] + }, + "properties": { + "id": "meter-9514", + "maker": "Maker H", + "model": "Model 9514", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.334433054635504, + 24.113281439078225 + ] + }, + "properties": { + "id": "meter-9515", + "maker": "Maker E", + "model": "Model 9515", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97030777872325, + 26.478736816419644 + ] + }, + "properties": { + "id": "meter-9516", + "maker": "Maker B", + "model": "Model 9516", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.87981699332223, + 24.62657493821287 + ] + }, + "properties": { + "id": "meter-9517", + "maker": "Maker F", + "model": "Model 9517", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.60434762527362, + 27.666309756527838 + ] + }, + "properties": { + "id": "meter-9518", + "maker": "Maker F", + "model": "Model 9518", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.47719098002654, + 21.342943648480542 + ] + }, + "properties": { + "id": "meter-9519", + "maker": "Maker C", + "model": "Model 9519", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.28911423481569, + 19.979207987715554 + ] + }, + "properties": { + "id": "meter-9520", + "maker": "Maker B", + "model": "Model 9520", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.47200080003065, + 18.271370024387064 + ] + }, + "properties": { + "id": "meter-9521", + "maker": "Maker G", + "model": "Model 9521", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.55605162063927, + 24.63193759449128 + ] + }, + "properties": { + "id": "meter-9522", + "maker": "Maker A", + "model": "Model 9522", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.121652086991205, + 26.369893383305982 + ] + }, + "properties": { + "id": "meter-9523", + "maker": "Maker D", + "model": "Model 9523", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0673212964223, + 24.083569626238685 + ] + }, + "properties": { + "id": "meter-9524", + "maker": "Maker A", + "model": "Model 9524", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.673920581456635, + 27.53462578447033 + ] + }, + "properties": { + "id": "meter-9525", + "maker": "Maker J", + "model": "Model 9525", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.65623769853198, + 24.700616313991876 + ] + }, + "properties": { + "id": "meter-9526", + "maker": "Maker F", + "model": "Model 9526", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.34333638928415, + 21.373906520522013 + ] + }, + "properties": { + "id": "meter-9527", + "maker": "Maker F", + "model": "Model 9527", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.197717091611366, + 26.27738777880369 + ] + }, + "properties": { + "id": "meter-9528", + "maker": "Maker G", + "model": "Model 9528", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.82919778127069, + 18.45690708119413 + ] + }, + "properties": { + "id": "meter-9529", + "maker": "Maker H", + "model": "Model 9529", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.31546392346927, + 20.228637156730198 + ] + }, + "properties": { + "id": "meter-9530", + "maker": "Maker G", + "model": "Model 9530", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.074861075365774, + 24.096626000662393 + ] + }, + "properties": { + "id": "meter-9531", + "maker": "Maker F", + "model": "Model 9531", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.67588703843059, + 18.13167464342194 + ] + }, + "properties": { + "id": "meter-9532", + "maker": "Maker E", + "model": "Model 9532", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.57065751347085, + 18.069510354564745 + ] + }, + "properties": { + "id": "meter-9533", + "maker": "Maker F", + "model": "Model 9533", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.14569873045402, + 21.715316288168346 + ] + }, + "properties": { + "id": "meter-9534", + "maker": "Maker A", + "model": "Model 9534", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98050396795003, + 26.531306706083335 + ] + }, + "properties": { + "id": "meter-9535", + "maker": "Maker A", + "model": "Model 9535", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10174246847382, + 26.419519800914074 + ] + }, + "properties": { + "id": "meter-9536", + "maker": "Maker A", + "model": "Model 9536", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.602204585250696, + 25.46580373898965 + ] + }, + "properties": { + "id": "meter-9537", + "maker": "Maker A", + "model": "Model 9537", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.54019681371262, + 18.455990420350435 + ] + }, + "properties": { + "id": "meter-9538", + "maker": "Maker F", + "model": "Model 9538", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.605223534036924, + 18.400577284192916 + ] + }, + "properties": { + "id": "meter-9539", + "maker": "Maker H", + "model": "Model 9539", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.32032390183053, + 21.341246910613595 + ] + }, + "properties": { + "id": "meter-9540", + "maker": "Maker F", + "model": "Model 9540", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.66053323849396, + 21.485719527059224 + ] + }, + "properties": { + "id": "meter-9541", + "maker": "Maker D", + "model": "Model 9541", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.52862702680375, + 25.273532551491087 + ] + }, + "properties": { + "id": "meter-9542", + "maker": "Maker I", + "model": "Model 9542", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.71650463614358, + 24.759305798750457 + ] + }, + "properties": { + "id": "meter-9543", + "maker": "Maker C", + "model": "Model 9543", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.66427706322809, + 25.089755250615635 + ] + }, + "properties": { + "id": "meter-9544", + "maker": "Maker D", + "model": "Model 9544", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.884041595977024, + 24.230714504255197 + ] + }, + "properties": { + "id": "meter-9545", + "maker": "Maker H", + "model": "Model 9545", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.39428447982461, + 19.990181002528384 + ] + }, + "properties": { + "id": "meter-9546", + "maker": "Maker H", + "model": "Model 9546", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.16326718450737, + 29.873076124300866 + ] + }, + "properties": { + "id": "meter-9547", + "maker": "Maker I", + "model": "Model 9547", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.58644984518408, + 20.172359438590515 + ] + }, + "properties": { + "id": "meter-9548", + "maker": "Maker H", + "model": "Model 9548", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.64578088057431, + 18.53690382115321 + ] + }, + "properties": { + "id": "meter-9549", + "maker": "Maker B", + "model": "Model 9549", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.75213706315433, + 28.279800351162194 + ] + }, + "properties": { + "id": "meter-9550", + "maker": "Maker C", + "model": "Model 9550", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.75170930203782, + 18.29336863573463 + ] + }, + "properties": { + "id": "meter-9551", + "maker": "Maker C", + "model": "Model 9551", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.232879412747906, + 21.483125256592903 + ] + }, + "properties": { + "id": "meter-9552", + "maker": "Maker J", + "model": "Model 9552", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.19510932924627, + 29.982380634222533 + ] + }, + "properties": { + "id": "meter-9553", + "maker": "Maker B", + "model": "Model 9553", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97383617483174, + 26.184185300526018 + ] + }, + "properties": { + "id": "meter-9554", + "maker": "Maker B", + "model": "Model 9554", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.63803647028019, + 18.257086004215047 + ] + }, + "properties": { + "id": "meter-9555", + "maker": "Maker A", + "model": "Model 9555", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08233741483112, + 26.189838581856502 + ] + }, + "properties": { + "id": "meter-9556", + "maker": "Maker F", + "model": "Model 9556", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.10129958554525, + 24.101680180551668 + ] + }, + "properties": { + "id": "meter-9557", + "maker": "Maker A", + "model": "Model 9557", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96769223862859, + 26.29984998398486 + ] + }, + "properties": { + "id": "meter-9558", + "maker": "Maker A", + "model": "Model 9558", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0999420441771, + 24.3614487037244 + ] + }, + "properties": { + "id": "meter-9559", + "maker": "Maker I", + "model": "Model 9559", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14996145942954, + 26.323514541568713 + ] + }, + "properties": { + "id": "meter-9560", + "maker": "Maker B", + "model": "Model 9560", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.466760235842024, + 21.410515521531295 + ] + }, + "properties": { + "id": "meter-9561", + "maker": "Maker D", + "model": "Model 9561", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.73374741556219, + 27.397826239475116 + ] + }, + "properties": { + "id": "meter-9562", + "maker": "Maker H", + "model": "Model 9562", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.036098560962095, + 30.01471374125492 + ] + }, + "properties": { + "id": "meter-9563", + "maker": "Maker D", + "model": "Model 9563", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.72648927507672, + 24.75227140633488 + ] + }, + "properties": { + "id": "meter-9564", + "maker": "Maker F", + "model": "Model 9564", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11205504092001, + 26.220743962771536 + ] + }, + "properties": { + "id": "meter-9565", + "maker": "Maker E", + "model": "Model 9565", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.2280138099035, + 18.323872794454495 + ] + }, + "properties": { + "id": "meter-9566", + "maker": "Maker E", + "model": "Model 9566", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.953456488218116, + 30.085293567588277 + ] + }, + "properties": { + "id": "meter-9567", + "maker": "Maker A", + "model": "Model 9567", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.867083024405694, + 28.41837279643567 + ] + }, + "properties": { + "id": "meter-9568", + "maker": "Maker H", + "model": "Model 9568", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9588852246255, + 26.43788146802865 + ] + }, + "properties": { + "id": "meter-9569", + "maker": "Maker C", + "model": "Model 9569", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.27494750780981, + 18.34329949114659 + ] + }, + "properties": { + "id": "meter-9570", + "maker": "Maker A", + "model": "Model 9570", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96923665992402, + 17.499233487304434 + ] + }, + "properties": { + "id": "meter-9571", + "maker": "Maker D", + "model": "Model 9571", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.04687831500146, + 26.350852837719682 + ] + }, + "properties": { + "id": "meter-9572", + "maker": "Maker H", + "model": "Model 9572", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.27595492602927, + 30.00767307857012 + ] + }, + "properties": { + "id": "meter-9573", + "maker": "Maker C", + "model": "Model 9573", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.58834962677633, + 28.350509588111233 + ] + }, + "properties": { + "id": "meter-9574", + "maker": "Maker J", + "model": "Model 9574", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77898388032403, + 21.157309239443048 + ] + }, + "properties": { + "id": "meter-9575", + "maker": "Maker E", + "model": "Model 9575", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.18717438391242, + 29.975513774848963 + ] + }, + "properties": { + "id": "meter-9576", + "maker": "Maker J", + "model": "Model 9576", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.26927850137622, + 23.946473375227647 + ] + }, + "properties": { + "id": "meter-9577", + "maker": "Maker J", + "model": "Model 9577", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.589566721583786, + 28.336304853100955 + ] + }, + "properties": { + "id": "meter-9578", + "maker": "Maker B", + "model": "Model 9578", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.057801225315636, + 17.50759846249297 + ] + }, + "properties": { + "id": "meter-9579", + "maker": "Maker A", + "model": "Model 9579", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.469002092747445, + 24.421444782866285 + ] + }, + "properties": { + "id": "meter-9580", + "maker": "Maker C", + "model": "Model 9580", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70834204924565, + 27.569585334005094 + ] + }, + "properties": { + "id": "meter-9581", + "maker": "Maker G", + "model": "Model 9581", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.834299195215216, + 18.362775077591593 + ] + }, + "properties": { + "id": "meter-9582", + "maker": "Maker C", + "model": "Model 9582", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.480597864291305, + 28.45223535483723 + ] + }, + "properties": { + "id": "meter-9583", + "maker": "Maker G", + "model": "Model 9583", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.09026339007317, + 30.919866455612347 + ] + }, + "properties": { + "id": "meter-9584", + "maker": "Maker G", + "model": "Model 9584", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48142645298482, + 19.81248135194312 + ] + }, + "properties": { + "id": "meter-9585", + "maker": "Maker I", + "model": "Model 9585", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.08894224237913, + 24.09885872818097 + ] + }, + "properties": { + "id": "meter-9586", + "maker": "Maker H", + "model": "Model 9586", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.485100641781685, + 25.504058975381167 + ] + }, + "properties": { + "id": "meter-9587", + "maker": "Maker C", + "model": "Model 9587", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.92294970721282, + 24.317678057334163 + ] + }, + "properties": { + "id": "meter-9588", + "maker": "Maker D", + "model": "Model 9588", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99677051101735, + 26.556730078517734 + ] + }, + "properties": { + "id": "meter-9589", + "maker": "Maker J", + "model": "Model 9589", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.913040293979684, + 26.56999393131922 + ] + }, + "properties": { + "id": "meter-9590", + "maker": "Maker C", + "model": "Model 9590", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.55962267120595, + 24.529831400765605 + ] + }, + "properties": { + "id": "meter-9591", + "maker": "Maker J", + "model": "Model 9591", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.71618173768981, + 24.339965838652457 + ] + }, + "properties": { + "id": "meter-9592", + "maker": "Maker H", + "model": "Model 9592", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.33381966233955, + 25.30426312272046 + ] + }, + "properties": { + "id": "meter-9593", + "maker": "Maker I", + "model": "Model 9593", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0618673805216, + 26.245837603745205 + ] + }, + "properties": { + "id": "meter-9594", + "maker": "Maker D", + "model": "Model 9594", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.731983471070116, + 21.1329858856097 + ] + }, + "properties": { + "id": "meter-9595", + "maker": "Maker B", + "model": "Model 9595", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.94505705029191, + 27.570863521282202 + ] + }, + "properties": { + "id": "meter-9596", + "maker": "Maker F", + "model": "Model 9596", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.207865879490654, + 21.2141329007751 + ] + }, + "properties": { + "id": "meter-9597", + "maker": "Maker B", + "model": "Model 9597", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.574736094833625, + 24.69284067043027 + ] + }, + "properties": { + "id": "meter-9598", + "maker": "Maker G", + "model": "Model 9598", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.65487149753305, + 28.244769082276985 + ] + }, + "properties": { + "id": "meter-9599", + "maker": "Maker A", + "model": "Model 9599", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95286977894469, + 26.437764425059672 + ] + }, + "properties": { + "id": "meter-9600", + "maker": "Maker J", + "model": "Model 9600", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.00757037267677, + 18.332085445754107 + ] + }, + "properties": { + "id": "meter-9601", + "maker": "Maker H", + "model": "Model 9601", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.392944532995934, + 27.512379159926482 + ] + }, + "properties": { + "id": "meter-9602", + "maker": "Maker H", + "model": "Model 9602", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66817657909026, + 18.270261301781872 + ] + }, + "properties": { + "id": "meter-9603", + "maker": "Maker C", + "model": "Model 9603", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.01354219963571, + 24.09782443616033 + ] + }, + "properties": { + "id": "meter-9604", + "maker": "Maker A", + "model": "Model 9604", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.34715906126433, + 28.52949067378726 + ] + }, + "properties": { + "id": "meter-9605", + "maker": "Maker E", + "model": "Model 9605", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.78597025208469, + 27.67270812494209 + ] + }, + "properties": { + "id": "meter-9606", + "maker": "Maker F", + "model": "Model 9606", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12039893315157, + 26.28022812984816 + ] + }, + "properties": { + "id": "meter-9607", + "maker": "Maker B", + "model": "Model 9607", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.95656435391874, + 26.286397729788703 + ] + }, + "properties": { + "id": "meter-9608", + "maker": "Maker G", + "model": "Model 9608", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.97898434341182, + 24.3396880115041 + ] + }, + "properties": { + "id": "meter-9609", + "maker": "Maker J", + "model": "Model 9609", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14766040615126, + 26.1082406897355 + ] + }, + "properties": { + "id": "meter-9610", + "maker": "Maker A", + "model": "Model 9610", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.56659500899954, + 20.07023275500691 + ] + }, + "properties": { + "id": "meter-9611", + "maker": "Maker E", + "model": "Model 9611", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.37778042155607, + 20.00066723801304 + ] + }, + "properties": { + "id": "meter-9612", + "maker": "Maker E", + "model": "Model 9612", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99703883781589, + 26.4810197806358 + ] + }, + "properties": { + "id": "meter-9613", + "maker": "Maker C", + "model": "Model 9613", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.63329758340867, + 24.464267720150097 + ] + }, + "properties": { + "id": "meter-9614", + "maker": "Maker D", + "model": "Model 9614", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.426898945167174, + 28.275798450093234 + ] + }, + "properties": { + "id": "meter-9615", + "maker": "Maker B", + "model": "Model 9615", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.173890048100766, + 26.392941015808155 + ] + }, + "properties": { + "id": "meter-9616", + "maker": "Maker F", + "model": "Model 9616", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92471009524686, + 26.288312977828014 + ] + }, + "properties": { + "id": "meter-9617", + "maker": "Maker D", + "model": "Model 9617", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.126013596607855, + 30.825400448054744 + ] + }, + "properties": { + "id": "meter-9618", + "maker": "Maker F", + "model": "Model 9618", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.871890071359495, + 21.437532949730592 + ] + }, + "properties": { + "id": "meter-9619", + "maker": "Maker G", + "model": "Model 9619", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61859386724419, + 24.78987923491977 + ] + }, + "properties": { + "id": "meter-9620", + "maker": "Maker J", + "model": "Model 9620", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.278025322954015, + 29.982616407755817 + ] + }, + "properties": { + "id": "meter-9621", + "maker": "Maker H", + "model": "Model 9621", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.697024037511234, + 24.905790952522352 + ] + }, + "properties": { + "id": "meter-9622", + "maker": "Maker B", + "model": "Model 9622", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.2398178486638, + 30.106577212909187 + ] + }, + "properties": { + "id": "meter-9623", + "maker": "Maker F", + "model": "Model 9623", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.557738078161215, + 25.320683987497464 + ] + }, + "properties": { + "id": "meter-9624", + "maker": "Maker A", + "model": "Model 9624", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45438824715245, + 20.016243551943777 + ] + }, + "properties": { + "id": "meter-9625", + "maker": "Maker J", + "model": "Model 9625", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00978623228032, + 26.40307689070134 + ] + }, + "properties": { + "id": "meter-9626", + "maker": "Maker A", + "model": "Model 9626", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.54776142269278, + 24.610552942813115 + ] + }, + "properties": { + "id": "meter-9627", + "maker": "Maker I", + "model": "Model 9627", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.952573066170615, + 27.453600199025793 + ] + }, + "properties": { + "id": "meter-9628", + "maker": "Maker D", + "model": "Model 9628", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.032714366482274, + 30.96489359221288 + ] + }, + "properties": { + "id": "meter-9629", + "maker": "Maker D", + "model": "Model 9629", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49502270856516, + 18.11625454947849 + ] + }, + "properties": { + "id": "meter-9630", + "maker": "Maker B", + "model": "Model 9630", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.028642006125715, + 21.601018036206014 + ] + }, + "properties": { + "id": "meter-9631", + "maker": "Maker D", + "model": "Model 9631", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73969671075108, + 18.22270439002918 + ] + }, + "properties": { + "id": "meter-9632", + "maker": "Maker F", + "model": "Model 9632", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.70214596471555, + 18.321367379194946 + ] + }, + "properties": { + "id": "meter-9633", + "maker": "Maker B", + "model": "Model 9633", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.869931649623865, + 24.50076707011772 + ] + }, + "properties": { + "id": "meter-9634", + "maker": "Maker F", + "model": "Model 9634", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.607395787545165, + 28.21447986031593 + ] + }, + "properties": { + "id": "meter-9635", + "maker": "Maker I", + "model": "Model 9635", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.13293631133901, + 29.71232908575077 + ] + }, + "properties": { + "id": "meter-9636", + "maker": "Maker I", + "model": "Model 9636", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.84994198151653, + 30.907823175072114 + ] + }, + "properties": { + "id": "meter-9637", + "maker": "Maker G", + "model": "Model 9637", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.466963340843044, + 19.972682226583547 + ] + }, + "properties": { + "id": "meter-9638", + "maker": "Maker J", + "model": "Model 9638", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.74982310141765, + 24.4732207459643 + ] + }, + "properties": { + "id": "meter-9639", + "maker": "Maker C", + "model": "Model 9639", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.656514347230136, + 25.34399456846562 + ] + }, + "properties": { + "id": "meter-9640", + "maker": "Maker D", + "model": "Model 9640", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.795535357858796, + 27.309827957167126 + ] + }, + "properties": { + "id": "meter-9641", + "maker": "Maker E", + "model": "Model 9641", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89519538881817, + 21.397391117940725 + ] + }, + "properties": { + "id": "meter-9642", + "maker": "Maker D", + "model": "Model 9642", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21870432230144, + 21.512366067293883 + ] + }, + "properties": { + "id": "meter-9643", + "maker": "Maker C", + "model": "Model 9643", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.18822586009063, + 17.525184957279567 + ] + }, + "properties": { + "id": "meter-9644", + "maker": "Maker C", + "model": "Model 9644", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.99574292744268, + 21.514999110022558 + ] + }, + "properties": { + "id": "meter-9645", + "maker": "Maker H", + "model": "Model 9645", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.18174013590332, + 29.82341068993459 + ] + }, + "properties": { + "id": "meter-9646", + "maker": "Maker H", + "model": "Model 9646", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.95713484715668, + 26.033143138226883 + ] + }, + "properties": { + "id": "meter-9647", + "maker": "Maker I", + "model": "Model 9647", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.16648718710546, + 30.856816728198613 + ] + }, + "properties": { + "id": "meter-9648", + "maker": "Maker D", + "model": "Model 9648", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.54510850860474, + 18.289430374777393 + ] + }, + "properties": { + "id": "meter-9649", + "maker": "Maker B", + "model": "Model 9649", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.7837569125607, + 18.207792247997034 + ] + }, + "properties": { + "id": "meter-9650", + "maker": "Maker J", + "model": "Model 9650", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.95381384328242, + 30.746650245367828 + ] + }, + "properties": { + "id": "meter-9651", + "maker": "Maker I", + "model": "Model 9651", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.171050500466364, + 21.28612471260091 + ] + }, + "properties": { + "id": "meter-9652", + "maker": "Maker C", + "model": "Model 9652", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.932207799988426, + 26.581933561349636 + ] + }, + "properties": { + "id": "meter-9653", + "maker": "Maker E", + "model": "Model 9653", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.68012880222842, + 25.41981764200549 + ] + }, + "properties": { + "id": "meter-9654", + "maker": "Maker E", + "model": "Model 9654", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.597171104775896, + 24.383946539801382 + ] + }, + "properties": { + "id": "meter-9655", + "maker": "Maker E", + "model": "Model 9655", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.009306021478274, + 26.50612069650473 + ] + }, + "properties": { + "id": "meter-9656", + "maker": "Maker F", + "model": "Model 9656", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.99671189082956, + 18.339303488969772 + ] + }, + "properties": { + "id": "meter-9657", + "maker": "Maker A", + "model": "Model 9657", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.68754789941786, + 24.43490407838123 + ] + }, + "properties": { + "id": "meter-9658", + "maker": "Maker G", + "model": "Model 9658", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.22319645425771, + 21.532713830240233 + ] + }, + "properties": { + "id": "meter-9659", + "maker": "Maker J", + "model": "Model 9659", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.80753225995873, + 26.447649306484653 + ] + }, + "properties": { + "id": "meter-9660", + "maker": "Maker D", + "model": "Model 9660", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86159586642675, + 21.12928727857443 + ] + }, + "properties": { + "id": "meter-9661", + "maker": "Maker A", + "model": "Model 9661", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07989730062999, + 26.415949752882184 + ] + }, + "properties": { + "id": "meter-9662", + "maker": "Maker J", + "model": "Model 9662", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07620110226375, + 26.404542138328434 + ] + }, + "properties": { + "id": "meter-9663", + "maker": "Maker J", + "model": "Model 9663", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.89640800803972, + 31.03526749681826 + ] + }, + "properties": { + "id": "meter-9664", + "maker": "Maker E", + "model": "Model 9664", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08087210118246, + 26.224060324461224 + ] + }, + "properties": { + "id": "meter-9665", + "maker": "Maker H", + "model": "Model 9665", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12313797193395, + 26.264067129118814 + ] + }, + "properties": { + "id": "meter-9666", + "maker": "Maker J", + "model": "Model 9666", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69167930546784, + 27.375983811475813 + ] + }, + "properties": { + "id": "meter-9667", + "maker": "Maker E", + "model": "Model 9667", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70674224762494, + 27.2816259343112 + ] + }, + "properties": { + "id": "meter-9668", + "maker": "Maker D", + "model": "Model 9668", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.25495471156852, + 24.261719541366393 + ] + }, + "properties": { + "id": "meter-9669", + "maker": "Maker J", + "model": "Model 9669", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.75940519194854, + 28.47371501429392 + ] + }, + "properties": { + "id": "meter-9670", + "maker": "Maker G", + "model": "Model 9670", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.59211893895054, + 18.316125691226294 + ] + }, + "properties": { + "id": "meter-9671", + "maker": "Maker A", + "model": "Model 9671", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02131412270346, + 26.4174759278378 + ] + }, + "properties": { + "id": "meter-9672", + "maker": "Maker F", + "model": "Model 9672", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.61677209899441, + 18.46701980791381 + ] + }, + "properties": { + "id": "meter-9673", + "maker": "Maker I", + "model": "Model 9673", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.23072939022118, + 24.078013094813496 + ] + }, + "properties": { + "id": "meter-9674", + "maker": "Maker J", + "model": "Model 9674", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.076910466833034, + 26.44015087823795 + ] + }, + "properties": { + "id": "meter-9675", + "maker": "Maker B", + "model": "Model 9675", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.63002489049088, + 18.238658645874896 + ] + }, + "properties": { + "id": "meter-9676", + "maker": "Maker I", + "model": "Model 9676", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.623511738461985, + 24.269620167827842 + ] + }, + "properties": { + "id": "meter-9677", + "maker": "Maker B", + "model": "Model 9677", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.21339145597915, + 17.614728796176273 + ] + }, + "properties": { + "id": "meter-9678", + "maker": "Maker E", + "model": "Model 9678", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.932025328623865, + 21.404942255767693 + ] + }, + "properties": { + "id": "meter-9679", + "maker": "Maker E", + "model": "Model 9679", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.38326970382974, + 18.223343857863597 + ] + }, + "properties": { + "id": "meter-9680", + "maker": "Maker J", + "model": "Model 9680", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.63958995547608, + 25.31932327741644 + ] + }, + "properties": { + "id": "meter-9681", + "maker": "Maker D", + "model": "Model 9681", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.17925142420551, + 30.036593457525687 + ] + }, + "properties": { + "id": "meter-9682", + "maker": "Maker D", + "model": "Model 9682", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.847528501893954, + 21.39715280049234 + ] + }, + "properties": { + "id": "meter-9683", + "maker": "Maker J", + "model": "Model 9683", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.15319783771477, + 17.684669739860297 + ] + }, + "properties": { + "id": "meter-9684", + "maker": "Maker F", + "model": "Model 9684", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70600560771467, + 27.51653575803596 + ] + }, + "properties": { + "id": "meter-9685", + "maker": "Maker F", + "model": "Model 9685", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2790558722279, + 21.503623389861826 + ] + }, + "properties": { + "id": "meter-9686", + "maker": "Maker I", + "model": "Model 9686", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.122376344472144, + 17.544705330153207 + ] + }, + "properties": { + "id": "meter-9687", + "maker": "Maker D", + "model": "Model 9687", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.176238884126384, + 26.374355392633934 + ] + }, + "properties": { + "id": "meter-9688", + "maker": "Maker F", + "model": "Model 9688", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.56513278304891, + 25.361100638022645 + ] + }, + "properties": { + "id": "meter-9689", + "maker": "Maker A", + "model": "Model 9689", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.12818267281594, + 24.114105718828206 + ] + }, + "properties": { + "id": "meter-9690", + "maker": "Maker D", + "model": "Model 9690", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.402983762149994, + 19.970252599859247 + ] + }, + "properties": { + "id": "meter-9691", + "maker": "Maker D", + "model": "Model 9691", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.276868344409344, + 18.231170637358954 + ] + }, + "properties": { + "id": "meter-9692", + "maker": "Maker G", + "model": "Model 9692", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62629054046522, + 27.260800115484923 + ] + }, + "properties": { + "id": "meter-9693", + "maker": "Maker D", + "model": "Model 9693", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.030939985694275, + 26.2847772259061 + ] + }, + "properties": { + "id": "meter-9694", + "maker": "Maker B", + "model": "Model 9694", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.559554682810194, + 18.29293012102872 + ] + }, + "properties": { + "id": "meter-9695", + "maker": "Maker D", + "model": "Model 9695", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.205805167500664, + 26.30508855358633 + ] + }, + "properties": { + "id": "meter-9696", + "maker": "Maker G", + "model": "Model 9696", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00295375535316, + 26.509650407666722 + ] + }, + "properties": { + "id": "meter-9697", + "maker": "Maker C", + "model": "Model 9697", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.07057106956516, + 29.991785603950966 + ] + }, + "properties": { + "id": "meter-9698", + "maker": "Maker A", + "model": "Model 9698", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.410685282613876, + 18.203768344277638 + ] + }, + "properties": { + "id": "meter-9699", + "maker": "Maker F", + "model": "Model 9699", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.81345083394574, + 18.251840110443414 + ] + }, + "properties": { + "id": "meter-9700", + "maker": "Maker D", + "model": "Model 9700", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.74239677378159, + 18.23378168821954 + ] + }, + "properties": { + "id": "meter-9701", + "maker": "Maker A", + "model": "Model 9701", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12325076318556, + 26.271901917265883 + ] + }, + "properties": { + "id": "meter-9702", + "maker": "Maker E", + "model": "Model 9702", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.09277359202572, + 21.528472712166753 + ] + }, + "properties": { + "id": "meter-9703", + "maker": "Maker C", + "model": "Model 9703", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.571114166001095, + 18.435777039052493 + ] + }, + "properties": { + "id": "meter-9704", + "maker": "Maker G", + "model": "Model 9704", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.525431382318104, + 18.20372851877389 + ] + }, + "properties": { + "id": "meter-9705", + "maker": "Maker G", + "model": "Model 9705", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.28877224672289, + 21.333240983390052 + ] + }, + "properties": { + "id": "meter-9706", + "maker": "Maker A", + "model": "Model 9706", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88132308510333, + 24.599339081976748 + ] + }, + "properties": { + "id": "meter-9707", + "maker": "Maker I", + "model": "Model 9707", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.796595634639225, + 21.206334018637627 + ] + }, + "properties": { + "id": "meter-9708", + "maker": "Maker A", + "model": "Model 9708", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48296849722556, + 20.047867123832503 + ] + }, + "properties": { + "id": "meter-9709", + "maker": "Maker F", + "model": "Model 9709", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.68874374490548, + 19.899622702490205 + ] + }, + "properties": { + "id": "meter-9710", + "maker": "Maker H", + "model": "Model 9710", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25628042212652, + 21.65857211143484 + ] + }, + "properties": { + "id": "meter-9711", + "maker": "Maker G", + "model": "Model 9711", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57053277374765, + 25.118175931869906 + ] + }, + "properties": { + "id": "meter-9712", + "maker": "Maker H", + "model": "Model 9712", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.834343473736624, + 24.518182835818465 + ] + }, + "properties": { + "id": "meter-9713", + "maker": "Maker G", + "model": "Model 9713", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.830756798819834, + 24.699137120565485 + ] + }, + "properties": { + "id": "meter-9714", + "maker": "Maker B", + "model": "Model 9714", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.13243662259979, + 29.95300586490421 + ] + }, + "properties": { + "id": "meter-9715", + "maker": "Maker J", + "model": "Model 9715", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2282798485715, + 21.57526188115584 + ] + }, + "properties": { + "id": "meter-9716", + "maker": "Maker A", + "model": "Model 9716", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.131033232288345, + 26.218664457218484 + ] + }, + "properties": { + "id": "meter-9717", + "maker": "Maker J", + "model": "Model 9717", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.80426995493364, + 21.339005834957955 + ] + }, + "properties": { + "id": "meter-9718", + "maker": "Maker B", + "model": "Model 9718", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.00853417585597, + 30.82943516291033 + ] + }, + "properties": { + "id": "meter-9719", + "maker": "Maker B", + "model": "Model 9719", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.59633720781509, + 19.964924212368977 + ] + }, + "properties": { + "id": "meter-9720", + "maker": "Maker G", + "model": "Model 9720", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.48455292648223, + 30.013292370503244 + ] + }, + "properties": { + "id": "meter-9721", + "maker": "Maker C", + "model": "Model 9721", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21442670085786, + 21.48007728602114 + ] + }, + "properties": { + "id": "meter-9722", + "maker": "Maker G", + "model": "Model 9722", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.29371506037433, + 29.931633059336235 + ] + }, + "properties": { + "id": "meter-9723", + "maker": "Maker C", + "model": "Model 9723", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66747287656107, + 18.301415024436448 + ] + }, + "properties": { + "id": "meter-9724", + "maker": "Maker H", + "model": "Model 9724", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.819997550196724, + 24.240686239011424 + ] + }, + "properties": { + "id": "meter-9725", + "maker": "Maker J", + "model": "Model 9725", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09295083912607, + 26.402661057724398 + ] + }, + "properties": { + "id": "meter-9726", + "maker": "Maker E", + "model": "Model 9726", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.85264418666451, + 26.441011103961223 + ] + }, + "properties": { + "id": "meter-9727", + "maker": "Maker A", + "model": "Model 9727", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.83990801970893, + 18.406289572420725 + ] + }, + "properties": { + "id": "meter-9728", + "maker": "Maker H", + "model": "Model 9728", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.528989908153804, + 28.38622869549541 + ] + }, + "properties": { + "id": "meter-9729", + "maker": "Maker G", + "model": "Model 9729", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2658834832357, + 21.520012615845125 + ] + }, + "properties": { + "id": "meter-9730", + "maker": "Maker I", + "model": "Model 9730", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92436162610756, + 26.213407410929527 + ] + }, + "properties": { + "id": "meter-9731", + "maker": "Maker H", + "model": "Model 9731", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.7800532844465, + 21.559079764116927 + ] + }, + "properties": { + "id": "meter-9732", + "maker": "Maker G", + "model": "Model 9732", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.111102816243154, + 26.299676602493562 + ] + }, + "properties": { + "id": "meter-9733", + "maker": "Maker B", + "model": "Model 9733", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.47195240928608, + 18.271363803614513 + ] + }, + "properties": { + "id": "meter-9734", + "maker": "Maker E", + "model": "Model 9734", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71124449410616, + 18.33015772028684 + ] + }, + "properties": { + "id": "meter-9735", + "maker": "Maker G", + "model": "Model 9735", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.89568871163299, + 26.44493834391152 + ] + }, + "properties": { + "id": "meter-9736", + "maker": "Maker J", + "model": "Model 9736", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50305306953779, + 18.385232164753198 + ] + }, + "properties": { + "id": "meter-9737", + "maker": "Maker A", + "model": "Model 9737", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14713920008018, + 26.19434937951584 + ] + }, + "properties": { + "id": "meter-9738", + "maker": "Maker E", + "model": "Model 9738", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.55598139713577, + 18.15417702938579 + ] + }, + "properties": { + "id": "meter-9739", + "maker": "Maker I", + "model": "Model 9739", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.37611576273397, + 24.485178603377918 + ] + }, + "properties": { + "id": "meter-9740", + "maker": "Maker D", + "model": "Model 9740", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.57566686599825, + 19.83137027773961 + ] + }, + "properties": { + "id": "meter-9741", + "maker": "Maker J", + "model": "Model 9741", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.48549481409278, + 28.35186565426885 + ] + }, + "properties": { + "id": "meter-9742", + "maker": "Maker I", + "model": "Model 9742", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.77411148807706, + 24.865593214881073 + ] + }, + "properties": { + "id": "meter-9743", + "maker": "Maker I", + "model": "Model 9743", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.713780159092465, + 18.17329044613402 + ] + }, + "properties": { + "id": "meter-9744", + "maker": "Maker J", + "model": "Model 9744", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.820934862037305, + 24.446017170874082 + ] + }, + "properties": { + "id": "meter-9745", + "maker": "Maker E", + "model": "Model 9745", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45498798415244, + 18.334744146073792 + ] + }, + "properties": { + "id": "meter-9746", + "maker": "Maker E", + "model": "Model 9746", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.16559375398837, + 26.31868653540014 + ] + }, + "properties": { + "id": "meter-9747", + "maker": "Maker E", + "model": "Model 9747", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0038841341987, + 26.5146436625669 + ] + }, + "properties": { + "id": "meter-9748", + "maker": "Maker H", + "model": "Model 9748", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.109292388023704, + 26.395785084557534 + ] + }, + "properties": { + "id": "meter-9749", + "maker": "Maker I", + "model": "Model 9749", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.47158982338135, + 18.247539521251138 + ] + }, + "properties": { + "id": "meter-9750", + "maker": "Maker E", + "model": "Model 9750", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11192631588654, + 26.235243912411427 + ] + }, + "properties": { + "id": "meter-9751", + "maker": "Maker A", + "model": "Model 9751", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.73709838998545, + 28.17276569402903 + ] + }, + "properties": { + "id": "meter-9752", + "maker": "Maker H", + "model": "Model 9752", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98237850431548, + 26.29868438547682 + ] + }, + "properties": { + "id": "meter-9753", + "maker": "Maker J", + "model": "Model 9753", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.118835828703304, + 17.49970696310639 + ] + }, + "properties": { + "id": "meter-9754", + "maker": "Maker C", + "model": "Model 9754", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07680706208057, + 24.229441383334603 + ] + }, + "properties": { + "id": "meter-9755", + "maker": "Maker E", + "model": "Model 9755", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.974410368204424, + 24.309149801037318 + ] + }, + "properties": { + "id": "meter-9756", + "maker": "Maker D", + "model": "Model 9756", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11762805819682, + 26.419463203420996 + ] + }, + "properties": { + "id": "meter-9757", + "maker": "Maker B", + "model": "Model 9757", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.9738820354024, + 24.73210794518238 + ] + }, + "properties": { + "id": "meter-9758", + "maker": "Maker A", + "model": "Model 9758", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.62848642001787, + 24.60259042916533 + ] + }, + "properties": { + "id": "meter-9759", + "maker": "Maker A", + "model": "Model 9759", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02109080146085, + 26.303426981576166 + ] + }, + "properties": { + "id": "meter-9760", + "maker": "Maker I", + "model": "Model 9760", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.18009393075367, + 21.491453170020144 + ] + }, + "properties": { + "id": "meter-9761", + "maker": "Maker G", + "model": "Model 9761", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.30434859495174, + 18.341815445484304 + ] + }, + "properties": { + "id": "meter-9762", + "maker": "Maker I", + "model": "Model 9762", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.070765072821445, + 26.726900299193666 + ] + }, + "properties": { + "id": "meter-9763", + "maker": "Maker C", + "model": "Model 9763", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.589717785079664, + 25.49504531990716 + ] + }, + "properties": { + "id": "meter-9764", + "maker": "Maker F", + "model": "Model 9764", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.815278406294276, + 21.435780017280212 + ] + }, + "properties": { + "id": "meter-9765", + "maker": "Maker I", + "model": "Model 9765", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97488432660972, + 26.370781883110613 + ] + }, + "properties": { + "id": "meter-9766", + "maker": "Maker B", + "model": "Model 9766", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42213198619029, + 20.162759187198052 + ] + }, + "properties": { + "id": "meter-9767", + "maker": "Maker J", + "model": "Model 9767", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08167666766001, + 26.305912116041558 + ] + }, + "properties": { + "id": "meter-9768", + "maker": "Maker G", + "model": "Model 9768", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.32832617630338, + 21.429397865233064 + ] + }, + "properties": { + "id": "meter-9769", + "maker": "Maker I", + "model": "Model 9769", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.512936521333735, + 21.590461303053704 + ] + }, + "properties": { + "id": "meter-9770", + "maker": "Maker G", + "model": "Model 9770", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.054057495830165, + 24.20573932733094 + ] + }, + "properties": { + "id": "meter-9771", + "maker": "Maker G", + "model": "Model 9771", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06597651516702, + 26.39948682180926 + ] + }, + "properties": { + "id": "meter-9772", + "maker": "Maker F", + "model": "Model 9772", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.004244949869104, + 30.703691982969104 + ] + }, + "properties": { + "id": "meter-9773", + "maker": "Maker G", + "model": "Model 9773", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.96147030284465, + 18.145726791528826 + ] + }, + "properties": { + "id": "meter-9774", + "maker": "Maker C", + "model": "Model 9774", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.649846380281936, + 24.72953844396529 + ] + }, + "properties": { + "id": "meter-9775", + "maker": "Maker I", + "model": "Model 9775", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55547099702583, + 27.524092006109274 + ] + }, + "properties": { + "id": "meter-9776", + "maker": "Maker H", + "model": "Model 9776", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.265900886540145, + 21.37270850309848 + ] + }, + "properties": { + "id": "meter-9777", + "maker": "Maker F", + "model": "Model 9777", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.27564362161017, + 31.01096329994081 + ] + }, + "properties": { + "id": "meter-9778", + "maker": "Maker I", + "model": "Model 9778", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.37008272623406, + 21.710762454359916 + ] + }, + "properties": { + "id": "meter-9779", + "maker": "Maker I", + "model": "Model 9779", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.960920471087334, + 26.64123998048574 + ] + }, + "properties": { + "id": "meter-9780", + "maker": "Maker G", + "model": "Model 9780", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60900063999758, + 24.406464563405876 + ] + }, + "properties": { + "id": "meter-9781", + "maker": "Maker B", + "model": "Model 9781", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.158494965679175, + 30.0056608631709 + ] + }, + "properties": { + "id": "meter-9782", + "maker": "Maker C", + "model": "Model 9782", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.443023485155685, + 25.55056599167155 + ] + }, + "properties": { + "id": "meter-9783", + "maker": "Maker B", + "model": "Model 9783", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.20014456550402, + 17.503323306375194 + ] + }, + "properties": { + "id": "meter-9784", + "maker": "Maker J", + "model": "Model 9784", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.16680103289685, + 26.402576075378057 + ] + }, + "properties": { + "id": "meter-9785", + "maker": "Maker C", + "model": "Model 9785", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.75739381996875, + 21.387237577580237 + ] + }, + "properties": { + "id": "meter-9786", + "maker": "Maker H", + "model": "Model 9786", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15871637876949, + 26.221975779582966 + ] + }, + "properties": { + "id": "meter-9787", + "maker": "Maker F", + "model": "Model 9787", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.93644581244299, + 27.47135083182647 + ] + }, + "properties": { + "id": "meter-9788", + "maker": "Maker E", + "model": "Model 9788", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65608604941349, + 27.493892317563795 + ] + }, + "properties": { + "id": "meter-9789", + "maker": "Maker E", + "model": "Model 9789", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6566752509271, + 27.56565249403755 + ] + }, + "properties": { + "id": "meter-9790", + "maker": "Maker B", + "model": "Model 9790", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.15380909616691, + 24.21324070655605 + ] + }, + "properties": { + "id": "meter-9791", + "maker": "Maker J", + "model": "Model 9791", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.38242902215805, + 30.014807631189697 + ] + }, + "properties": { + "id": "meter-9792", + "maker": "Maker C", + "model": "Model 9792", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.978462024295524, + 26.610985466422807 + ] + }, + "properties": { + "id": "meter-9793", + "maker": "Maker J", + "model": "Model 9793", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.804317745751874, + 24.69652509518408 + ] + }, + "properties": { + "id": "meter-9794", + "maker": "Maker B", + "model": "Model 9794", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00578449683763, + 26.293581323010322 + ] + }, + "properties": { + "id": "meter-9795", + "maker": "Maker C", + "model": "Model 9795", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.606486687813295, + 25.348689213021398 + ] + }, + "properties": { + "id": "meter-9796", + "maker": "Maker D", + "model": "Model 9796", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05856199390779, + 26.367122584387264 + ] + }, + "properties": { + "id": "meter-9797", + "maker": "Maker I", + "model": "Model 9797", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.875436884919075, + 30.84298990495485 + ] + }, + "properties": { + "id": "meter-9798", + "maker": "Maker H", + "model": "Model 9798", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.801003233574285, + 24.720036030801623 + ] + }, + "properties": { + "id": "meter-9799", + "maker": "Maker B", + "model": "Model 9799", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.898749198524996, + 18.087564485199813 + ] + }, + "properties": { + "id": "meter-9800", + "maker": "Maker E", + "model": "Model 9800", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94076529849914, + 26.498464190238973 + ] + }, + "properties": { + "id": "meter-9801", + "maker": "Maker I", + "model": "Model 9801", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.44307532651677, + 24.667008833874828 + ] + }, + "properties": { + "id": "meter-9802", + "maker": "Maker D", + "model": "Model 9802", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.011234705341195, + 17.423410207050694 + ] + }, + "properties": { + "id": "meter-9803", + "maker": "Maker J", + "model": "Model 9803", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.118832858429684, + 30.886135945681623 + ] + }, + "properties": { + "id": "meter-9804", + "maker": "Maker D", + "model": "Model 9804", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85492631435833, + 21.382050910795037 + ] + }, + "properties": { + "id": "meter-9805", + "maker": "Maker H", + "model": "Model 9805", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.20934164906803, + 24.143920227139457 + ] + }, + "properties": { + "id": "meter-9806", + "maker": "Maker B", + "model": "Model 9806", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.32624172216953, + 20.008015413524287 + ] + }, + "properties": { + "id": "meter-9807", + "maker": "Maker I", + "model": "Model 9807", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92943908571372, + 26.580605621529134 + ] + }, + "properties": { + "id": "meter-9808", + "maker": "Maker I", + "model": "Model 9808", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.613025909916615, + 24.46342733416284 + ] + }, + "properties": { + "id": "meter-9809", + "maker": "Maker D", + "model": "Model 9809", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15090389244472, + 26.27515777430364 + ] + }, + "properties": { + "id": "meter-9810", + "maker": "Maker J", + "model": "Model 9810", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.79319795867786, + 18.48339931637173 + ] + }, + "properties": { + "id": "meter-9811", + "maker": "Maker F", + "model": "Model 9811", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.918940379097805, + 26.31808831164429 + ] + }, + "properties": { + "id": "meter-9812", + "maker": "Maker A", + "model": "Model 9812", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.618127616179684, + 24.651742502866373 + ] + }, + "properties": { + "id": "meter-9813", + "maker": "Maker C", + "model": "Model 9813", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.7035033218896, + 18.262659873922214 + ] + }, + "properties": { + "id": "meter-9814", + "maker": "Maker A", + "model": "Model 9814", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9353632789293, + 26.385678506002417 + ] + }, + "properties": { + "id": "meter-9815", + "maker": "Maker H", + "model": "Model 9815", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.07739100327993, + 17.52050892781907 + ] + }, + "properties": { + "id": "meter-9816", + "maker": "Maker E", + "model": "Model 9816", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.87287573566206, + 31.023206344203757 + ] + }, + "properties": { + "id": "meter-9817", + "maker": "Maker H", + "model": "Model 9817", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.193577841076625, + 26.30850873865527 + ] + }, + "properties": { + "id": "meter-9818", + "maker": "Maker E", + "model": "Model 9818", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.93727929002903, + 21.40912528737506 + ] + }, + "properties": { + "id": "meter-9819", + "maker": "Maker I", + "model": "Model 9819", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.70292581521546, + 26.22794237717353 + ] + }, + "properties": { + "id": "meter-9820", + "maker": "Maker J", + "model": "Model 9820", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.78410729880563, + 31.099364870757768 + ] + }, + "properties": { + "id": "meter-9821", + "maker": "Maker I", + "model": "Model 9821", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.137331855076994, + 17.497118824267318 + ] + }, + "properties": { + "id": "meter-9822", + "maker": "Maker B", + "model": "Model 9822", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.5569598873051, + 24.57040743332111 + ] + }, + "properties": { + "id": "meter-9823", + "maker": "Maker G", + "model": "Model 9823", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57497045032954, + 25.41994657335032 + ] + }, + "properties": { + "id": "meter-9824", + "maker": "Maker G", + "model": "Model 9824", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.91266899353469, + 27.318980551335066 + ] + }, + "properties": { + "id": "meter-9825", + "maker": "Maker E", + "model": "Model 9825", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61025920530558, + 24.322552637280303 + ] + }, + "properties": { + "id": "meter-9826", + "maker": "Maker C", + "model": "Model 9826", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.89662490568945, + 17.58006122006374 + ] + }, + "properties": { + "id": "meter-9827", + "maker": "Maker J", + "model": "Model 9827", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.62599767650438, + 25.346213703930992 + ] + }, + "properties": { + "id": "meter-9828", + "maker": "Maker A", + "model": "Model 9828", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.16407178579929, + 30.826730885144652 + ] + }, + "properties": { + "id": "meter-9829", + "maker": "Maker H", + "model": "Model 9829", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.44563191048015, + 18.269132091463366 + ] + }, + "properties": { + "id": "meter-9830", + "maker": "Maker A", + "model": "Model 9830", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.242645583194545, + 21.439998013306262 + ] + }, + "properties": { + "id": "meter-9831", + "maker": "Maker C", + "model": "Model 9831", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.57015060303206, + 24.469347638255865 + ] + }, + "properties": { + "id": "meter-9832", + "maker": "Maker C", + "model": "Model 9832", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.48794288146952, + 21.650663273970746 + ] + }, + "properties": { + "id": "meter-9833", + "maker": "Maker D", + "model": "Model 9833", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.52030453808292, + 25.482714538933983 + ] + }, + "properties": { + "id": "meter-9834", + "maker": "Maker I", + "model": "Model 9834", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.36061103519567, + 20.06944444419436 + ] + }, + "properties": { + "id": "meter-9835", + "maker": "Maker B", + "model": "Model 9835", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85322989334016, + 21.394916985031568 + ] + }, + "properties": { + "id": "meter-9836", + "maker": "Maker H", + "model": "Model 9836", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15135968506312, + 26.22340966523071 + ] + }, + "properties": { + "id": "meter-9837", + "maker": "Maker H", + "model": "Model 9837", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.48527572091209, + 25.61977808401722 + ] + }, + "properties": { + "id": "meter-9838", + "maker": "Maker I", + "model": "Model 9838", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73673962690101, + 18.240275956278236 + ] + }, + "properties": { + "id": "meter-9839", + "maker": "Maker A", + "model": "Model 9839", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.10104969718656, + 24.144806446204587 + ] + }, + "properties": { + "id": "meter-9840", + "maker": "Maker F", + "model": "Model 9840", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.00985473328936, + 31.2151337725551 + ] + }, + "properties": { + "id": "meter-9841", + "maker": "Maker E", + "model": "Model 9841", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.637986477884105, + 24.59067469327071 + ] + }, + "properties": { + "id": "meter-9842", + "maker": "Maker B", + "model": "Model 9842", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.757230020596204, + 18.4620836710725 + ] + }, + "properties": { + "id": "meter-9843", + "maker": "Maker G", + "model": "Model 9843", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.61858734154055, + 25.296388482196015 + ] + }, + "properties": { + "id": "meter-9844", + "maker": "Maker A", + "model": "Model 9844", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49839088242308, + 18.225854160782337 + ] + }, + "properties": { + "id": "meter-9845", + "maker": "Maker J", + "model": "Model 9845", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.73076715698586, + 27.38076040346635 + ] + }, + "properties": { + "id": "meter-9846", + "maker": "Maker G", + "model": "Model 9846", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88773622995072, + 21.42805777474092 + ] + }, + "properties": { + "id": "meter-9847", + "maker": "Maker D", + "model": "Model 9847", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.72800547958626, + 26.43996786534423 + ] + }, + "properties": { + "id": "meter-9848", + "maker": "Maker C", + "model": "Model 9848", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.64733834028899, + 21.49366311353163 + ] + }, + "properties": { + "id": "meter-9849", + "maker": "Maker J", + "model": "Model 9849", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.60954478704056, + 18.258054180627898 + ] + }, + "properties": { + "id": "meter-9850", + "maker": "Maker H", + "model": "Model 9850", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.391045842172126, + 20.01402333100373 + ] + }, + "properties": { + "id": "meter-9851", + "maker": "Maker E", + "model": "Model 9851", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.461131208128805, + 24.60149037718309 + ] + }, + "properties": { + "id": "meter-9852", + "maker": "Maker I", + "model": "Model 9852", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11738614993753, + 17.57492223344404 + ] + }, + "properties": { + "id": "meter-9853", + "maker": "Maker B", + "model": "Model 9853", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.43099624955745, + 20.065791495200827 + ] + }, + "properties": { + "id": "meter-9854", + "maker": "Maker D", + "model": "Model 9854", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72850561425005, + 18.29340689833609 + ] + }, + "properties": { + "id": "meter-9855", + "maker": "Maker A", + "model": "Model 9855", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09718437435856, + 17.42204602767996 + ] + }, + "properties": { + "id": "meter-9856", + "maker": "Maker E", + "model": "Model 9856", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.86163068750927, + 30.989124398433844 + ] + }, + "properties": { + "id": "meter-9857", + "maker": "Maker D", + "model": "Model 9857", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.66316312249455, + 21.32032318531294 + ] + }, + "properties": { + "id": "meter-9858", + "maker": "Maker B", + "model": "Model 9858", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.62774497181044, + 25.435919177522223 + ] + }, + "properties": { + "id": "meter-9859", + "maker": "Maker I", + "model": "Model 9859", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6796299055712, + 27.45226930587939 + ] + }, + "properties": { + "id": "meter-9860", + "maker": "Maker C", + "model": "Model 9860", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.505290711250005, + 24.73664681589066 + ] + }, + "properties": { + "id": "meter-9861", + "maker": "Maker G", + "model": "Model 9861", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.18678103761619, + 17.781449570482064 + ] + }, + "properties": { + "id": "meter-9862", + "maker": "Maker I", + "model": "Model 9862", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.148129440666466, + 26.203229239472858 + ] + }, + "properties": { + "id": "meter-9863", + "maker": "Maker I", + "model": "Model 9863", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.67564897487869, + 28.462564177334023 + ] + }, + "properties": { + "id": "meter-9864", + "maker": "Maker B", + "model": "Model 9864", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.74260269183158, + 27.538023500001746 + ] + }, + "properties": { + "id": "meter-9865", + "maker": "Maker G", + "model": "Model 9865", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52700230055259, + 18.490185551442934 + ] + }, + "properties": { + "id": "meter-9866", + "maker": "Maker I", + "model": "Model 9866", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08073069777303, + 26.23199609267105 + ] + }, + "properties": { + "id": "meter-9867", + "maker": "Maker C", + "model": "Model 9867", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.62588831600747, + 18.23008507723469 + ] + }, + "properties": { + "id": "meter-9868", + "maker": "Maker E", + "model": "Model 9868", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.02473360121832, + 24.227893699743515 + ] + }, + "properties": { + "id": "meter-9869", + "maker": "Maker A", + "model": "Model 9869", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.662426878320126, + 24.700903732755393 + ] + }, + "properties": { + "id": "meter-9870", + "maker": "Maker C", + "model": "Model 9870", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.24978079185615, + 26.275936721299548 + ] + }, + "properties": { + "id": "meter-9871", + "maker": "Maker E", + "model": "Model 9871", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66179395221328, + 18.015388710328534 + ] + }, + "properties": { + "id": "meter-9872", + "maker": "Maker G", + "model": "Model 9872", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.173295473463654, + 26.388446729118876 + ] + }, + "properties": { + "id": "meter-9873", + "maker": "Maker H", + "model": "Model 9873", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.18186972186665, + 17.630253233620937 + ] + }, + "properties": { + "id": "meter-9874", + "maker": "Maker J", + "model": "Model 9874", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.03268255517075, + 24.11969070324421 + ] + }, + "properties": { + "id": "meter-9875", + "maker": "Maker D", + "model": "Model 9875", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17958775360289, + 17.607201930689033 + ] + }, + "properties": { + "id": "meter-9876", + "maker": "Maker J", + "model": "Model 9876", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99338198739101, + 26.359173767118833 + ] + }, + "properties": { + "id": "meter-9877", + "maker": "Maker C", + "model": "Model 9877", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.807074628790794, + 24.72773944016371 + ] + }, + "properties": { + "id": "meter-9878", + "maker": "Maker D", + "model": "Model 9878", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.34691506757177, + 21.340805912565454 + ] + }, + "properties": { + "id": "meter-9879", + "maker": "Maker A", + "model": "Model 9879", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.79681135095982, + 18.38691923135536 + ] + }, + "properties": { + "id": "meter-9880", + "maker": "Maker B", + "model": "Model 9880", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.520016188999286, + 24.301625797068922 + ] + }, + "properties": { + "id": "meter-9881", + "maker": "Maker I", + "model": "Model 9881", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.53007209846194, + 28.620574854966456 + ] + }, + "properties": { + "id": "meter-9882", + "maker": "Maker A", + "model": "Model 9882", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.246473584143985, + 29.936852773312246 + ] + }, + "properties": { + "id": "meter-9883", + "maker": "Maker D", + "model": "Model 9883", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.36512084782157, + 24.483885481311507 + ] + }, + "properties": { + "id": "meter-9884", + "maker": "Maker F", + "model": "Model 9884", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.68342643020714, + 25.444908970173934 + ] + }, + "properties": { + "id": "meter-9885", + "maker": "Maker E", + "model": "Model 9885", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.38355345214365, + 24.46378135486581 + ] + }, + "properties": { + "id": "meter-9886", + "maker": "Maker H", + "model": "Model 9886", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.69055551622349, + 24.497617740020125 + ] + }, + "properties": { + "id": "meter-9887", + "maker": "Maker E", + "model": "Model 9887", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.962036303036896, + 26.230303137699728 + ] + }, + "properties": { + "id": "meter-9888", + "maker": "Maker B", + "model": "Model 9888", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.269307880082884, + 29.810555553240306 + ] + }, + "properties": { + "id": "meter-9889", + "maker": "Maker D", + "model": "Model 9889", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.43973173262271, + 20.01433706584432 + ] + }, + "properties": { + "id": "meter-9890", + "maker": "Maker H", + "model": "Model 9890", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.3311757420974, + 29.898742616282803 + ] + }, + "properties": { + "id": "meter-9891", + "maker": "Maker G", + "model": "Model 9891", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09659359820853, + 26.29490455677184 + ] + }, + "properties": { + "id": "meter-9892", + "maker": "Maker C", + "model": "Model 9892", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.345526219273424, + 20.10813083348724 + ] + }, + "properties": { + "id": "meter-9893", + "maker": "Maker H", + "model": "Model 9893", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.79339826635027, + 26.466750833295446 + ] + }, + "properties": { + "id": "meter-9894", + "maker": "Maker H", + "model": "Model 9894", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.93279577571272, + 26.267302578843577 + ] + }, + "properties": { + "id": "meter-9895", + "maker": "Maker A", + "model": "Model 9895", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.4477467711052, + 21.32981468510858 + ] + }, + "properties": { + "id": "meter-9896", + "maker": "Maker J", + "model": "Model 9896", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.082976528630795, + 31.100301207341673 + ] + }, + "properties": { + "id": "meter-9897", + "maker": "Maker D", + "model": "Model 9897", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.179476754349515, + 24.177909384301362 + ] + }, + "properties": { + "id": "meter-9898", + "maker": "Maker D", + "model": "Model 9898", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.507447694048366, + 18.201459611143555 + ] + }, + "properties": { + "id": "meter-9899", + "maker": "Maker A", + "model": "Model 9899", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.001542654748725, + 24.250795210404576 + ] + }, + "properties": { + "id": "meter-9900", + "maker": "Maker F", + "model": "Model 9900", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.239608957623936, + 24.259906889608455 + ] + }, + "properties": { + "id": "meter-9901", + "maker": "Maker E", + "model": "Model 9901", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.009993305005146, + 17.458824007458386 + ] + }, + "properties": { + "id": "meter-9902", + "maker": "Maker B", + "model": "Model 9902", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.449583891031374, + 19.939245070810134 + ] + }, + "properties": { + "id": "meter-9903", + "maker": "Maker C", + "model": "Model 9903", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.733723519613086, + 24.723122000084494 + ] + }, + "properties": { + "id": "meter-9904", + "maker": "Maker D", + "model": "Model 9904", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.80704567813633, + 18.527804422519775 + ] + }, + "properties": { + "id": "meter-9905", + "maker": "Maker C", + "model": "Model 9905", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.39018329809609, + 18.228423460697595 + ] + }, + "properties": { + "id": "meter-9906", + "maker": "Maker G", + "model": "Model 9906", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.23894735797156, + 18.090652853290987 + ] + }, + "properties": { + "id": "meter-9907", + "maker": "Maker H", + "model": "Model 9907", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.993953923437914, + 24.17197301449477 + ] + }, + "properties": { + "id": "meter-9908", + "maker": "Maker H", + "model": "Model 9908", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.967064057092635, + 26.59254359819642 + ] + }, + "properties": { + "id": "meter-9909", + "maker": "Maker F", + "model": "Model 9909", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.4433203197336, + 28.423778962289035 + ] + }, + "properties": { + "id": "meter-9910", + "maker": "Maker C", + "model": "Model 9910", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.395310660911335, + 18.048610344907 + ] + }, + "properties": { + "id": "meter-9911", + "maker": "Maker E", + "model": "Model 9911", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.731720734433985, + 25.16629833710575 + ] + }, + "properties": { + "id": "meter-9912", + "maker": "Maker F", + "model": "Model 9912", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.16924759948948, + 26.236276039784563 + ] + }, + "properties": { + "id": "meter-9913", + "maker": "Maker G", + "model": "Model 9913", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.51914492048004, + 19.968518717596012 + ] + }, + "properties": { + "id": "meter-9914", + "maker": "Maker I", + "model": "Model 9914", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.56741165757516, + 25.359372472098386 + ] + }, + "properties": { + "id": "meter-9915", + "maker": "Maker C", + "model": "Model 9915", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.667852293589426, + 24.516198687612743 + ] + }, + "properties": { + "id": "meter-9916", + "maker": "Maker E", + "model": "Model 9916", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.54466363780003, + 18.282433841595747 + ] + }, + "properties": { + "id": "meter-9917", + "maker": "Maker D", + "model": "Model 9917", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.8612368214469, + 21.40331399486915 + ] + }, + "properties": { + "id": "meter-9918", + "maker": "Maker J", + "model": "Model 9918", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.57184218371347, + 28.428605610891783 + ] + }, + "properties": { + "id": "meter-9919", + "maker": "Maker A", + "model": "Model 9919", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48351164126064, + 19.961270058645415 + ] + }, + "properties": { + "id": "meter-9920", + "maker": "Maker D", + "model": "Model 9920", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.82230106067753, + 21.439649738948148 + ] + }, + "properties": { + "id": "meter-9921", + "maker": "Maker A", + "model": "Model 9921", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.031078874309465, + 26.3030531696312 + ] + }, + "properties": { + "id": "meter-9922", + "maker": "Maker G", + "model": "Model 9922", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14636503797105, + 26.19608414827009 + ] + }, + "properties": { + "id": "meter-9923", + "maker": "Maker G", + "model": "Model 9923", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.10631760267325, + 29.982810140177996 + ] + }, + "properties": { + "id": "meter-9924", + "maker": "Maker H", + "model": "Model 9924", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.52881356177937, + 28.38274407927151 + ] + }, + "properties": { + "id": "meter-9925", + "maker": "Maker H", + "model": "Model 9925", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.19609316408773, + 29.969185626888063 + ] + }, + "properties": { + "id": "meter-9926", + "maker": "Maker H", + "model": "Model 9926", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.40449053624296, + 21.564567244550826 + ] + }, + "properties": { + "id": "meter-9927", + "maker": "Maker E", + "model": "Model 9927", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.72851251495111, + 27.794355818748944 + ] + }, + "properties": { + "id": "meter-9928", + "maker": "Maker D", + "model": "Model 9928", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.23673396015038, + 26.359739905756925 + ] + }, + "properties": { + "id": "meter-9929", + "maker": "Maker A", + "model": "Model 9929", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.62453389778772, + 21.532369962288936 + ] + }, + "properties": { + "id": "meter-9930", + "maker": "Maker C", + "model": "Model 9930", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65886022543475, + 24.625312228399277 + ] + }, + "properties": { + "id": "meter-9931", + "maker": "Maker C", + "model": "Model 9931", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.192196486470394, + 26.25144221364516 + ] + }, + "properties": { + "id": "meter-9932", + "maker": "Maker C", + "model": "Model 9932", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.537325817103586, + 28.444756359978147 + ] + }, + "properties": { + "id": "meter-9933", + "maker": "Maker C", + "model": "Model 9933", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.561407758487206, + 24.832964706116314 + ] + }, + "properties": { + "id": "meter-9934", + "maker": "Maker G", + "model": "Model 9934", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.764268629830326, + 24.485915596848724 + ] + }, + "properties": { + "id": "meter-9935", + "maker": "Maker G", + "model": "Model 9935", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.37443612471291, + 19.94196792792097 + ] + }, + "properties": { + "id": "meter-9936", + "maker": "Maker D", + "model": "Model 9936", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.792480478559355, + 18.360972785464188 + ] + }, + "properties": { + "id": "meter-9937", + "maker": "Maker I", + "model": "Model 9937", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13316606616671, + 26.68004882745649 + ] + }, + "properties": { + "id": "meter-9938", + "maker": "Maker G", + "model": "Model 9938", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.489414750010255, + 25.410381974429747 + ] + }, + "properties": { + "id": "meter-9939", + "maker": "Maker A", + "model": "Model 9939", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.4924196839629, + 18.00502423563174 + ] + }, + "properties": { + "id": "meter-9940", + "maker": "Maker C", + "model": "Model 9940", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.0205986235917, + 31.155214518835773 + ] + }, + "properties": { + "id": "meter-9941", + "maker": "Maker F", + "model": "Model 9941", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21384759361209, + 21.61854520632807 + ] + }, + "properties": { + "id": "meter-9942", + "maker": "Maker D", + "model": "Model 9942", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.47461997092665, + 18.168955124247148 + ] + }, + "properties": { + "id": "meter-9943", + "maker": "Maker I", + "model": "Model 9943", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.32031845428922, + 28.335171027778532 + ] + }, + "properties": { + "id": "meter-9944", + "maker": "Maker H", + "model": "Model 9944", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84887920473493, + 21.375072399649476 + ] + }, + "properties": { + "id": "meter-9945", + "maker": "Maker A", + "model": "Model 9945", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26001012286339, + 21.478008978231287 + ] + }, + "properties": { + "id": "meter-9946", + "maker": "Maker F", + "model": "Model 9946", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.858825132718025, + 21.43289349996196 + ] + }, + "properties": { + "id": "meter-9947", + "maker": "Maker E", + "model": "Model 9947", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.33117581369601, + 19.985275959939163 + ] + }, + "properties": { + "id": "meter-9948", + "maker": "Maker B", + "model": "Model 9948", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.69012395259118, + 24.710458402540645 + ] + }, + "properties": { + "id": "meter-9949", + "maker": "Maker F", + "model": "Model 9949", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.6814575124651, + 18.32648282811929 + ] + }, + "properties": { + "id": "meter-9950", + "maker": "Maker D", + "model": "Model 9950", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.41996719851803, + 18.328601684147127 + ] + }, + "properties": { + "id": "meter-9951", + "maker": "Maker E", + "model": "Model 9951", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.10032904585978, + 24.201882471009924 + ] + }, + "properties": { + "id": "meter-9952", + "maker": "Maker J", + "model": "Model 9952", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1048114560868, + 26.41895713324767 + ] + }, + "properties": { + "id": "meter-9953", + "maker": "Maker D", + "model": "Model 9953", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13073319360147, + 17.503302212206368 + ] + }, + "properties": { + "id": "meter-9954", + "maker": "Maker A", + "model": "Model 9954", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.62967198341366, + 18.227592486958784 + ] + }, + "properties": { + "id": "meter-9955", + "maker": "Maker G", + "model": "Model 9955", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.158240488703015, + 26.40858642999291 + ] + }, + "properties": { + "id": "meter-9956", + "maker": "Maker E", + "model": "Model 9956", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08169868815887, + 26.198854658864914 + ] + }, + "properties": { + "id": "meter-9957", + "maker": "Maker J", + "model": "Model 9957", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.246384724039345, + 21.460999034884185 + ] + }, + "properties": { + "id": "meter-9958", + "maker": "Maker I", + "model": "Model 9958", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09762688162382, + 26.16275049850511 + ] + }, + "properties": { + "id": "meter-9959", + "maker": "Maker E", + "model": "Model 9959", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.063161610126855, + 24.089634870759195 + ] + }, + "properties": { + "id": "meter-9960", + "maker": "Maker A", + "model": "Model 9960", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.604326549604565, + 21.390705615844563 + ] + }, + "properties": { + "id": "meter-9961", + "maker": "Maker H", + "model": "Model 9961", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.39728636210529, + 17.99168038384736 + ] + }, + "properties": { + "id": "meter-9962", + "maker": "Maker B", + "model": "Model 9962", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.30399072354084, + 28.414567259868917 + ] + }, + "properties": { + "id": "meter-9963", + "maker": "Maker F", + "model": "Model 9963", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.410969916863685, + 18.03393356946857 + ] + }, + "properties": { + "id": "meter-9964", + "maker": "Maker A", + "model": "Model 9964", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.9728253063504, + 24.358475747237044 + ] + }, + "properties": { + "id": "meter-9965", + "maker": "Maker I", + "model": "Model 9965", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11090560320667, + 26.28489473586178 + ] + }, + "properties": { + "id": "meter-9966", + "maker": "Maker J", + "model": "Model 9966", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.539241944736126, + 20.161971887589225 + ] + }, + "properties": { + "id": "meter-9967", + "maker": "Maker I", + "model": "Model 9967", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72933654317406, + 18.29087932536531 + ] + }, + "properties": { + "id": "meter-9968", + "maker": "Maker A", + "model": "Model 9968", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.188685361010066, + 26.23873004814918 + ] + }, + "properties": { + "id": "meter-9969", + "maker": "Maker F", + "model": "Model 9969", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.329501482600776, + 19.884568653801356 + ] + }, + "properties": { + "id": "meter-9970", + "maker": "Maker C", + "model": "Model 9970", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.1952480223413, + 21.42084337651661 + ] + }, + "properties": { + "id": "meter-9971", + "maker": "Maker J", + "model": "Model 9971", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.6000851165032, + 24.761502399098497 + ] + }, + "properties": { + "id": "meter-9972", + "maker": "Maker J", + "model": "Model 9972", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70078050940927, + 27.523374284599864 + ] + }, + "properties": { + "id": "meter-9973", + "maker": "Maker E", + "model": "Model 9973", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.596427214641565, + 24.521971456825366 + ] + }, + "properties": { + "id": "meter-9974", + "maker": "Maker C", + "model": "Model 9974", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.835908776474035, + 21.380627382107196 + ] + }, + "properties": { + "id": "meter-9975", + "maker": "Maker B", + "model": "Model 9975", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03966782496519, + 26.34184148556999 + ] + }, + "properties": { + "id": "meter-9976", + "maker": "Maker J", + "model": "Model 9976", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.120636086990835, + 30.09228619527922 + ] + }, + "properties": { + "id": "meter-9977", + "maker": "Maker D", + "model": "Model 9977", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.61732056536298, + 17.951384627953782 + ] + }, + "properties": { + "id": "meter-9978", + "maker": "Maker B", + "model": "Model 9978", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.02281475538727, + 24.188365868137694 + ] + }, + "properties": { + "id": "meter-9979", + "maker": "Maker B", + "model": "Model 9979", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.825622192921095, + 28.30247127891288 + ] + }, + "properties": { + "id": "meter-9980", + "maker": "Maker G", + "model": "Model 9980", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10214940164507, + 26.277739861263488 + ] + }, + "properties": { + "id": "meter-9981", + "maker": "Maker J", + "model": "Model 9981", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.611665007872986, + 25.29541534600308 + ] + }, + "properties": { + "id": "meter-9982", + "maker": "Maker J", + "model": "Model 9982", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.033588382768755, + 26.389578339122306 + ] + }, + "properties": { + "id": "meter-9983", + "maker": "Maker I", + "model": "Model 9983", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.84529706701821, + 30.936752104387555 + ] + }, + "properties": { + "id": "meter-9984", + "maker": "Maker B", + "model": "Model 9984", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9102597115762, + 26.507066040776685 + ] + }, + "properties": { + "id": "meter-9985", + "maker": "Maker E", + "model": "Model 9985", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.59357636028707, + 27.6399592672364 + ] + }, + "properties": { + "id": "meter-9986", + "maker": "Maker C", + "model": "Model 9986", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.98410505756407, + 29.99616817473465 + ] + }, + "properties": { + "id": "meter-9987", + "maker": "Maker D", + "model": "Model 9987", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.98896137596451, + 24.164259400355 + ] + }, + "properties": { + "id": "meter-9988", + "maker": "Maker F", + "model": "Model 9988", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66244644284575, + 18.10774559948613 + ] + }, + "properties": { + "id": "meter-9989", + "maker": "Maker D", + "model": "Model 9989", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.08697126215277, + 21.525168861115713 + ] + }, + "properties": { + "id": "meter-9990", + "maker": "Maker J", + "model": "Model 9990", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.73205108725786, + 26.381680129156205 + ] + }, + "properties": { + "id": "meter-9991", + "maker": "Maker I", + "model": "Model 9991", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.00275666815649, + 30.692979712335596 + ] + }, + "properties": { + "id": "meter-9992", + "maker": "Maker A", + "model": "Model 9992", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.061099671102156, + 30.91772215744032 + ] + }, + "properties": { + "id": "meter-9993", + "maker": "Maker F", + "model": "Model 9993", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.574086855631414, + 28.16994759382546 + ] + }, + "properties": { + "id": "meter-9994", + "maker": "Maker B", + "model": "Model 9994", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.634479942431334, + 27.274466741461673 + ] + }, + "properties": { + "id": "meter-9995", + "maker": "Maker E", + "model": "Model 9995", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.121603335357335, + 17.49449268618939 + ] + }, + "properties": { + "id": "meter-9996", + "maker": "Maker C", + "model": "Model 9996", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.34310333518821, + 21.407379544422657 + ] + }, + "properties": { + "id": "meter-9997", + "maker": "Maker F", + "model": "Model 9997", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.68324845503122, + 21.403264105553365 + ] + }, + "properties": { + "id": "meter-9998", + "maker": "Maker D", + "model": "Model 9998", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.153932316106015, + 17.542069416606335 + ] + }, + "properties": { + "id": "meter-9999", + "maker": "Maker D", + "model": "Model 9999", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.830449418786685, + 27.511272208707087 + ] + }, + "properties": { + "id": "meter-10000", + "maker": "Maker B", + "model": "Model 10000", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.94737301887952, + 30.69900529920891 + ] + }, + "properties": { + "id": "meter-10001", + "maker": "Maker I", + "model": "Model 10001", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.74063695460144, + 18.00965083609501 + ] + }, + "properties": { + "id": "meter-10002", + "maker": "Maker B", + "model": "Model 10002", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61223648195899, + 24.497715862115985 + ] + }, + "properties": { + "id": "meter-10003", + "maker": "Maker J", + "model": "Model 10003", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.81973924176203, + 27.346989747758904 + ] + }, + "properties": { + "id": "meter-10004", + "maker": "Maker G", + "model": "Model 10004", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.75893558333967, + 25.348675062836453 + ] + }, + "properties": { + "id": "meter-10005", + "maker": "Maker J", + "model": "Model 10005", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.12687829422307, + 24.14447774883424 + ] + }, + "properties": { + "id": "meter-10006", + "maker": "Maker E", + "model": "Model 10006", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45958315573301, + 17.932528098149564 + ] + }, + "properties": { + "id": "meter-10007", + "maker": "Maker F", + "model": "Model 10007", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.79815804152743, + 21.240666826047566 + ] + }, + "properties": { + "id": "meter-10008", + "maker": "Maker H", + "model": "Model 10008", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.493072495122, + 28.4418511426328 + ] + }, + "properties": { + "id": "meter-10009", + "maker": "Maker J", + "model": "Model 10009", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.99119411526439, + 30.089796835842677 + ] + }, + "properties": { + "id": "meter-10010", + "maker": "Maker D", + "model": "Model 10010", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.80785830197832, + 24.66300875594032 + ] + }, + "properties": { + "id": "meter-10011", + "maker": "Maker G", + "model": "Model 10011", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91808769661134, + 26.51517785896922 + ] + }, + "properties": { + "id": "meter-10012", + "maker": "Maker F", + "model": "Model 10012", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05084399859914, + 24.380530073420278 + ] + }, + "properties": { + "id": "meter-10013", + "maker": "Maker J", + "model": "Model 10013", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49796007634092, + 18.475295245597415 + ] + }, + "properties": { + "id": "meter-10014", + "maker": "Maker H", + "model": "Model 10014", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03913265878864, + 26.395178344774873 + ] + }, + "properties": { + "id": "meter-10015", + "maker": "Maker C", + "model": "Model 10015", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.6814360116971, + 24.662665090012847 + ] + }, + "properties": { + "id": "meter-10016", + "maker": "Maker H", + "model": "Model 10016", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46091353388453, + 19.980277932468322 + ] + }, + "properties": { + "id": "meter-10017", + "maker": "Maker E", + "model": "Model 10017", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.74365137859506, + 27.599976600433006 + ] + }, + "properties": { + "id": "meter-10018", + "maker": "Maker E", + "model": "Model 10018", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.91525768115172, + 21.663713670707185 + ] + }, + "properties": { + "id": "meter-10019", + "maker": "Maker I", + "model": "Model 10019", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.752968665246364, + 25.288928824717505 + ] + }, + "properties": { + "id": "meter-10020", + "maker": "Maker G", + "model": "Model 10020", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.706339576684286, + 24.75860041168163 + ] + }, + "properties": { + "id": "meter-10021", + "maker": "Maker I", + "model": "Model 10021", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.940998647689206, + 26.19569191908789 + ] + }, + "properties": { + "id": "meter-10022", + "maker": "Maker J", + "model": "Model 10022", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88012310496497, + 24.56703579829894 + ] + }, + "properties": { + "id": "meter-10023", + "maker": "Maker C", + "model": "Model 10023", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.555774596892256, + 25.194707372315737 + ] + }, + "properties": { + "id": "meter-10024", + "maker": "Maker J", + "model": "Model 10024", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.303911155930635, + 17.549026562521068 + ] + }, + "properties": { + "id": "meter-10025", + "maker": "Maker C", + "model": "Model 10025", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.611043628938496, + 17.95256252837849 + ] + }, + "properties": { + "id": "meter-10026", + "maker": "Maker D", + "model": "Model 10026", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.95197501285626, + 30.81755304789889 + ] + }, + "properties": { + "id": "meter-10027", + "maker": "Maker D", + "model": "Model 10027", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.734456061432375, + 26.482904294593975 + ] + }, + "properties": { + "id": "meter-10028", + "maker": "Maker J", + "model": "Model 10028", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.22106010581211, + 17.535484441640197 + ] + }, + "properties": { + "id": "meter-10029", + "maker": "Maker H", + "model": "Model 10029", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0789534089411, + 24.086338516135307 + ] + }, + "properties": { + "id": "meter-10030", + "maker": "Maker C", + "model": "Model 10030", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.015058075209346, + 30.162684200633713 + ] + }, + "properties": { + "id": "meter-10031", + "maker": "Maker I", + "model": "Model 10031", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.85647657719356, + 26.348688944961374 + ] + }, + "properties": { + "id": "meter-10032", + "maker": "Maker A", + "model": "Model 10032", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10649798402188, + 17.463206756038236 + ] + }, + "properties": { + "id": "meter-10033", + "maker": "Maker F", + "model": "Model 10033", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.324312721579844, + 21.53834934897738 + ] + }, + "properties": { + "id": "meter-10034", + "maker": "Maker C", + "model": "Model 10034", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.68053230586479, + 24.538097633267657 + ] + }, + "properties": { + "id": "meter-10035", + "maker": "Maker H", + "model": "Model 10035", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.94340563001769, + 24.212733336704513 + ] + }, + "properties": { + "id": "meter-10036", + "maker": "Maker F", + "model": "Model 10036", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.771233826813045, + 27.542501137046845 + ] + }, + "properties": { + "id": "meter-10037", + "maker": "Maker F", + "model": "Model 10037", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.5131646705254, + 24.78027415269315 + ] + }, + "properties": { + "id": "meter-10038", + "maker": "Maker H", + "model": "Model 10038", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.640183289513224, + 24.757988090029954 + ] + }, + "properties": { + "id": "meter-10039", + "maker": "Maker I", + "model": "Model 10039", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65707098843195, + 27.546954927160016 + ] + }, + "properties": { + "id": "meter-10040", + "maker": "Maker G", + "model": "Model 10040", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12773424846678, + 17.41688537353125 + ] + }, + "properties": { + "id": "meter-10041", + "maker": "Maker E", + "model": "Model 10041", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.89446329600326, + 17.361885220698692 + ] + }, + "properties": { + "id": "meter-10042", + "maker": "Maker F", + "model": "Model 10042", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.542157872323926, + 18.406854616277755 + ] + }, + "properties": { + "id": "meter-10043", + "maker": "Maker E", + "model": "Model 10043", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.795853202155726, + 25.148090215244707 + ] + }, + "properties": { + "id": "meter-10044", + "maker": "Maker J", + "model": "Model 10044", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03893410524212, + 26.576704090339135 + ] + }, + "properties": { + "id": "meter-10045", + "maker": "Maker E", + "model": "Model 10045", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.530628670845374, + 24.670184027159912 + ] + }, + "properties": { + "id": "meter-10046", + "maker": "Maker E", + "model": "Model 10046", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.4049309633772, + 24.612257735456264 + ] + }, + "properties": { + "id": "meter-10047", + "maker": "Maker B", + "model": "Model 10047", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.635881997990374, + 24.49237838535376 + ] + }, + "properties": { + "id": "meter-10048", + "maker": "Maker C", + "model": "Model 10048", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.990390130365185, + 26.360685155046642 + ] + }, + "properties": { + "id": "meter-10049", + "maker": "Maker A", + "model": "Model 10049", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.971514150975466, + 26.566755377600852 + ] + }, + "properties": { + "id": "meter-10050", + "maker": "Maker I", + "model": "Model 10050", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.10739516238162, + 24.317521122391515 + ] + }, + "properties": { + "id": "meter-10051", + "maker": "Maker F", + "model": "Model 10051", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.051677514477014, + 26.096618675147024 + ] + }, + "properties": { + "id": "meter-10052", + "maker": "Maker I", + "model": "Model 10052", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.981895796199794, + 26.411378450852965 + ] + }, + "properties": { + "id": "meter-10053", + "maker": "Maker B", + "model": "Model 10053", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98359206914535, + 26.30974030406214 + ] + }, + "properties": { + "id": "meter-10054", + "maker": "Maker F", + "model": "Model 10054", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.77652385375468, + 24.919577991163763 + ] + }, + "properties": { + "id": "meter-10055", + "maker": "Maker H", + "model": "Model 10055", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85525671205617, + 24.61958567858994 + ] + }, + "properties": { + "id": "meter-10056", + "maker": "Maker C", + "model": "Model 10056", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.02186662477399, + 29.90831676088879 + ] + }, + "properties": { + "id": "meter-10057", + "maker": "Maker A", + "model": "Model 10057", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.456981414205224, + 18.320142083078473 + ] + }, + "properties": { + "id": "meter-10058", + "maker": "Maker J", + "model": "Model 10058", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.326003464848654, + 25.41717958489851 + ] + }, + "properties": { + "id": "meter-10059", + "maker": "Maker E", + "model": "Model 10059", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.44532455274166, + 18.42883130474423 + ] + }, + "properties": { + "id": "meter-10060", + "maker": "Maker H", + "model": "Model 10060", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.335837090960986, + 17.450263568096645 + ] + }, + "properties": { + "id": "meter-10061", + "maker": "Maker J", + "model": "Model 10061", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.358370713018815, + 25.391251246420012 + ] + }, + "properties": { + "id": "meter-10062", + "maker": "Maker I", + "model": "Model 10062", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.393774117704446, + 21.277156331075076 + ] + }, + "properties": { + "id": "meter-10063", + "maker": "Maker E", + "model": "Model 10063", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62239008660524, + 27.704309790799368 + ] + }, + "properties": { + "id": "meter-10064", + "maker": "Maker F", + "model": "Model 10064", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.31079297851639, + 21.45656808363434 + ] + }, + "properties": { + "id": "meter-10065", + "maker": "Maker B", + "model": "Model 10065", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.86652723402881, + 24.301331229302637 + ] + }, + "properties": { + "id": "meter-10066", + "maker": "Maker C", + "model": "Model 10066", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06522449259342, + 24.38098702436779 + ] + }, + "properties": { + "id": "meter-10067", + "maker": "Maker B", + "model": "Model 10067", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.13621868121408, + 24.040163149928382 + ] + }, + "properties": { + "id": "meter-10068", + "maker": "Maker F", + "model": "Model 10068", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.60458872908205, + 28.507039470860853 + ] + }, + "properties": { + "id": "meter-10069", + "maker": "Maker E", + "model": "Model 10069", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.489508501749086, + 28.350340098852836 + ] + }, + "properties": { + "id": "meter-10070", + "maker": "Maker I", + "model": "Model 10070", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.669406045264715, + 25.39144329148458 + ] + }, + "properties": { + "id": "meter-10071", + "maker": "Maker E", + "model": "Model 10071", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.633270173628084, + 21.23239784876544 + ] + }, + "properties": { + "id": "meter-10072", + "maker": "Maker B", + "model": "Model 10072", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.47701028554869, + 18.311419278735002 + ] + }, + "properties": { + "id": "meter-10073", + "maker": "Maker E", + "model": "Model 10073", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58312339327397, + 25.52550064392337 + ] + }, + "properties": { + "id": "meter-10074", + "maker": "Maker F", + "model": "Model 10074", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50897192373862, + 18.22430123478909 + ] + }, + "properties": { + "id": "meter-10075", + "maker": "Maker E", + "model": "Model 10075", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.87087081670138, + 21.375142685808047 + ] + }, + "properties": { + "id": "meter-10076", + "maker": "Maker E", + "model": "Model 10076", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.83693736317868, + 24.915313254118253 + ] + }, + "properties": { + "id": "meter-10077", + "maker": "Maker D", + "model": "Model 10077", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.63571173344961, + 27.48278362574719 + ] + }, + "properties": { + "id": "meter-10078", + "maker": "Maker C", + "model": "Model 10078", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.37849598730614, + 21.604311630374166 + ] + }, + "properties": { + "id": "meter-10079", + "maker": "Maker B", + "model": "Model 10079", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.36404535760863, + 28.501203365191245 + ] + }, + "properties": { + "id": "meter-10080", + "maker": "Maker C", + "model": "Model 10080", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.57163761166758, + 28.24630626312292 + ] + }, + "properties": { + "id": "meter-10081", + "maker": "Maker H", + "model": "Model 10081", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.78954773403613, + 24.750978969525224 + ] + }, + "properties": { + "id": "meter-10082", + "maker": "Maker E", + "model": "Model 10082", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.89460725246741, + 18.09500808550999 + ] + }, + "properties": { + "id": "meter-10083", + "maker": "Maker I", + "model": "Model 10083", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24672542244261, + 21.52454389464424 + ] + }, + "properties": { + "id": "meter-10084", + "maker": "Maker A", + "model": "Model 10084", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.64526421251727, + 28.35320401220797 + ] + }, + "properties": { + "id": "meter-10085", + "maker": "Maker E", + "model": "Model 10085", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.643506517687044, + 18.282410458207732 + ] + }, + "properties": { + "id": "meter-10086", + "maker": "Maker A", + "model": "Model 10086", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.42930774861934, + 24.644966413318883 + ] + }, + "properties": { + "id": "meter-10087", + "maker": "Maker I", + "model": "Model 10087", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.361591968419674, + 28.48532919485833 + ] + }, + "properties": { + "id": "meter-10088", + "maker": "Maker F", + "model": "Model 10088", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.073364716221874, + 26.418514042586803 + ] + }, + "properties": { + "id": "meter-10089", + "maker": "Maker C", + "model": "Model 10089", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.98307659630559, + 27.53681181220339 + ] + }, + "properties": { + "id": "meter-10090", + "maker": "Maker D", + "model": "Model 10090", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.082766151097566, + 26.717468387736247 + ] + }, + "properties": { + "id": "meter-10091", + "maker": "Maker H", + "model": "Model 10091", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.373010431736276, + 24.446757331679628 + ] + }, + "properties": { + "id": "meter-10092", + "maker": "Maker H", + "model": "Model 10092", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.23637260997456, + 18.086961418769405 + ] + }, + "properties": { + "id": "meter-10093", + "maker": "Maker B", + "model": "Model 10093", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.40093566631234, + 29.89809413796769 + ] + }, + "properties": { + "id": "meter-10094", + "maker": "Maker F", + "model": "Model 10094", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10996829447206, + 26.480202497506244 + ] + }, + "properties": { + "id": "meter-10095", + "maker": "Maker J", + "model": "Model 10095", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.75206795565319, + 21.349876546084133 + ] + }, + "properties": { + "id": "meter-10096", + "maker": "Maker E", + "model": "Model 10096", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.672606054915825, + 24.691858097315006 + ] + }, + "properties": { + "id": "meter-10097", + "maker": "Maker D", + "model": "Model 10097", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.2278408622589, + 29.760803589277405 + ] + }, + "properties": { + "id": "meter-10098", + "maker": "Maker C", + "model": "Model 10098", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.30401863968993, + 18.00863518254011 + ] + }, + "properties": { + "id": "meter-10099", + "maker": "Maker B", + "model": "Model 10099", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10405623437411, + 17.50837019736957 + ] + }, + "properties": { + "id": "meter-10100", + "maker": "Maker G", + "model": "Model 10100", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.261348707444654, + 24.035048956625253 + ] + }, + "properties": { + "id": "meter-10101", + "maker": "Maker J", + "model": "Model 10101", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.83965709095213, + 17.524488938639642 + ] + }, + "properties": { + "id": "meter-10102", + "maker": "Maker I", + "model": "Model 10102", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.6088750698931, + 24.528904586148816 + ] + }, + "properties": { + "id": "meter-10103", + "maker": "Maker A", + "model": "Model 10103", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.41314904465467, + 25.40767862393911 + ] + }, + "properties": { + "id": "meter-10104", + "maker": "Maker F", + "model": "Model 10104", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.33120292983121, + 24.045787832457304 + ] + }, + "properties": { + "id": "meter-10105", + "maker": "Maker F", + "model": "Model 10105", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.2877309412777, + 18.233873409600932 + ] + }, + "properties": { + "id": "meter-10106", + "maker": "Maker D", + "model": "Model 10106", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.87549480832354, + 18.205786249029277 + ] + }, + "properties": { + "id": "meter-10107", + "maker": "Maker G", + "model": "Model 10107", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.84360074601219, + 26.558881594368593 + ] + }, + "properties": { + "id": "meter-10108", + "maker": "Maker J", + "model": "Model 10108", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.951384968740086, + 30.72722761519749 + ] + }, + "properties": { + "id": "meter-10109", + "maker": "Maker H", + "model": "Model 10109", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06726963096332, + 24.238384470401105 + ] + }, + "properties": { + "id": "meter-10110", + "maker": "Maker I", + "model": "Model 10110", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.50356728769776, + 24.540575755114407 + ] + }, + "properties": { + "id": "meter-10111", + "maker": "Maker F", + "model": "Model 10111", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.103490821100635, + 24.12981953398302 + ] + }, + "properties": { + "id": "meter-10112", + "maker": "Maker F", + "model": "Model 10112", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.611046928010474, + 18.346879646309848 + ] + }, + "properties": { + "id": "meter-10113", + "maker": "Maker H", + "model": "Model 10113", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18628143703826, + 26.330715418290414 + ] + }, + "properties": { + "id": "meter-10114", + "maker": "Maker A", + "model": "Model 10114", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.076918008371734, + 26.353919973912507 + ] + }, + "properties": { + "id": "meter-10115", + "maker": "Maker J", + "model": "Model 10115", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.930331312662666, + 26.32815980525035 + ] + }, + "properties": { + "id": "meter-10116", + "maker": "Maker I", + "model": "Model 10116", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.50338715320829, + 20.01362662212703 + ] + }, + "properties": { + "id": "meter-10117", + "maker": "Maker J", + "model": "Model 10117", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.78307028679107, + 27.55901342393745 + ] + }, + "properties": { + "id": "meter-10118", + "maker": "Maker C", + "model": "Model 10118", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.36854114538858, + 30.145530693765053 + ] + }, + "properties": { + "id": "meter-10119", + "maker": "Maker I", + "model": "Model 10119", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.77449798513418, + 25.26016549229902 + ] + }, + "properties": { + "id": "meter-10120", + "maker": "Maker F", + "model": "Model 10120", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.905107483740316, + 26.380669862334216 + ] + }, + "properties": { + "id": "meter-10121", + "maker": "Maker B", + "model": "Model 10121", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.988675290983466, + 26.506230421928358 + ] + }, + "properties": { + "id": "meter-10122", + "maker": "Maker G", + "model": "Model 10122", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.29179911844232, + 17.592560803454106 + ] + }, + "properties": { + "id": "meter-10123", + "maker": "Maker F", + "model": "Model 10123", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.45964603392258, + 28.39687121538662 + ] + }, + "properties": { + "id": "meter-10124", + "maker": "Maker G", + "model": "Model 10124", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.277431608363486, + 21.521330555264985 + ] + }, + "properties": { + "id": "meter-10125", + "maker": "Maker I", + "model": "Model 10125", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.2272804718564, + 24.22990234700468 + ] + }, + "properties": { + "id": "meter-10126", + "maker": "Maker J", + "model": "Model 10126", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.348035753589386, + 24.04720362695798 + ] + }, + "properties": { + "id": "meter-10127", + "maker": "Maker D", + "model": "Model 10127", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.49971405611591, + 19.868983537059894 + ] + }, + "properties": { + "id": "meter-10128", + "maker": "Maker E", + "model": "Model 10128", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.02864976802025, + 24.328607065722636 + ] + }, + "properties": { + "id": "meter-10129", + "maker": "Maker A", + "model": "Model 10129", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.20525111830455, + 17.68051373902629 + ] + }, + "properties": { + "id": "meter-10130", + "maker": "Maker B", + "model": "Model 10130", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.024294752158795, + 24.094948677649445 + ] + }, + "properties": { + "id": "meter-10131", + "maker": "Maker J", + "model": "Model 10131", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.7878471972035, + 26.503038028388605 + ] + }, + "properties": { + "id": "meter-10132", + "maker": "Maker J", + "model": "Model 10132", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10110638176786, + 26.31048075047248 + ] + }, + "properties": { + "id": "meter-10133", + "maker": "Maker A", + "model": "Model 10133", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.65049590986586, + 25.531823285979055 + ] + }, + "properties": { + "id": "meter-10134", + "maker": "Maker J", + "model": "Model 10134", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.82209170347422, + 28.476618246504007 + ] + }, + "properties": { + "id": "meter-10135", + "maker": "Maker J", + "model": "Model 10135", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.579330989877604, + 28.374106759038874 + ] + }, + "properties": { + "id": "meter-10136", + "maker": "Maker I", + "model": "Model 10136", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87681464037015, + 26.57362040257457 + ] + }, + "properties": { + "id": "meter-10137", + "maker": "Maker G", + "model": "Model 10137", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.54084612246, + 18.25878836708623 + ] + }, + "properties": { + "id": "meter-10138", + "maker": "Maker B", + "model": "Model 10138", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.197514566292774, + 30.16051326473457 + ] + }, + "properties": { + "id": "meter-10139", + "maker": "Maker D", + "model": "Model 10139", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.92085502086126, + 30.806094255434985 + ] + }, + "properties": { + "id": "meter-10140", + "maker": "Maker G", + "model": "Model 10140", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.110895088772395, + 17.39357548887082 + ] + }, + "properties": { + "id": "meter-10141", + "maker": "Maker G", + "model": "Model 10141", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.679035051584165, + 21.437020815135238 + ] + }, + "properties": { + "id": "meter-10142", + "maker": "Maker C", + "model": "Model 10142", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09418611005362, + 24.217291680397135 + ] + }, + "properties": { + "id": "meter-10143", + "maker": "Maker F", + "model": "Model 10143", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.75184590033533, + 24.964239886973164 + ] + }, + "properties": { + "id": "meter-10144", + "maker": "Maker D", + "model": "Model 10144", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.44346797883014, + 28.21056716202398 + ] + }, + "properties": { + "id": "meter-10145", + "maker": "Maker I", + "model": "Model 10145", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.7662864717925, + 21.40751576685735 + ] + }, + "properties": { + "id": "meter-10146", + "maker": "Maker I", + "model": "Model 10146", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.8950508047046, + 27.662380955819934 + ] + }, + "properties": { + "id": "meter-10147", + "maker": "Maker C", + "model": "Model 10147", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.69353686186228, + 28.517611026958807 + ] + }, + "properties": { + "id": "meter-10148", + "maker": "Maker E", + "model": "Model 10148", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.565740609090525, + 25.38434051744563 + ] + }, + "properties": { + "id": "meter-10149", + "maker": "Maker F", + "model": "Model 10149", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.205740394456164, + 26.352134786403305 + ] + }, + "properties": { + "id": "meter-10150", + "maker": "Maker A", + "model": "Model 10150", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.687996631258756, + 28.31391946812279 + ] + }, + "properties": { + "id": "meter-10151", + "maker": "Maker A", + "model": "Model 10151", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.40130603845649, + 18.07184454062102 + ] + }, + "properties": { + "id": "meter-10152", + "maker": "Maker D", + "model": "Model 10152", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05206644710108, + 26.272710518164917 + ] + }, + "properties": { + "id": "meter-10153", + "maker": "Maker F", + "model": "Model 10153", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67040876921438, + 21.563211901961772 + ] + }, + "properties": { + "id": "meter-10154", + "maker": "Maker F", + "model": "Model 10154", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19977445872454, + 26.298128118205383 + ] + }, + "properties": { + "id": "meter-10155", + "maker": "Maker I", + "model": "Model 10155", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.10841797652421, + 24.053644313571663 + ] + }, + "properties": { + "id": "meter-10156", + "maker": "Maker A", + "model": "Model 10156", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02142878365601, + 26.519499765151306 + ] + }, + "properties": { + "id": "meter-10157", + "maker": "Maker I", + "model": "Model 10157", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.30007799999622, + 30.111759413977403 + ] + }, + "properties": { + "id": "meter-10158", + "maker": "Maker E", + "model": "Model 10158", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.64044407194443, + 24.5648937539383 + ] + }, + "properties": { + "id": "meter-10159", + "maker": "Maker I", + "model": "Model 10159", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.83058284941599, + 18.520904655090007 + ] + }, + "properties": { + "id": "meter-10160", + "maker": "Maker E", + "model": "Model 10160", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.630163004850885, + 27.52458808715231 + ] + }, + "properties": { + "id": "meter-10161", + "maker": "Maker F", + "model": "Model 10161", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.326591379841055, + 21.68267257618011 + ] + }, + "properties": { + "id": "meter-10162", + "maker": "Maker B", + "model": "Model 10162", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.115860486235626, + 26.420029826029204 + ] + }, + "properties": { + "id": "meter-10163", + "maker": "Maker I", + "model": "Model 10163", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.9044500062566, + 21.39981705884833 + ] + }, + "properties": { + "id": "meter-10164", + "maker": "Maker C", + "model": "Model 10164", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.107739937683256, + 26.15743108563745 + ] + }, + "properties": { + "id": "meter-10165", + "maker": "Maker E", + "model": "Model 10165", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.6280532606781, + 21.489589955639623 + ] + }, + "properties": { + "id": "meter-10166", + "maker": "Maker F", + "model": "Model 10166", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.063486321768394, + 21.400342025501764 + ] + }, + "properties": { + "id": "meter-10167", + "maker": "Maker C", + "model": "Model 10167", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.52219025706585, + 24.8141471229967 + ] + }, + "properties": { + "id": "meter-10168", + "maker": "Maker G", + "model": "Model 10168", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.03243888270798, + 24.10294722678201 + ] + }, + "properties": { + "id": "meter-10169", + "maker": "Maker A", + "model": "Model 10169", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.92544845256791, + 24.8188606711706 + ] + }, + "properties": { + "id": "meter-10170", + "maker": "Maker J", + "model": "Model 10170", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42265396559595, + 20.213709378259576 + ] + }, + "properties": { + "id": "meter-10171", + "maker": "Maker E", + "model": "Model 10171", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.025560601571456, + 24.184497834049587 + ] + }, + "properties": { + "id": "meter-10172", + "maker": "Maker C", + "model": "Model 10172", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45564191901071, + 20.01193045164806 + ] + }, + "properties": { + "id": "meter-10173", + "maker": "Maker I", + "model": "Model 10173", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.62048795494764, + 24.483910061018335 + ] + }, + "properties": { + "id": "meter-10174", + "maker": "Maker A", + "model": "Model 10174", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08675118734204, + 26.447806867626205 + ] + }, + "properties": { + "id": "meter-10175", + "maker": "Maker H", + "model": "Model 10175", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.92929639073474, + 27.66826375434067 + ] + }, + "properties": { + "id": "meter-10176", + "maker": "Maker I", + "model": "Model 10176", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.61381705925531, + 19.849895065253225 + ] + }, + "properties": { + "id": "meter-10177", + "maker": "Maker J", + "model": "Model 10177", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.274418637287, + 24.18248439445748 + ] + }, + "properties": { + "id": "meter-10178", + "maker": "Maker A", + "model": "Model 10178", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.21293108975746, + 17.473815325804512 + ] + }, + "properties": { + "id": "meter-10179", + "maker": "Maker J", + "model": "Model 10179", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.8350726566489, + 25.382644776114184 + ] + }, + "properties": { + "id": "meter-10180", + "maker": "Maker G", + "model": "Model 10180", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.66798958874489, + 27.329459459288582 + ] + }, + "properties": { + "id": "meter-10181", + "maker": "Maker D", + "model": "Model 10181", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.82606763225617, + 26.38082733869792 + ] + }, + "properties": { + "id": "meter-10182", + "maker": "Maker E", + "model": "Model 10182", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96433972175693, + 26.3574507816937 + ] + }, + "properties": { + "id": "meter-10183", + "maker": "Maker A", + "model": "Model 10183", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.623399734758394, + 27.453194362961828 + ] + }, + "properties": { + "id": "meter-10184", + "maker": "Maker H", + "model": "Model 10184", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.61665363634757, + 25.422139628398636 + ] + }, + "properties": { + "id": "meter-10185", + "maker": "Maker B", + "model": "Model 10185", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.063810823653235, + 24.09855026807878 + ] + }, + "properties": { + "id": "meter-10186", + "maker": "Maker E", + "model": "Model 10186", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.20358000269385, + 21.695522719936452 + ] + }, + "properties": { + "id": "meter-10187", + "maker": "Maker G", + "model": "Model 10187", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.95253548950447, + 26.319725380831148 + ] + }, + "properties": { + "id": "meter-10188", + "maker": "Maker F", + "model": "Model 10188", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.58153862614878, + 18.224359073917835 + ] + }, + "properties": { + "id": "meter-10189", + "maker": "Maker G", + "model": "Model 10189", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81061876064555, + 21.2484773685451 + ] + }, + "properties": { + "id": "meter-10190", + "maker": "Maker G", + "model": "Model 10190", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.296485371532, + 29.955749710915164 + ] + }, + "properties": { + "id": "meter-10191", + "maker": "Maker C", + "model": "Model 10191", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.52158505053842, + 19.856888334143743 + ] + }, + "properties": { + "id": "meter-10192", + "maker": "Maker H", + "model": "Model 10192", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.54868966809015, + 28.356614678146116 + ] + }, + "properties": { + "id": "meter-10193", + "maker": "Maker B", + "model": "Model 10193", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.562393033626854, + 24.600717495477156 + ] + }, + "properties": { + "id": "meter-10194", + "maker": "Maker A", + "model": "Model 10194", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92132998322672, + 26.59460822399924 + ] + }, + "properties": { + "id": "meter-10195", + "maker": "Maker A", + "model": "Model 10195", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.73866543461162, + 21.241057257979318 + ] + }, + "properties": { + "id": "meter-10196", + "maker": "Maker B", + "model": "Model 10196", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93442515692392, + 26.44707398437909 + ] + }, + "properties": { + "id": "meter-10197", + "maker": "Maker J", + "model": "Model 10197", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69060773710732, + 18.15406415866212 + ] + }, + "properties": { + "id": "meter-10198", + "maker": "Maker D", + "model": "Model 10198", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.16864139716931, + 17.57924710557166 + ] + }, + "properties": { + "id": "meter-10199", + "maker": "Maker A", + "model": "Model 10199", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.0241690297427, + 26.208268057143783 + ] + }, + "properties": { + "id": "meter-10200", + "maker": "Maker D", + "model": "Model 10200", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4783723897958, + 19.909843047736352 + ] + }, + "properties": { + "id": "meter-10201", + "maker": "Maker H", + "model": "Model 10201", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.665778274911546, + 24.691280653136417 + ] + }, + "properties": { + "id": "meter-10202", + "maker": "Maker E", + "model": "Model 10202", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96439019930306, + 26.572986451903926 + ] + }, + "properties": { + "id": "meter-10203", + "maker": "Maker B", + "model": "Model 10203", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.78538700258346, + 27.3316824895238 + ] + }, + "properties": { + "id": "meter-10204", + "maker": "Maker I", + "model": "Model 10204", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21618860141216, + 21.458938164417223 + ] + }, + "properties": { + "id": "meter-10205", + "maker": "Maker H", + "model": "Model 10205", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.54521621946592, + 24.473952891096527 + ] + }, + "properties": { + "id": "meter-10206", + "maker": "Maker A", + "model": "Model 10206", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.014199816280396, + 26.504217431931128 + ] + }, + "properties": { + "id": "meter-10207", + "maker": "Maker J", + "model": "Model 10207", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.073066333362796, + 26.327677087625123 + ] + }, + "properties": { + "id": "meter-10208", + "maker": "Maker G", + "model": "Model 10208", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.66119368570689, + 24.71111133285394 + ] + }, + "properties": { + "id": "meter-10209", + "maker": "Maker G", + "model": "Model 10209", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.13652817818005, + 30.11627768550289 + ] + }, + "properties": { + "id": "meter-10210", + "maker": "Maker H", + "model": "Model 10210", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.501119161296785, + 20.163802254541658 + ] + }, + "properties": { + "id": "meter-10211", + "maker": "Maker I", + "model": "Model 10211", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.952364279740344, + 26.356189858485475 + ] + }, + "properties": { + "id": "meter-10212", + "maker": "Maker B", + "model": "Model 10212", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84557922003758, + 21.315085836485036 + ] + }, + "properties": { + "id": "meter-10213", + "maker": "Maker B", + "model": "Model 10213", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15676803995373, + 26.25643626670694 + ] + }, + "properties": { + "id": "meter-10214", + "maker": "Maker I", + "model": "Model 10214", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.90925417020926, + 26.21521924066475 + ] + }, + "properties": { + "id": "meter-10215", + "maker": "Maker G", + "model": "Model 10215", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.53960925678592, + 24.428855946689602 + ] + }, + "properties": { + "id": "meter-10216", + "maker": "Maker J", + "model": "Model 10216", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60477761684469, + 21.45896745599448 + ] + }, + "properties": { + "id": "meter-10217", + "maker": "Maker E", + "model": "Model 10217", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52259707034682, + 18.339005930999267 + ] + }, + "properties": { + "id": "meter-10218", + "maker": "Maker A", + "model": "Model 10218", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.83888995069378, + 21.36910754174844 + ] + }, + "properties": { + "id": "meter-10219", + "maker": "Maker J", + "model": "Model 10219", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14859904056823, + 26.420104684397256 + ] + }, + "properties": { + "id": "meter-10220", + "maker": "Maker C", + "model": "Model 10220", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.07434105331503, + 31.02578916314374 + ] + }, + "properties": { + "id": "meter-10221", + "maker": "Maker A", + "model": "Model 10221", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71471552609794, + 18.33993107044784 + ] + }, + "properties": { + "id": "meter-10222", + "maker": "Maker F", + "model": "Model 10222", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.711025496672995, + 26.189052670081487 + ] + }, + "properties": { + "id": "meter-10223", + "maker": "Maker C", + "model": "Model 10223", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.86582881507181, + 26.246548735104426 + ] + }, + "properties": { + "id": "meter-10224", + "maker": "Maker E", + "model": "Model 10224", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.8389409814815, + 27.529569676112217 + ] + }, + "properties": { + "id": "meter-10225", + "maker": "Maker H", + "model": "Model 10225", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10566947914629, + 17.446425096420516 + ] + }, + "properties": { + "id": "meter-10226", + "maker": "Maker I", + "model": "Model 10226", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.654887066135274, + 18.366019656078294 + ] + }, + "properties": { + "id": "meter-10227", + "maker": "Maker F", + "model": "Model 10227", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.18657200506511, + 29.967319436419366 + ] + }, + "properties": { + "id": "meter-10228", + "maker": "Maker G", + "model": "Model 10228", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.399236456832206, + 18.268836996227304 + ] + }, + "properties": { + "id": "meter-10229", + "maker": "Maker B", + "model": "Model 10229", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.56715296398152, + 18.302076663724296 + ] + }, + "properties": { + "id": "meter-10230", + "maker": "Maker E", + "model": "Model 10230", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.20565747529122, + 31.046079524053553 + ] + }, + "properties": { + "id": "meter-10231", + "maker": "Maker E", + "model": "Model 10231", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62050128346902, + 20.2259536183295 + ] + }, + "properties": { + "id": "meter-10232", + "maker": "Maker I", + "model": "Model 10232", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.491132971913785, + 27.376107605380106 + ] + }, + "properties": { + "id": "meter-10233", + "maker": "Maker J", + "model": "Model 10233", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.13281727831888, + 21.592688468132813 + ] + }, + "properties": { + "id": "meter-10234", + "maker": "Maker A", + "model": "Model 10234", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.40536774637227, + 19.957846599015383 + ] + }, + "properties": { + "id": "meter-10235", + "maker": "Maker G", + "model": "Model 10235", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52909192909896, + 18.482152622204545 + ] + }, + "properties": { + "id": "meter-10236", + "maker": "Maker D", + "model": "Model 10236", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89185684533146, + 21.355046672817124 + ] + }, + "properties": { + "id": "meter-10237", + "maker": "Maker H", + "model": "Model 10237", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21419836260164, + 26.291599593553915 + ] + }, + "properties": { + "id": "meter-10238", + "maker": "Maker F", + "model": "Model 10238", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.819519347784556, + 25.223202711003648 + ] + }, + "properties": { + "id": "meter-10239", + "maker": "Maker H", + "model": "Model 10239", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.554629256266054, + 24.42416961079426 + ] + }, + "properties": { + "id": "meter-10240", + "maker": "Maker C", + "model": "Model 10240", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.84116314646172, + 26.087616417402906 + ] + }, + "properties": { + "id": "meter-10241", + "maker": "Maker I", + "model": "Model 10241", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.28268482678504, + 19.933368568498537 + ] + }, + "properties": { + "id": "meter-10242", + "maker": "Maker F", + "model": "Model 10242", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07989957693574, + 24.069889333815293 + ] + }, + "properties": { + "id": "meter-10243", + "maker": "Maker B", + "model": "Model 10243", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.84618118453039, + 26.397693795884937 + ] + }, + "properties": { + "id": "meter-10244", + "maker": "Maker D", + "model": "Model 10244", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.15433581773998, + 29.727951493693016 + ] + }, + "properties": { + "id": "meter-10245", + "maker": "Maker A", + "model": "Model 10245", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.3754978016005, + 24.566859157784958 + ] + }, + "properties": { + "id": "meter-10246", + "maker": "Maker D", + "model": "Model 10246", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08398588605719, + 26.41970613722547 + ] + }, + "properties": { + "id": "meter-10247", + "maker": "Maker G", + "model": "Model 10247", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.451690081215396, + 20.01892461673965 + ] + }, + "properties": { + "id": "meter-10248", + "maker": "Maker F", + "model": "Model 10248", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02238109397539, + 26.38775123026855 + ] + }, + "properties": { + "id": "meter-10249", + "maker": "Maker C", + "model": "Model 10249", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.2461147708251, + 17.6589951250024 + ] + }, + "properties": { + "id": "meter-10250", + "maker": "Maker I", + "model": "Model 10250", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.665060703482396, + 28.48804752633027 + ] + }, + "properties": { + "id": "meter-10251", + "maker": "Maker H", + "model": "Model 10251", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.780958448724796, + 21.29986479007899 + ] + }, + "properties": { + "id": "meter-10252", + "maker": "Maker F", + "model": "Model 10252", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95679039027188, + 26.277122483598692 + ] + }, + "properties": { + "id": "meter-10253", + "maker": "Maker A", + "model": "Model 10253", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.758894308532696, + 28.49051270540977 + ] + }, + "properties": { + "id": "meter-10254", + "maker": "Maker C", + "model": "Model 10254", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.572294176913125, + 18.449858449285554 + ] + }, + "properties": { + "id": "meter-10255", + "maker": "Maker G", + "model": "Model 10255", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.543079930526645, + 20.126883063571473 + ] + }, + "properties": { + "id": "meter-10256", + "maker": "Maker B", + "model": "Model 10256", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12030657575098, + 17.516745573246425 + ] + }, + "properties": { + "id": "meter-10257", + "maker": "Maker H", + "model": "Model 10257", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.584993821572226, + 25.346897944176245 + ] + }, + "properties": { + "id": "meter-10258", + "maker": "Maker E", + "model": "Model 10258", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.22662989594367, + 17.735295153987288 + ] + }, + "properties": { + "id": "meter-10259", + "maker": "Maker F", + "model": "Model 10259", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.164725464495675, + 17.429687702278557 + ] + }, + "properties": { + "id": "meter-10260", + "maker": "Maker F", + "model": "Model 10260", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.87571883927509, + 27.57875462490898 + ] + }, + "properties": { + "id": "meter-10261", + "maker": "Maker B", + "model": "Model 10261", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.55610858788113, + 18.08399048376441 + ] + }, + "properties": { + "id": "meter-10262", + "maker": "Maker G", + "model": "Model 10262", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.153108795317046, + 26.203787175294906 + ] + }, + "properties": { + "id": "meter-10263", + "maker": "Maker D", + "model": "Model 10263", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.865973185905304, + 21.50074099261522 + ] + }, + "properties": { + "id": "meter-10264", + "maker": "Maker D", + "model": "Model 10264", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.72029625955374, + 27.424601511154385 + ] + }, + "properties": { + "id": "meter-10265", + "maker": "Maker D", + "model": "Model 10265", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.90971450213206, + 18.32543521694027 + ] + }, + "properties": { + "id": "meter-10266", + "maker": "Maker B", + "model": "Model 10266", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.55543930700378, + 18.129526756772165 + ] + }, + "properties": { + "id": "meter-10267", + "maker": "Maker E", + "model": "Model 10267", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.94910940605427, + 31.128550570681845 + ] + }, + "properties": { + "id": "meter-10268", + "maker": "Maker G", + "model": "Model 10268", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72978709327915, + 18.165729294226274 + ] + }, + "properties": { + "id": "meter-10269", + "maker": "Maker B", + "model": "Model 10269", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.30547823631255, + 21.612034959758553 + ] + }, + "properties": { + "id": "meter-10270", + "maker": "Maker H", + "model": "Model 10270", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.753484113856004, + 26.35498034137934 + ] + }, + "properties": { + "id": "meter-10271", + "maker": "Maker H", + "model": "Model 10271", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.46825063043015, + 18.18807965464114 + ] + }, + "properties": { + "id": "meter-10272", + "maker": "Maker G", + "model": "Model 10272", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.525599323274925, + 24.53275645600555 + ] + }, + "properties": { + "id": "meter-10273", + "maker": "Maker B", + "model": "Model 10273", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.61262832801784, + 24.98124191590977 + ] + }, + "properties": { + "id": "meter-10274", + "maker": "Maker E", + "model": "Model 10274", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.39710646406947, + 30.00248534648215 + ] + }, + "properties": { + "id": "meter-10275", + "maker": "Maker E", + "model": "Model 10275", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.225921330043214, + 24.206073551542516 + ] + }, + "properties": { + "id": "meter-10276", + "maker": "Maker J", + "model": "Model 10276", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.45929075644804, + 21.475455490197415 + ] + }, + "properties": { + "id": "meter-10277", + "maker": "Maker G", + "model": "Model 10277", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.43198092596289, + 24.78208981085561 + ] + }, + "properties": { + "id": "meter-10278", + "maker": "Maker D", + "model": "Model 10278", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.95057971409786, + 21.214479860793325 + ] + }, + "properties": { + "id": "meter-10279", + "maker": "Maker A", + "model": "Model 10279", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.227574115599936, + 21.435915402245367 + ] + }, + "properties": { + "id": "meter-10280", + "maker": "Maker J", + "model": "Model 10280", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.8603941342554, + 24.5011311006868 + ] + }, + "properties": { + "id": "meter-10281", + "maker": "Maker A", + "model": "Model 10281", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.399488380495924, + 20.247484109707862 + ] + }, + "properties": { + "id": "meter-10282", + "maker": "Maker J", + "model": "Model 10282", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.301664786302645, + 19.773832266440365 + ] + }, + "properties": { + "id": "meter-10283", + "maker": "Maker I", + "model": "Model 10283", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.60749459933076, + 25.308372734925907 + ] + }, + "properties": { + "id": "meter-10284", + "maker": "Maker G", + "model": "Model 10284", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.85988765135976, + 27.50461518773782 + ] + }, + "properties": { + "id": "meter-10285", + "maker": "Maker D", + "model": "Model 10285", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.72635997493907, + 24.72161126774828 + ] + }, + "properties": { + "id": "meter-10286", + "maker": "Maker A", + "model": "Model 10286", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.609333286613825, + 24.52702272983493 + ] + }, + "properties": { + "id": "meter-10287", + "maker": "Maker D", + "model": "Model 10287", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.95372692030646, + 30.861369237983908 + ] + }, + "properties": { + "id": "meter-10288", + "maker": "Maker G", + "model": "Model 10288", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.5495107171521, + 28.56758308070858 + ] + }, + "properties": { + "id": "meter-10289", + "maker": "Maker I", + "model": "Model 10289", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.257672936979986, + 31.1572799859095 + ] + }, + "properties": { + "id": "meter-10290", + "maker": "Maker F", + "model": "Model 10290", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.846212107408725, + 26.400529949052192 + ] + }, + "properties": { + "id": "meter-10291", + "maker": "Maker E", + "model": "Model 10291", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.78285212974182, + 24.942439657771033 + ] + }, + "properties": { + "id": "meter-10292", + "maker": "Maker G", + "model": "Model 10292", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.89012747535777, + 26.15595766333621 + ] + }, + "properties": { + "id": "meter-10293", + "maker": "Maker G", + "model": "Model 10293", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.896258176307576, + 26.55454915319355 + ] + }, + "properties": { + "id": "meter-10294", + "maker": "Maker C", + "model": "Model 10294", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.78564112979526, + 28.25674130244803 + ] + }, + "properties": { + "id": "meter-10295", + "maker": "Maker J", + "model": "Model 10295", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.76174871274064, + 18.324923388318116 + ] + }, + "properties": { + "id": "meter-10296", + "maker": "Maker C", + "model": "Model 10296", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.934184733983564, + 26.678771428703598 + ] + }, + "properties": { + "id": "meter-10297", + "maker": "Maker A", + "model": "Model 10297", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.19723412365811, + 30.932619493060933 + ] + }, + "properties": { + "id": "meter-10298", + "maker": "Maker I", + "model": "Model 10298", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20769095683411, + 29.97283480792104 + ] + }, + "properties": { + "id": "meter-10299", + "maker": "Maker E", + "model": "Model 10299", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.77104625729415, + 18.29104929562971 + ] + }, + "properties": { + "id": "meter-10300", + "maker": "Maker F", + "model": "Model 10300", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.868197867729656, + 26.582154325587247 + ] + }, + "properties": { + "id": "meter-10301", + "maker": "Maker E", + "model": "Model 10301", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.89229619038212, + 26.44491809426397 + ] + }, + "properties": { + "id": "meter-10302", + "maker": "Maker H", + "model": "Model 10302", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.101287500953035, + 17.470100913124636 + ] + }, + "properties": { + "id": "meter-10303", + "maker": "Maker D", + "model": "Model 10303", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.33691774467566, + 21.512514107587677 + ] + }, + "properties": { + "id": "meter-10304", + "maker": "Maker I", + "model": "Model 10304", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.169759783330164, + 26.415062822095287 + ] + }, + "properties": { + "id": "meter-10305", + "maker": "Maker F", + "model": "Model 10305", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.112685931096756, + 26.697289818272832 + ] + }, + "properties": { + "id": "meter-10306", + "maker": "Maker C", + "model": "Model 10306", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.57408403672885, + 18.444647645972104 + ] + }, + "properties": { + "id": "meter-10307", + "maker": "Maker C", + "model": "Model 10307", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.23262609175789, + 24.040239339843914 + ] + }, + "properties": { + "id": "meter-10308", + "maker": "Maker I", + "model": "Model 10308", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.114515980685134, + 17.758120474004805 + ] + }, + "properties": { + "id": "meter-10309", + "maker": "Maker B", + "model": "Model 10309", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57019409245541, + 25.403946757443233 + ] + }, + "properties": { + "id": "meter-10310", + "maker": "Maker I", + "model": "Model 10310", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73555142123652, + 18.154590458952455 + ] + }, + "properties": { + "id": "meter-10311", + "maker": "Maker E", + "model": "Model 10311", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.588131964091836, + 28.395821777037412 + ] + }, + "properties": { + "id": "meter-10312", + "maker": "Maker E", + "model": "Model 10312", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.74089493988947, + 18.013561733882817 + ] + }, + "properties": { + "id": "meter-10313", + "maker": "Maker F", + "model": "Model 10313", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.485542642146505, + 20.02318119716798 + ] + }, + "properties": { + "id": "meter-10314", + "maker": "Maker J", + "model": "Model 10314", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.846642738717925, + 18.394667555034875 + ] + }, + "properties": { + "id": "meter-10315", + "maker": "Maker J", + "model": "Model 10315", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18589913228522, + 26.231189851840526 + ] + }, + "properties": { + "id": "meter-10316", + "maker": "Maker J", + "model": "Model 10316", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07187203744616, + 26.376914041882515 + ] + }, + "properties": { + "id": "meter-10317", + "maker": "Maker F", + "model": "Model 10317", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86258311824331, + 21.236305600040073 + ] + }, + "properties": { + "id": "meter-10318", + "maker": "Maker A", + "model": "Model 10318", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.78071208749326, + 27.75887777629873 + ] + }, + "properties": { + "id": "meter-10319", + "maker": "Maker I", + "model": "Model 10319", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.30709686109557, + 20.188176604709497 + ] + }, + "properties": { + "id": "meter-10320", + "maker": "Maker F", + "model": "Model 10320", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.26108986775706, + 29.897997510934026 + ] + }, + "properties": { + "id": "meter-10321", + "maker": "Maker C", + "model": "Model 10321", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.673727940121076, + 24.714028065230927 + ] + }, + "properties": { + "id": "meter-10322", + "maker": "Maker I", + "model": "Model 10322", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21071791818638, + 30.23971441953811 + ] + }, + "properties": { + "id": "meter-10323", + "maker": "Maker F", + "model": "Model 10323", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.2655476580842, + 19.871964318288764 + ] + }, + "properties": { + "id": "meter-10324", + "maker": "Maker E", + "model": "Model 10324", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.57449332620994, + 27.307244004076157 + ] + }, + "properties": { + "id": "meter-10325", + "maker": "Maker J", + "model": "Model 10325", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45230180011245, + 18.155945430978598 + ] + }, + "properties": { + "id": "meter-10326", + "maker": "Maker G", + "model": "Model 10326", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91489990369108, + 26.510178554078017 + ] + }, + "properties": { + "id": "meter-10327", + "maker": "Maker J", + "model": "Model 10327", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.9634514363309, + 26.346757283878254 + ] + }, + "properties": { + "id": "meter-10328", + "maker": "Maker H", + "model": "Model 10328", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.595269116292684, + 24.535409972154103 + ] + }, + "properties": { + "id": "meter-10329", + "maker": "Maker A", + "model": "Model 10329", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.22172068431378, + 21.42210355435301 + ] + }, + "properties": { + "id": "meter-10330", + "maker": "Maker C", + "model": "Model 10330", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.15803461165586, + 17.781956983796704 + ] + }, + "properties": { + "id": "meter-10331", + "maker": "Maker A", + "model": "Model 10331", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.188545945407, + 26.384752816138615 + ] + }, + "properties": { + "id": "meter-10332", + "maker": "Maker C", + "model": "Model 10332", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.581075327808755, + 27.377906346964345 + ] + }, + "properties": { + "id": "meter-10333", + "maker": "Maker I", + "model": "Model 10333", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.073144126377926, + 26.45205987853812 + ] + }, + "properties": { + "id": "meter-10334", + "maker": "Maker C", + "model": "Model 10334", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.172468573099096, + 21.30373046875422 + ] + }, + "properties": { + "id": "meter-10335", + "maker": "Maker D", + "model": "Model 10335", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.251387698078226, + 30.065319100921386 + ] + }, + "properties": { + "id": "meter-10336", + "maker": "Maker G", + "model": "Model 10336", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.546385201085265, + 18.205253307425064 + ] + }, + "properties": { + "id": "meter-10337", + "maker": "Maker H", + "model": "Model 10337", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.41577462615659, + 24.570530829265618 + ] + }, + "properties": { + "id": "meter-10338", + "maker": "Maker A", + "model": "Model 10338", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.7917716052549, + 21.295862035869487 + ] + }, + "properties": { + "id": "meter-10339", + "maker": "Maker B", + "model": "Model 10339", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.42244541180248, + 18.445367899561546 + ] + }, + "properties": { + "id": "meter-10340", + "maker": "Maker E", + "model": "Model 10340", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.31185309777095, + 29.943222279990557 + ] + }, + "properties": { + "id": "meter-10341", + "maker": "Maker D", + "model": "Model 10341", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98771067477887, + 26.290501526628326 + ] + }, + "properties": { + "id": "meter-10342", + "maker": "Maker B", + "model": "Model 10342", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.997603046982704, + 31.24629182415482 + ] + }, + "properties": { + "id": "meter-10343", + "maker": "Maker B", + "model": "Model 10343", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0169341875573, + 26.442899258049874 + ] + }, + "properties": { + "id": "meter-10344", + "maker": "Maker B", + "model": "Model 10344", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89975482487478, + 21.30649084808697 + ] + }, + "properties": { + "id": "meter-10345", + "maker": "Maker F", + "model": "Model 10345", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.77420420102572, + 30.9371636604908 + ] + }, + "properties": { + "id": "meter-10346", + "maker": "Maker G", + "model": "Model 10346", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.20325358150321, + 24.22446577594974 + ] + }, + "properties": { + "id": "meter-10347", + "maker": "Maker J", + "model": "Model 10347", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.25708831317251, + 24.21728416490966 + ] + }, + "properties": { + "id": "meter-10348", + "maker": "Maker H", + "model": "Model 10348", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.570746416835675, + 25.33028496141002 + ] + }, + "properties": { + "id": "meter-10349", + "maker": "Maker G", + "model": "Model 10349", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.191044019774424, + 21.455758909454158 + ] + }, + "properties": { + "id": "meter-10350", + "maker": "Maker C", + "model": "Model 10350", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.80145821725201, + 27.361542063663386 + ] + }, + "properties": { + "id": "meter-10351", + "maker": "Maker E", + "model": "Model 10351", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.94319036845546, + 30.942452402015878 + ] + }, + "properties": { + "id": "meter-10352", + "maker": "Maker D", + "model": "Model 10352", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12232050568548, + 17.47410996155572 + ] + }, + "properties": { + "id": "meter-10353", + "maker": "Maker H", + "model": "Model 10353", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20243469211111, + 26.212861371795682 + ] + }, + "properties": { + "id": "meter-10354", + "maker": "Maker G", + "model": "Model 10354", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01724782418783, + 17.61347915267193 + ] + }, + "properties": { + "id": "meter-10355", + "maker": "Maker A", + "model": "Model 10355", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96488232972223, + 26.32637528851543 + ] + }, + "properties": { + "id": "meter-10356", + "maker": "Maker C", + "model": "Model 10356", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.502681790744184, + 28.544081375219292 + ] + }, + "properties": { + "id": "meter-10357", + "maker": "Maker E", + "model": "Model 10357", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.02154234484655, + 24.322212498623504 + ] + }, + "properties": { + "id": "meter-10358", + "maker": "Maker C", + "model": "Model 10358", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07695867483955, + 24.11083677804832 + ] + }, + "properties": { + "id": "meter-10359", + "maker": "Maker J", + "model": "Model 10359", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.68175428235224, + 20.07738575068096 + ] + }, + "properties": { + "id": "meter-10360", + "maker": "Maker F", + "model": "Model 10360", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46951718213852, + 19.99225070281378 + ] + }, + "properties": { + "id": "meter-10361", + "maker": "Maker C", + "model": "Model 10361", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.522624427469346, + 19.847825682034927 + ] + }, + "properties": { + "id": "meter-10362", + "maker": "Maker G", + "model": "Model 10362", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.78017995863201, + 21.44411107801912 + ] + }, + "properties": { + "id": "meter-10363", + "maker": "Maker A", + "model": "Model 10363", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21357053239797, + 29.93296676468915 + ] + }, + "properties": { + "id": "meter-10364", + "maker": "Maker G", + "model": "Model 10364", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.11585969433436, + 30.93987390357605 + ] + }, + "properties": { + "id": "meter-10365", + "maker": "Maker J", + "model": "Model 10365", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73322486225686, + 18.30871450427655 + ] + }, + "properties": { + "id": "meter-10366", + "maker": "Maker H", + "model": "Model 10366", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68415175869564, + 18.198603026298347 + ] + }, + "properties": { + "id": "meter-10367", + "maker": "Maker I", + "model": "Model 10367", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.928517485634885, + 30.956756571984393 + ] + }, + "properties": { + "id": "meter-10368", + "maker": "Maker E", + "model": "Model 10368", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.064382917051695, + 26.255663869661046 + ] + }, + "properties": { + "id": "meter-10369", + "maker": "Maker E", + "model": "Model 10369", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.891115693531646, + 24.625281310751696 + ] + }, + "properties": { + "id": "meter-10370", + "maker": "Maker C", + "model": "Model 10370", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.510983550206056, + 18.087025554291944 + ] + }, + "properties": { + "id": "meter-10371", + "maker": "Maker I", + "model": "Model 10371", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.74041671390674, + 27.29078683888088 + ] + }, + "properties": { + "id": "meter-10372", + "maker": "Maker B", + "model": "Model 10372", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.7431576315025, + 24.259577561950184 + ] + }, + "properties": { + "id": "meter-10373", + "maker": "Maker D", + "model": "Model 10373", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.52926646471843, + 27.368685048607556 + ] + }, + "properties": { + "id": "meter-10374", + "maker": "Maker A", + "model": "Model 10374", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.96110085985822, + 24.30753151827187 + ] + }, + "properties": { + "id": "meter-10375", + "maker": "Maker C", + "model": "Model 10375", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.30937496662867, + 29.90307328724671 + ] + }, + "properties": { + "id": "meter-10376", + "maker": "Maker H", + "model": "Model 10376", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21356801876502, + 26.25680859615914 + ] + }, + "properties": { + "id": "meter-10377", + "maker": "Maker B", + "model": "Model 10377", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.83817476538058, + 24.431713586981125 + ] + }, + "properties": { + "id": "meter-10378", + "maker": "Maker C", + "model": "Model 10378", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.06302374843303, + 30.849466475080188 + ] + }, + "properties": { + "id": "meter-10379", + "maker": "Maker H", + "model": "Model 10379", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.02625358182867, + 29.758587217918812 + ] + }, + "properties": { + "id": "meter-10380", + "maker": "Maker D", + "model": "Model 10380", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91158021673945, + 26.38704252465965 + ] + }, + "properties": { + "id": "meter-10381", + "maker": "Maker J", + "model": "Model 10381", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.35708408339685, + 19.86967675720233 + ] + }, + "properties": { + "id": "meter-10382", + "maker": "Maker H", + "model": "Model 10382", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20385021350597, + 29.965432710069628 + ] + }, + "properties": { + "id": "meter-10383", + "maker": "Maker G", + "model": "Model 10383", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.56304620712467, + 18.13504485843603 + ] + }, + "properties": { + "id": "meter-10384", + "maker": "Maker B", + "model": "Model 10384", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.339305767969904, + 24.192516401032332 + ] + }, + "properties": { + "id": "meter-10385", + "maker": "Maker G", + "model": "Model 10385", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.3650445062111, + 28.541007071127485 + ] + }, + "properties": { + "id": "meter-10386", + "maker": "Maker D", + "model": "Model 10386", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.71289172874957, + 27.46785115022233 + ] + }, + "properties": { + "id": "meter-10387", + "maker": "Maker A", + "model": "Model 10387", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.80812132918265, + 24.899082730987637 + ] + }, + "properties": { + "id": "meter-10388", + "maker": "Maker H", + "model": "Model 10388", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0038476896249, + 24.1084717340686 + ] + }, + "properties": { + "id": "meter-10389", + "maker": "Maker D", + "model": "Model 10389", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.66082837038597, + 27.77172478929313 + ] + }, + "properties": { + "id": "meter-10390", + "maker": "Maker J", + "model": "Model 10390", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.517407723936174, + 18.251169326551732 + ] + }, + "properties": { + "id": "meter-10391", + "maker": "Maker E", + "model": "Model 10391", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.477224001537294, + 25.50974148412318 + ] + }, + "properties": { + "id": "meter-10392", + "maker": "Maker G", + "model": "Model 10392", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.509155184873435, + 18.22813592220386 + ] + }, + "properties": { + "id": "meter-10393", + "maker": "Maker G", + "model": "Model 10393", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19767556311287, + 26.228793589777347 + ] + }, + "properties": { + "id": "meter-10394", + "maker": "Maker A", + "model": "Model 10394", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.96339702405481, + 30.06673592972981 + ] + }, + "properties": { + "id": "meter-10395", + "maker": "Maker D", + "model": "Model 10395", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67004280207836, + 24.25212842080497 + ] + }, + "properties": { + "id": "meter-10396", + "maker": "Maker A", + "model": "Model 10396", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71255614024454, + 18.2859318983674 + ] + }, + "properties": { + "id": "meter-10397", + "maker": "Maker A", + "model": "Model 10397", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.286564142157516, + 21.538936260139423 + ] + }, + "properties": { + "id": "meter-10398", + "maker": "Maker I", + "model": "Model 10398", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.97749354308552, + 29.842915277369144 + ] + }, + "properties": { + "id": "meter-10399", + "maker": "Maker B", + "model": "Model 10399", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.158906018030116, + 30.07395268567982 + ] + }, + "properties": { + "id": "meter-10400", + "maker": "Maker J", + "model": "Model 10400", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.603987691847024, + 18.317336332153108 + ] + }, + "properties": { + "id": "meter-10401", + "maker": "Maker B", + "model": "Model 10401", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.41021808025232, + 19.918584128777447 + ] + }, + "properties": { + "id": "meter-10402", + "maker": "Maker C", + "model": "Model 10402", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66963660093641, + 18.592128235409202 + ] + }, + "properties": { + "id": "meter-10403", + "maker": "Maker D", + "model": "Model 10403", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25263378105086, + 21.572268568172255 + ] + }, + "properties": { + "id": "meter-10404", + "maker": "Maker H", + "model": "Model 10404", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.20480841748734, + 17.515316226857014 + ] + }, + "properties": { + "id": "meter-10405", + "maker": "Maker I", + "model": "Model 10405", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01365239905998, + 26.41452344597616 + ] + }, + "properties": { + "id": "meter-10406", + "maker": "Maker A", + "model": "Model 10406", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.408238402697876, + 20.1286623604614 + ] + }, + "properties": { + "id": "meter-10407", + "maker": "Maker B", + "model": "Model 10407", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.81594390388602, + 27.535232583599186 + ] + }, + "properties": { + "id": "meter-10408", + "maker": "Maker C", + "model": "Model 10408", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.59538781727708, + 27.43716878980901 + ] + }, + "properties": { + "id": "meter-10409", + "maker": "Maker E", + "model": "Model 10409", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.9137141047143, + 17.592810104589535 + ] + }, + "properties": { + "id": "meter-10410", + "maker": "Maker B", + "model": "Model 10410", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.316417913571016, + 17.596253354050344 + ] + }, + "properties": { + "id": "meter-10411", + "maker": "Maker G", + "model": "Model 10411", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.72656472143222, + 27.61569766793452 + ] + }, + "properties": { + "id": "meter-10412", + "maker": "Maker J", + "model": "Model 10412", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98414594240133, + 26.428178782001062 + ] + }, + "properties": { + "id": "meter-10413", + "maker": "Maker B", + "model": "Model 10413", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.6599401054706, + 18.241093783837808 + ] + }, + "properties": { + "id": "meter-10414", + "maker": "Maker C", + "model": "Model 10414", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.119200256080966, + 17.418517196421988 + ] + }, + "properties": { + "id": "meter-10415", + "maker": "Maker H", + "model": "Model 10415", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.50072473102581, + 24.393270340956782 + ] + }, + "properties": { + "id": "meter-10416", + "maker": "Maker J", + "model": "Model 10416", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50434525380222, + 18.17353353745009 + ] + }, + "properties": { + "id": "meter-10417", + "maker": "Maker F", + "model": "Model 10417", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.297541777183255, + 21.605564953999945 + ] + }, + "properties": { + "id": "meter-10418", + "maker": "Maker C", + "model": "Model 10418", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.281040600745094, + 24.07822511348329 + ] + }, + "properties": { + "id": "meter-10419", + "maker": "Maker G", + "model": "Model 10419", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.62113242939338, + 18.21115528627002 + ] + }, + "properties": { + "id": "meter-10420", + "maker": "Maker B", + "model": "Model 10420", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.170048905011384, + 29.97092970537931 + ] + }, + "properties": { + "id": "meter-10421", + "maker": "Maker I", + "model": "Model 10421", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67157821383994, + 24.30195427691934 + ] + }, + "properties": { + "id": "meter-10422", + "maker": "Maker E", + "model": "Model 10422", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53780097387913, + 18.04338040660233 + ] + }, + "properties": { + "id": "meter-10423", + "maker": "Maker J", + "model": "Model 10423", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07810026085136, + 26.337791418851054 + ] + }, + "properties": { + "id": "meter-10424", + "maker": "Maker G", + "model": "Model 10424", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.16720318826416, + 26.313278356479255 + ] + }, + "properties": { + "id": "meter-10425", + "maker": "Maker B", + "model": "Model 10425", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.05755301609233, + 17.42315674319196 + ] + }, + "properties": { + "id": "meter-10426", + "maker": "Maker D", + "model": "Model 10426", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97713381582229, + 26.321542387963092 + ] + }, + "properties": { + "id": "meter-10427", + "maker": "Maker E", + "model": "Model 10427", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.598009019557175, + 28.56665628518625 + ] + }, + "properties": { + "id": "meter-10428", + "maker": "Maker B", + "model": "Model 10428", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.04619042884193, + 30.977127332223972 + ] + }, + "properties": { + "id": "meter-10429", + "maker": "Maker D", + "model": "Model 10429", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.655712673926786, + 25.579435972529776 + ] + }, + "properties": { + "id": "meter-10430", + "maker": "Maker A", + "model": "Model 10430", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.572573138439076, + 24.813725308402645 + ] + }, + "properties": { + "id": "meter-10431", + "maker": "Maker E", + "model": "Model 10431", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2962896499948, + 21.482696729763706 + ] + }, + "properties": { + "id": "meter-10432", + "maker": "Maker J", + "model": "Model 10432", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.76226545282162, + 24.516971209784515 + ] + }, + "properties": { + "id": "meter-10433", + "maker": "Maker D", + "model": "Model 10433", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.30976030224441, + 20.015121129863974 + ] + }, + "properties": { + "id": "meter-10434", + "maker": "Maker C", + "model": "Model 10434", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.80005932010145, + 26.276373917210588 + ] + }, + "properties": { + "id": "meter-10435", + "maker": "Maker C", + "model": "Model 10435", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.80267673105642, + 18.30486961072211 + ] + }, + "properties": { + "id": "meter-10436", + "maker": "Maker A", + "model": "Model 10436", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.5628272214002, + 18.063974874256875 + ] + }, + "properties": { + "id": "meter-10437", + "maker": "Maker A", + "model": "Model 10437", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97447815083851, + 26.33009812248782 + ] + }, + "properties": { + "id": "meter-10438", + "maker": "Maker E", + "model": "Model 10438", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.057653136552595, + 26.5741078206367 + ] + }, + "properties": { + "id": "meter-10439", + "maker": "Maker I", + "model": "Model 10439", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.41000009364553, + 25.523735498302482 + ] + }, + "properties": { + "id": "meter-10440", + "maker": "Maker E", + "model": "Model 10440", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.46548284205461, + 25.287907074868375 + ] + }, + "properties": { + "id": "meter-10441", + "maker": "Maker B", + "model": "Model 10441", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50623611462732, + 28.453111994778737 + ] + }, + "properties": { + "id": "meter-10442", + "maker": "Maker B", + "model": "Model 10442", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.73035246714499, + 21.58789290044575 + ] + }, + "properties": { + "id": "meter-10443", + "maker": "Maker I", + "model": "Model 10443", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.63363000125915, + 24.757356505640953 + ] + }, + "properties": { + "id": "meter-10444", + "maker": "Maker I", + "model": "Model 10444", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.779494291484454, + 18.04093076069286 + ] + }, + "properties": { + "id": "meter-10445", + "maker": "Maker F", + "model": "Model 10445", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62461883486588, + 27.37042871342016 + ] + }, + "properties": { + "id": "meter-10446", + "maker": "Maker F", + "model": "Model 10446", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.63123672479692, + 27.50092233704564 + ] + }, + "properties": { + "id": "meter-10447", + "maker": "Maker B", + "model": "Model 10447", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14399477909646, + 26.08882987982559 + ] + }, + "properties": { + "id": "meter-10448", + "maker": "Maker B", + "model": "Model 10448", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.298088962636044, + 24.11776839243224 + ] + }, + "properties": { + "id": "meter-10449", + "maker": "Maker F", + "model": "Model 10449", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.55385825370436, + 18.357224990293126 + ] + }, + "properties": { + "id": "meter-10450", + "maker": "Maker C", + "model": "Model 10450", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09684114727322, + 17.569306136482307 + ] + }, + "properties": { + "id": "meter-10451", + "maker": "Maker G", + "model": "Model 10451", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.40352887747046, + 24.628521785643485 + ] + }, + "properties": { + "id": "meter-10452", + "maker": "Maker G", + "model": "Model 10452", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.11837309917585, + 31.162423145734742 + ] + }, + "properties": { + "id": "meter-10453", + "maker": "Maker F", + "model": "Model 10453", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.064913962606084, + 17.402921699416456 + ] + }, + "properties": { + "id": "meter-10454", + "maker": "Maker D", + "model": "Model 10454", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.636326683005535, + 24.46593016378828 + ] + }, + "properties": { + "id": "meter-10455", + "maker": "Maker C", + "model": "Model 10455", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.15450700050137, + 17.47121586820676 + ] + }, + "properties": { + "id": "meter-10456", + "maker": "Maker B", + "model": "Model 10456", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.8287746946703, + 26.597945271603383 + ] + }, + "properties": { + "id": "meter-10457", + "maker": "Maker C", + "model": "Model 10457", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.376321463083336, + 21.463691260612098 + ] + }, + "properties": { + "id": "meter-10458", + "maker": "Maker I", + "model": "Model 10458", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.781062250445856, + 25.28081266489883 + ] + }, + "properties": { + "id": "meter-10459", + "maker": "Maker D", + "model": "Model 10459", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.63269851617335, + 24.853779643562632 + ] + }, + "properties": { + "id": "meter-10460", + "maker": "Maker I", + "model": "Model 10460", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.117623648945205, + 24.190185106057346 + ] + }, + "properties": { + "id": "meter-10461", + "maker": "Maker H", + "model": "Model 10461", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.25221706419841, + 17.559449845509064 + ] + }, + "properties": { + "id": "meter-10462", + "maker": "Maker A", + "model": "Model 10462", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.000369131115725, + 26.378848416977903 + ] + }, + "properties": { + "id": "meter-10463", + "maker": "Maker G", + "model": "Model 10463", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.95105057932635, + 31.206279024454638 + ] + }, + "properties": { + "id": "meter-10464", + "maker": "Maker B", + "model": "Model 10464", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.75879113317982, + 25.126309233144877 + ] + }, + "properties": { + "id": "meter-10465", + "maker": "Maker B", + "model": "Model 10465", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98613840650235, + 26.399102208141684 + ] + }, + "properties": { + "id": "meter-10466", + "maker": "Maker I", + "model": "Model 10466", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.79279312259476, + 24.92178865367558 + ] + }, + "properties": { + "id": "meter-10467", + "maker": "Maker I", + "model": "Model 10467", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.15780413966396, + 31.163739796949177 + ] + }, + "properties": { + "id": "meter-10468", + "maker": "Maker D", + "model": "Model 10468", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.43913547457876, + 24.739437617804793 + ] + }, + "properties": { + "id": "meter-10469", + "maker": "Maker E", + "model": "Model 10469", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.38634643813789, + 28.28493850974562 + ] + }, + "properties": { + "id": "meter-10470", + "maker": "Maker C", + "model": "Model 10470", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05057786755352, + 24.08748106304317 + ] + }, + "properties": { + "id": "meter-10471", + "maker": "Maker B", + "model": "Model 10471", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.39929794538498, + 20.274992256282598 + ] + }, + "properties": { + "id": "meter-10472", + "maker": "Maker I", + "model": "Model 10472", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.64171595799272, + 24.72892752211158 + ] + }, + "properties": { + "id": "meter-10473", + "maker": "Maker F", + "model": "Model 10473", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.903984564974834, + 27.575472824693072 + ] + }, + "properties": { + "id": "meter-10474", + "maker": "Maker J", + "model": "Model 10474", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.50114493523827, + 24.323425604449568 + ] + }, + "properties": { + "id": "meter-10475", + "maker": "Maker B", + "model": "Model 10475", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01780216547888, + 26.485899533036047 + ] + }, + "properties": { + "id": "meter-10476", + "maker": "Maker E", + "model": "Model 10476", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.154346228803746, + 26.344576531448716 + ] + }, + "properties": { + "id": "meter-10477", + "maker": "Maker A", + "model": "Model 10477", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.652008518763026, + 25.345439148044683 + ] + }, + "properties": { + "id": "meter-10478", + "maker": "Maker E", + "model": "Model 10478", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.484918752351966, + 27.503497921595127 + ] + }, + "properties": { + "id": "meter-10479", + "maker": "Maker D", + "model": "Model 10479", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.03044689396465, + 24.18040933379082 + ] + }, + "properties": { + "id": "meter-10480", + "maker": "Maker C", + "model": "Model 10480", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.060424160757115, + 26.443545851103686 + ] + }, + "properties": { + "id": "meter-10481", + "maker": "Maker D", + "model": "Model 10481", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.03140448522706, + 30.11954799408346 + ] + }, + "properties": { + "id": "meter-10482", + "maker": "Maker H", + "model": "Model 10482", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.76084476025449, + 27.456374677347615 + ] + }, + "properties": { + "id": "meter-10483", + "maker": "Maker B", + "model": "Model 10483", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.70010984077019, + 18.3205958066576 + ] + }, + "properties": { + "id": "meter-10484", + "maker": "Maker D", + "model": "Model 10484", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68116423885067, + 18.449483968340928 + ] + }, + "properties": { + "id": "meter-10485", + "maker": "Maker E", + "model": "Model 10485", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.450329794733584, + 25.388515192276067 + ] + }, + "properties": { + "id": "meter-10486", + "maker": "Maker I", + "model": "Model 10486", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62312224087369, + 27.54258430345808 + ] + }, + "properties": { + "id": "meter-10487", + "maker": "Maker E", + "model": "Model 10487", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.5384408392874, + 28.40207455371485 + ] + }, + "properties": { + "id": "meter-10488", + "maker": "Maker J", + "model": "Model 10488", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.656133980003084, + 18.25734241462904 + ] + }, + "properties": { + "id": "meter-10489", + "maker": "Maker F", + "model": "Model 10489", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.28887574944609, + 21.439214841836144 + ] + }, + "properties": { + "id": "meter-10490", + "maker": "Maker C", + "model": "Model 10490", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.88202588099867, + 26.378770664000964 + ] + }, + "properties": { + "id": "meter-10491", + "maker": "Maker I", + "model": "Model 10491", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.79807077773098, + 28.359383052664946 + ] + }, + "properties": { + "id": "meter-10492", + "maker": "Maker F", + "model": "Model 10492", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0488904801302, + 24.076623711950692 + ] + }, + "properties": { + "id": "meter-10493", + "maker": "Maker G", + "model": "Model 10493", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.96705094727252, + 30.946388720195316 + ] + }, + "properties": { + "id": "meter-10494", + "maker": "Maker J", + "model": "Model 10494", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.64906534496257, + 27.546100980888777 + ] + }, + "properties": { + "id": "meter-10495", + "maker": "Maker G", + "model": "Model 10495", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.75175386885296, + 21.40932125252549 + ] + }, + "properties": { + "id": "meter-10496", + "maker": "Maker C", + "model": "Model 10496", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.665108168125535, + 25.454626857135704 + ] + }, + "properties": { + "id": "meter-10497", + "maker": "Maker A", + "model": "Model 10497", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.34978093581601, + 30.018373001610243 + ] + }, + "properties": { + "id": "meter-10498", + "maker": "Maker F", + "model": "Model 10498", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.70607550372989, + 24.333364976100096 + ] + }, + "properties": { + "id": "meter-10499", + "maker": "Maker A", + "model": "Model 10499", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12837532654864, + 26.412600509009554 + ] + }, + "properties": { + "id": "meter-10500", + "maker": "Maker G", + "model": "Model 10500", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.21702707777753, + 26.47729953730803 + ] + }, + "properties": { + "id": "meter-10501", + "maker": "Maker H", + "model": "Model 10501", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54568664981808, + 25.201160457691582 + ] + }, + "properties": { + "id": "meter-10502", + "maker": "Maker D", + "model": "Model 10502", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.89915088222452, + 26.40217347831192 + ] + }, + "properties": { + "id": "meter-10503", + "maker": "Maker I", + "model": "Model 10503", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.78656788238626, + 27.40170610046522 + ] + }, + "properties": { + "id": "meter-10504", + "maker": "Maker A", + "model": "Model 10504", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.777858243456784, + 24.369316094459965 + ] + }, + "properties": { + "id": "meter-10505", + "maker": "Maker B", + "model": "Model 10505", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0585905536399, + 24.091289930206546 + ] + }, + "properties": { + "id": "meter-10506", + "maker": "Maker F", + "model": "Model 10506", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.18680347221497, + 21.48327275196687 + ] + }, + "properties": { + "id": "meter-10507", + "maker": "Maker C", + "model": "Model 10507", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.64034625719168, + 27.7308349023906 + ] + }, + "properties": { + "id": "meter-10508", + "maker": "Maker F", + "model": "Model 10508", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.9632720827079, + 31.14913207664675 + ] + }, + "properties": { + "id": "meter-10509", + "maker": "Maker C", + "model": "Model 10509", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.799150305491374, + 25.450434860765537 + ] + }, + "properties": { + "id": "meter-10510", + "maker": "Maker B", + "model": "Model 10510", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.192410281866565, + 21.51867845199826 + ] + }, + "properties": { + "id": "meter-10511", + "maker": "Maker B", + "model": "Model 10511", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55594863051511, + 19.958334491964592 + ] + }, + "properties": { + "id": "meter-10512", + "maker": "Maker C", + "model": "Model 10512", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.801119792811846, + 18.415191436061075 + ] + }, + "properties": { + "id": "meter-10513", + "maker": "Maker E", + "model": "Model 10513", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.822537334939526, + 26.49433439854162 + ] + }, + "properties": { + "id": "meter-10514", + "maker": "Maker J", + "model": "Model 10514", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.46579545576404, + 25.379091713646368 + ] + }, + "properties": { + "id": "meter-10515", + "maker": "Maker G", + "model": "Model 10515", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.57995095954789, + 24.508834577773772 + ] + }, + "properties": { + "id": "meter-10516", + "maker": "Maker D", + "model": "Model 10516", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21020871253534, + 26.27589339874911 + ] + }, + "properties": { + "id": "meter-10517", + "maker": "Maker C", + "model": "Model 10517", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94725739545522, + 26.48235455639798 + ] + }, + "properties": { + "id": "meter-10518", + "maker": "Maker B", + "model": "Model 10518", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.70858764674367, + 25.413194296389232 + ] + }, + "properties": { + "id": "meter-10519", + "maker": "Maker C", + "model": "Model 10519", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70696253052695, + 27.5507905280552 + ] + }, + "properties": { + "id": "meter-10520", + "maker": "Maker C", + "model": "Model 10520", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.573964680761144, + 28.388950950461503 + ] + }, + "properties": { + "id": "meter-10521", + "maker": "Maker J", + "model": "Model 10521", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.091953473400764, + 26.42423092110759 + ] + }, + "properties": { + "id": "meter-10522", + "maker": "Maker H", + "model": "Model 10522", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.07791485058398, + 26.21621122238476 + ] + }, + "properties": { + "id": "meter-10523", + "maker": "Maker G", + "model": "Model 10523", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.755300918379056, + 21.57887720692454 + ] + }, + "properties": { + "id": "meter-10524", + "maker": "Maker J", + "model": "Model 10524", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.75238430873975, + 24.973564573855285 + ] + }, + "properties": { + "id": "meter-10525", + "maker": "Maker J", + "model": "Model 10525", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.474400755336866, + 20.017852628988027 + ] + }, + "properties": { + "id": "meter-10526", + "maker": "Maker F", + "model": "Model 10526", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.79742747688386, + 27.471985538228022 + ] + }, + "properties": { + "id": "meter-10527", + "maker": "Maker F", + "model": "Model 10527", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.16206348570732, + 26.3994341314106 + ] + }, + "properties": { + "id": "meter-10528", + "maker": "Maker J", + "model": "Model 10528", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.018648325379324, + 17.64776418987038 + ] + }, + "properties": { + "id": "meter-10529", + "maker": "Maker C", + "model": "Model 10529", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.95854192880309, + 24.265286449390597 + ] + }, + "properties": { + "id": "meter-10530", + "maker": "Maker C", + "model": "Model 10530", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.54706556059359, + 18.381677422883175 + ] + }, + "properties": { + "id": "meter-10531", + "maker": "Maker I", + "model": "Model 10531", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.78134528525009, + 21.357509423673417 + ] + }, + "properties": { + "id": "meter-10532", + "maker": "Maker F", + "model": "Model 10532", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.79731127464355, + 24.407697296097584 + ] + }, + "properties": { + "id": "meter-10533", + "maker": "Maker E", + "model": "Model 10533", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.250246659419055, + 21.498282311455448 + ] + }, + "properties": { + "id": "meter-10534", + "maker": "Maker A", + "model": "Model 10534", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.82752552519833, + 18.091812050035415 + ] + }, + "properties": { + "id": "meter-10535", + "maker": "Maker I", + "model": "Model 10535", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.37291557067395, + 30.157871464600646 + ] + }, + "properties": { + "id": "meter-10536", + "maker": "Maker G", + "model": "Model 10536", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.663267358984555, + 28.434519910638127 + ] + }, + "properties": { + "id": "meter-10537", + "maker": "Maker G", + "model": "Model 10537", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.454604043818804, + 20.056129729751497 + ] + }, + "properties": { + "id": "meter-10538", + "maker": "Maker G", + "model": "Model 10538", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.2849179942266, + 17.46393586844881 + ] + }, + "properties": { + "id": "meter-10539", + "maker": "Maker G", + "model": "Model 10539", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.28666959496986, + 21.219416197744533 + ] + }, + "properties": { + "id": "meter-10540", + "maker": "Maker F", + "model": "Model 10540", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84056924550254, + 21.439702419495003 + ] + }, + "properties": { + "id": "meter-10541", + "maker": "Maker J", + "model": "Model 10541", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61429092257482, + 24.51568556857763 + ] + }, + "properties": { + "id": "meter-10542", + "maker": "Maker E", + "model": "Model 10542", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.197169222697084, + 21.478878612390158 + ] + }, + "properties": { + "id": "meter-10543", + "maker": "Maker I", + "model": "Model 10543", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.58360256873719, + 18.130030930408 + ] + }, + "properties": { + "id": "meter-10544", + "maker": "Maker F", + "model": "Model 10544", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.03657486176057, + 24.094987974206074 + ] + }, + "properties": { + "id": "meter-10545", + "maker": "Maker J", + "model": "Model 10545", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.16647888110067, + 29.915387628716008 + ] + }, + "properties": { + "id": "meter-10546", + "maker": "Maker C", + "model": "Model 10546", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.235484933821425, + 21.648576523655823 + ] + }, + "properties": { + "id": "meter-10547", + "maker": "Maker E", + "model": "Model 10547", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98327024153191, + 26.19220284393072 + ] + }, + "properties": { + "id": "meter-10548", + "maker": "Maker B", + "model": "Model 10548", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.02866641622408, + 29.810390804624294 + ] + }, + "properties": { + "id": "meter-10549", + "maker": "Maker C", + "model": "Model 10549", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93568738420853, + 26.31002167973212 + ] + }, + "properties": { + "id": "meter-10550", + "maker": "Maker A", + "model": "Model 10550", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.039144217023455, + 24.31045425748453 + ] + }, + "properties": { + "id": "meter-10551", + "maker": "Maker C", + "model": "Model 10551", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19800331128841, + 26.275426417952225 + ] + }, + "properties": { + "id": "meter-10552", + "maker": "Maker I", + "model": "Model 10552", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.58829838741717, + 21.491319670644682 + ] + }, + "properties": { + "id": "meter-10553", + "maker": "Maker E", + "model": "Model 10553", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.80873823726543, + 26.520180326424192 + ] + }, + "properties": { + "id": "meter-10554", + "maker": "Maker B", + "model": "Model 10554", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.907344600070616, + 24.874439509522563 + ] + }, + "properties": { + "id": "meter-10555", + "maker": "Maker A", + "model": "Model 10555", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.75343255340848, + 24.77138855624452 + ] + }, + "properties": { + "id": "meter-10556", + "maker": "Maker F", + "model": "Model 10556", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.750481433586074, + 26.281942007825787 + ] + }, + "properties": { + "id": "meter-10557", + "maker": "Maker G", + "model": "Model 10557", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.80706639431044, + 24.62369187813648 + ] + }, + "properties": { + "id": "meter-10558", + "maker": "Maker B", + "model": "Model 10558", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00270057718197, + 26.581681090492868 + ] + }, + "properties": { + "id": "meter-10559", + "maker": "Maker I", + "model": "Model 10559", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.754121383877624, + 24.74275473746905 + ] + }, + "properties": { + "id": "meter-10560", + "maker": "Maker A", + "model": "Model 10560", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10815188170786, + 26.414510824203088 + ] + }, + "properties": { + "id": "meter-10561", + "maker": "Maker H", + "model": "Model 10561", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.006411444877344, + 26.496095360290504 + ] + }, + "properties": { + "id": "meter-10562", + "maker": "Maker I", + "model": "Model 10562", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.050904860794454, + 26.42930077842468 + ] + }, + "properties": { + "id": "meter-10563", + "maker": "Maker J", + "model": "Model 10563", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.83057428109984, + 26.6875574861004 + ] + }, + "properties": { + "id": "meter-10564", + "maker": "Maker I", + "model": "Model 10564", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06293807736945, + 24.254787301199926 + ] + }, + "properties": { + "id": "meter-10565", + "maker": "Maker G", + "model": "Model 10565", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9192322284216, + 26.247029521909887 + ] + }, + "properties": { + "id": "meter-10566", + "maker": "Maker J", + "model": "Model 10566", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.039635168743125, + 26.2983084556567 + ] + }, + "properties": { + "id": "meter-10567", + "maker": "Maker E", + "model": "Model 10567", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.29473014623385, + 25.413797986439057 + ] + }, + "properties": { + "id": "meter-10568", + "maker": "Maker D", + "model": "Model 10568", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.667582847245804, + 21.26940682373605 + ] + }, + "properties": { + "id": "meter-10569", + "maker": "Maker C", + "model": "Model 10569", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.65751016540905, + 25.208136350856147 + ] + }, + "properties": { + "id": "meter-10570", + "maker": "Maker C", + "model": "Model 10570", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85493136664194, + 21.38802944473419 + ] + }, + "properties": { + "id": "meter-10571", + "maker": "Maker J", + "model": "Model 10571", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17044225333301, + 26.278212401692787 + ] + }, + "properties": { + "id": "meter-10572", + "maker": "Maker A", + "model": "Model 10572", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06702527132383, + 26.31551150978807 + ] + }, + "properties": { + "id": "meter-10573", + "maker": "Maker J", + "model": "Model 10573", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.032420860144825, + 29.739522621842998 + ] + }, + "properties": { + "id": "meter-10574", + "maker": "Maker F", + "model": "Model 10574", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73721994629226, + 18.432558262593044 + ] + }, + "properties": { + "id": "meter-10575", + "maker": "Maker F", + "model": "Model 10575", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04336725214947, + 24.076077362462108 + ] + }, + "properties": { + "id": "meter-10576", + "maker": "Maker I", + "model": "Model 10576", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.453043830742466, + 17.928312071916384 + ] + }, + "properties": { + "id": "meter-10577", + "maker": "Maker J", + "model": "Model 10577", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.33932639409908, + 21.67055578714758 + ] + }, + "properties": { + "id": "meter-10578", + "maker": "Maker C", + "model": "Model 10578", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01197149768921, + 26.51989247373589 + ] + }, + "properties": { + "id": "meter-10579", + "maker": "Maker J", + "model": "Model 10579", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98135903333015, + 26.158291935415765 + ] + }, + "properties": { + "id": "meter-10580", + "maker": "Maker H", + "model": "Model 10580", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19397187527173, + 26.284513611549148 + ] + }, + "properties": { + "id": "meter-10581", + "maker": "Maker F", + "model": "Model 10581", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.81806589548208, + 26.48368561433589 + ] + }, + "properties": { + "id": "meter-10582", + "maker": "Maker A", + "model": "Model 10582", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.24056595125073, + 30.00165508637331 + ] + }, + "properties": { + "id": "meter-10583", + "maker": "Maker F", + "model": "Model 10583", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.464919289991535, + 18.24844875612192 + ] + }, + "properties": { + "id": "meter-10584", + "maker": "Maker B", + "model": "Model 10584", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.340569754726125, + 19.91803992960099 + ] + }, + "properties": { + "id": "meter-10585", + "maker": "Maker D", + "model": "Model 10585", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.175154726761036, + 26.368462583858427 + ] + }, + "properties": { + "id": "meter-10586", + "maker": "Maker J", + "model": "Model 10586", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.374318591879074, + 20.24610021038058 + ] + }, + "properties": { + "id": "meter-10587", + "maker": "Maker B", + "model": "Model 10587", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50761239043439, + 18.404357259618706 + ] + }, + "properties": { + "id": "meter-10588", + "maker": "Maker G", + "model": "Model 10588", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4980284562987, + 20.08858291982817 + ] + }, + "properties": { + "id": "meter-10589", + "maker": "Maker A", + "model": "Model 10589", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.76560966445619, + 28.490571711840253 + ] + }, + "properties": { + "id": "meter-10590", + "maker": "Maker F", + "model": "Model 10590", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.410996203687816, + 27.455202699266813 + ] + }, + "properties": { + "id": "meter-10591", + "maker": "Maker C", + "model": "Model 10591", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68421390113263, + 18.283600153682922 + ] + }, + "properties": { + "id": "meter-10592", + "maker": "Maker B", + "model": "Model 10592", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.83113456891064, + 24.779872604226835 + ] + }, + "properties": { + "id": "meter-10593", + "maker": "Maker B", + "model": "Model 10593", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.955082006992754, + 29.835853275996367 + ] + }, + "properties": { + "id": "meter-10594", + "maker": "Maker B", + "model": "Model 10594", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.529110304614214, + 24.80607547099331 + ] + }, + "properties": { + "id": "meter-10595", + "maker": "Maker I", + "model": "Model 10595", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.547833070980985, + 25.337512547311572 + ] + }, + "properties": { + "id": "meter-10596", + "maker": "Maker D", + "model": "Model 10596", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47034502938377, + 20.024497325480603 + ] + }, + "properties": { + "id": "meter-10597", + "maker": "Maker G", + "model": "Model 10597", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.17671983369417, + 21.420773480718495 + ] + }, + "properties": { + "id": "meter-10598", + "maker": "Maker E", + "model": "Model 10598", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.772909554055325, + 27.524745797895637 + ] + }, + "properties": { + "id": "meter-10599", + "maker": "Maker G", + "model": "Model 10599", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.5353571575562, + 19.95794255772851 + ] + }, + "properties": { + "id": "meter-10600", + "maker": "Maker J", + "model": "Model 10600", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69431567307558, + 18.300108350164155 + ] + }, + "properties": { + "id": "meter-10601", + "maker": "Maker E", + "model": "Model 10601", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.18950906666531, + 24.130213014489613 + ] + }, + "properties": { + "id": "meter-10602", + "maker": "Maker C", + "model": "Model 10602", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.56740879849976, + 27.679761876826642 + ] + }, + "properties": { + "id": "meter-10603", + "maker": "Maker A", + "model": "Model 10603", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.05129691280554, + 17.488395620511795 + ] + }, + "properties": { + "id": "meter-10604", + "maker": "Maker I", + "model": "Model 10604", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.83029398560902, + 24.68110787228895 + ] + }, + "properties": { + "id": "meter-10605", + "maker": "Maker C", + "model": "Model 10605", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.329652199805956, + 28.277273287712532 + ] + }, + "properties": { + "id": "meter-10606", + "maker": "Maker E", + "model": "Model 10606", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.8349860678413, + 24.764069024086048 + ] + }, + "properties": { + "id": "meter-10607", + "maker": "Maker E", + "model": "Model 10607", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.917581987370426, + 26.32551934673237 + ] + }, + "properties": { + "id": "meter-10608", + "maker": "Maker C", + "model": "Model 10608", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55990108945302, + 27.53048700130148 + ] + }, + "properties": { + "id": "meter-10609", + "maker": "Maker D", + "model": "Model 10609", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.684174779097305, + 24.77525807989184 + ] + }, + "properties": { + "id": "meter-10610", + "maker": "Maker D", + "model": "Model 10610", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.70393773149058, + 21.463964978592887 + ] + }, + "properties": { + "id": "meter-10611", + "maker": "Maker E", + "model": "Model 10611", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.877430875493864, + 21.39158314185095 + ] + }, + "properties": { + "id": "meter-10612", + "maker": "Maker B", + "model": "Model 10612", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.65397214993058, + 28.406266555699926 + ] + }, + "properties": { + "id": "meter-10613", + "maker": "Maker H", + "model": "Model 10613", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.16656738397353, + 31.22467727208038 + ] + }, + "properties": { + "id": "meter-10614", + "maker": "Maker F", + "model": "Model 10614", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94659189674205, + 26.541994902393547 + ] + }, + "properties": { + "id": "meter-10615", + "maker": "Maker H", + "model": "Model 10615", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.249997794585546, + 17.483628721181415 + ] + }, + "properties": { + "id": "meter-10616", + "maker": "Maker B", + "model": "Model 10616", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.86461342848797, + 26.466962679693754 + ] + }, + "properties": { + "id": "meter-10617", + "maker": "Maker F", + "model": "Model 10617", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.34251137003707, + 24.12734174437712 + ] + }, + "properties": { + "id": "meter-10618", + "maker": "Maker D", + "model": "Model 10618", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.0378356195322, + 26.491374583281857 + ] + }, + "properties": { + "id": "meter-10619", + "maker": "Maker J", + "model": "Model 10619", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.34895819295299, + 28.50632441593779 + ] + }, + "properties": { + "id": "meter-10620", + "maker": "Maker H", + "model": "Model 10620", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.38196137254793, + 28.54189172238141 + ] + }, + "properties": { + "id": "meter-10621", + "maker": "Maker C", + "model": "Model 10621", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.629613012584315, + 25.42268417680815 + ] + }, + "properties": { + "id": "meter-10622", + "maker": "Maker F", + "model": "Model 10622", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.63716172676963, + 18.097659270111915 + ] + }, + "properties": { + "id": "meter-10623", + "maker": "Maker G", + "model": "Model 10623", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50005944771596, + 18.226944056009803 + ] + }, + "properties": { + "id": "meter-10624", + "maker": "Maker D", + "model": "Model 10624", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.85134256135163, + 17.38474536717483 + ] + }, + "properties": { + "id": "meter-10625", + "maker": "Maker B", + "model": "Model 10625", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.689714455209185, + 18.113055202559252 + ] + }, + "properties": { + "id": "meter-10626", + "maker": "Maker A", + "model": "Model 10626", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.919551345045015, + 26.52814862198676 + ] + }, + "properties": { + "id": "meter-10627", + "maker": "Maker F", + "model": "Model 10627", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96700900343377, + 26.785787602756738 + ] + }, + "properties": { + "id": "meter-10628", + "maker": "Maker B", + "model": "Model 10628", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.600584487072815, + 24.993692020485575 + ] + }, + "properties": { + "id": "meter-10629", + "maker": "Maker G", + "model": "Model 10629", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.854728668549484, + 21.52722633494331 + ] + }, + "properties": { + "id": "meter-10630", + "maker": "Maker B", + "model": "Model 10630", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.56281002229368, + 18.297840002454762 + ] + }, + "properties": { + "id": "meter-10631", + "maker": "Maker B", + "model": "Model 10631", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.30134047627842, + 21.468611272224017 + ] + }, + "properties": { + "id": "meter-10632", + "maker": "Maker G", + "model": "Model 10632", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.76743109357877, + 21.114435204543106 + ] + }, + "properties": { + "id": "meter-10633", + "maker": "Maker D", + "model": "Model 10633", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.73077239178401, + 27.339773335519027 + ] + }, + "properties": { + "id": "meter-10634", + "maker": "Maker E", + "model": "Model 10634", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.495233702135145, + 24.63732152636085 + ] + }, + "properties": { + "id": "meter-10635", + "maker": "Maker J", + "model": "Model 10635", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02023683075596, + 26.247025058729548 + ] + }, + "properties": { + "id": "meter-10636", + "maker": "Maker F", + "model": "Model 10636", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13407368033999, + 26.15208072664605 + ] + }, + "properties": { + "id": "meter-10637", + "maker": "Maker E", + "model": "Model 10637", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.703428569502485, + 27.52185316047253 + ] + }, + "properties": { + "id": "meter-10638", + "maker": "Maker I", + "model": "Model 10638", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.148800439466605, + 26.289271379323356 + ] + }, + "properties": { + "id": "meter-10639", + "maker": "Maker F", + "model": "Model 10639", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.75213055026794, + 18.486287642931387 + ] + }, + "properties": { + "id": "meter-10640", + "maker": "Maker G", + "model": "Model 10640", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18232172641242, + 26.397312808975652 + ] + }, + "properties": { + "id": "meter-10641", + "maker": "Maker C", + "model": "Model 10641", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.899325151365915, + 18.17938333924085 + ] + }, + "properties": { + "id": "meter-10642", + "maker": "Maker G", + "model": "Model 10642", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.36765266676925, + 21.725439237670965 + ] + }, + "properties": { + "id": "meter-10643", + "maker": "Maker C", + "model": "Model 10643", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.026648041256266, + 26.47369978582287 + ] + }, + "properties": { + "id": "meter-10644", + "maker": "Maker A", + "model": "Model 10644", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.878978536099375, + 17.46700839277972 + ] + }, + "properties": { + "id": "meter-10645", + "maker": "Maker H", + "model": "Model 10645", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.197853461910256, + 26.278661612586056 + ] + }, + "properties": { + "id": "meter-10646", + "maker": "Maker H", + "model": "Model 10646", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.26974857454694, + 17.704636026785764 + ] + }, + "properties": { + "id": "meter-10647", + "maker": "Maker D", + "model": "Model 10647", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.886615593364304, + 30.968737319941795 + ] + }, + "properties": { + "id": "meter-10648", + "maker": "Maker A", + "model": "Model 10648", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.24596631346019, + 18.271534961349307 + ] + }, + "properties": { + "id": "meter-10649", + "maker": "Maker A", + "model": "Model 10649", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24472463770036, + 21.486546568340913 + ] + }, + "properties": { + "id": "meter-10650", + "maker": "Maker G", + "model": "Model 10650", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.37846232897852, + 19.803896287040455 + ] + }, + "properties": { + "id": "meter-10651", + "maker": "Maker D", + "model": "Model 10651", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.53524768871931, + 20.09597512099677 + ] + }, + "properties": { + "id": "meter-10652", + "maker": "Maker G", + "model": "Model 10652", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09317803601134, + 24.0787110782176 + ] + }, + "properties": { + "id": "meter-10653", + "maker": "Maker A", + "model": "Model 10653", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.78812834461703, + 26.704408942846893 + ] + }, + "properties": { + "id": "meter-10654", + "maker": "Maker A", + "model": "Model 10654", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.4996201901942, + 24.498430173153213 + ] + }, + "properties": { + "id": "meter-10655", + "maker": "Maker E", + "model": "Model 10655", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.684621451465496, + 27.50622644025516 + ] + }, + "properties": { + "id": "meter-10656", + "maker": "Maker C", + "model": "Model 10656", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.646614322928215, + 18.12203067842084 + ] + }, + "properties": { + "id": "meter-10657", + "maker": "Maker I", + "model": "Model 10657", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20091999616808, + 26.305429121121676 + ] + }, + "properties": { + "id": "meter-10658", + "maker": "Maker B", + "model": "Model 10658", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73229053629408, + 18.23241980301441 + ] + }, + "properties": { + "id": "meter-10659", + "maker": "Maker G", + "model": "Model 10659", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52408147840043, + 18.216516995312862 + ] + }, + "properties": { + "id": "meter-10660", + "maker": "Maker A", + "model": "Model 10660", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.30547512372453, + 29.758218210536544 + ] + }, + "properties": { + "id": "meter-10661", + "maker": "Maker I", + "model": "Model 10661", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.75697515202088, + 27.409334370400853 + ] + }, + "properties": { + "id": "meter-10662", + "maker": "Maker A", + "model": "Model 10662", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.210784629927566, + 26.40816335257725 + ] + }, + "properties": { + "id": "meter-10663", + "maker": "Maker G", + "model": "Model 10663", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.15140015693139, + 24.336366308284635 + ] + }, + "properties": { + "id": "meter-10664", + "maker": "Maker B", + "model": "Model 10664", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.118557515644376, + 24.08638445344595 + ] + }, + "properties": { + "id": "meter-10665", + "maker": "Maker A", + "model": "Model 10665", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96925027361176, + 26.475097498089177 + ] + }, + "properties": { + "id": "meter-10666", + "maker": "Maker I", + "model": "Model 10666", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.53467352367831, + 25.204984791842186 + ] + }, + "properties": { + "id": "meter-10667", + "maker": "Maker E", + "model": "Model 10667", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.31732715123729, + 30.189465236233772 + ] + }, + "properties": { + "id": "meter-10668", + "maker": "Maker E", + "model": "Model 10668", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.67043147602434, + 25.248358186542504 + ] + }, + "properties": { + "id": "meter-10669", + "maker": "Maker D", + "model": "Model 10669", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.340841446933915, + 18.259369777755936 + ] + }, + "properties": { + "id": "meter-10670", + "maker": "Maker J", + "model": "Model 10670", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.137905101741985, + 24.181278917493486 + ] + }, + "properties": { + "id": "meter-10671", + "maker": "Maker G", + "model": "Model 10671", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.43654212023029, + 30.00847297508678 + ] + }, + "properties": { + "id": "meter-10672", + "maker": "Maker G", + "model": "Model 10672", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.81124022739296, + 25.304836829561687 + ] + }, + "properties": { + "id": "meter-10673", + "maker": "Maker C", + "model": "Model 10673", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97716007190511, + 26.45298869201752 + ] + }, + "properties": { + "id": "meter-10674", + "maker": "Maker F", + "model": "Model 10674", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.25994331943462, + 19.889546247539624 + ] + }, + "properties": { + "id": "meter-10675", + "maker": "Maker J", + "model": "Model 10675", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.44141034468186, + 20.01740453611214 + ] + }, + "properties": { + "id": "meter-10676", + "maker": "Maker B", + "model": "Model 10676", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.527084612643854, + 18.47457649462617 + ] + }, + "properties": { + "id": "meter-10677", + "maker": "Maker B", + "model": "Model 10677", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89251983842607, + 21.419942857413638 + ] + }, + "properties": { + "id": "meter-10678", + "maker": "Maker F", + "model": "Model 10678", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.62747044887013, + 24.69863336432178 + ] + }, + "properties": { + "id": "meter-10679", + "maker": "Maker D", + "model": "Model 10679", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98319756760525, + 26.618085576650817 + ] + }, + "properties": { + "id": "meter-10680", + "maker": "Maker G", + "model": "Model 10680", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.76053787097658, + 24.677786121837798 + ] + }, + "properties": { + "id": "meter-10681", + "maker": "Maker F", + "model": "Model 10681", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.236495942372514, + 21.53380068731113 + ] + }, + "properties": { + "id": "meter-10682", + "maker": "Maker A", + "model": "Model 10682", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.95709572503085, + 26.313137672535035 + ] + }, + "properties": { + "id": "meter-10683", + "maker": "Maker A", + "model": "Model 10683", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.656009087351, + 24.612110475716506 + ] + }, + "properties": { + "id": "meter-10684", + "maker": "Maker C", + "model": "Model 10684", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.990354260771426, + 26.297073284149413 + ] + }, + "properties": { + "id": "meter-10685", + "maker": "Maker C", + "model": "Model 10685", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.015199295386374, + 26.765976809828558 + ] + }, + "properties": { + "id": "meter-10686", + "maker": "Maker G", + "model": "Model 10686", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.442253586059934, + 20.016652568482872 + ] + }, + "properties": { + "id": "meter-10687", + "maker": "Maker I", + "model": "Model 10687", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9063003495864, + 26.610486392530493 + ] + }, + "properties": { + "id": "meter-10688", + "maker": "Maker I", + "model": "Model 10688", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12340555564863, + 26.33802305629331 + ] + }, + "properties": { + "id": "meter-10689", + "maker": "Maker G", + "model": "Model 10689", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.498264182688956, + 28.56172758785808 + ] + }, + "properties": { + "id": "meter-10690", + "maker": "Maker E", + "model": "Model 10690", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.867778387187315, + 24.611390002326416 + ] + }, + "properties": { + "id": "meter-10691", + "maker": "Maker G", + "model": "Model 10691", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.103743685417484, + 24.15330289297495 + ] + }, + "properties": { + "id": "meter-10692", + "maker": "Maker G", + "model": "Model 10692", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.209200676988154, + 26.278377523913374 + ] + }, + "properties": { + "id": "meter-10693", + "maker": "Maker B", + "model": "Model 10693", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.57220818677342, + 27.52312560571801 + ] + }, + "properties": { + "id": "meter-10694", + "maker": "Maker C", + "model": "Model 10694", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.65495125308622, + 18.29944924543777 + ] + }, + "properties": { + "id": "meter-10695", + "maker": "Maker D", + "model": "Model 10695", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.6018250734258, + 24.536967571653914 + ] + }, + "properties": { + "id": "meter-10696", + "maker": "Maker E", + "model": "Model 10696", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.615886620305254, + 20.182677231092583 + ] + }, + "properties": { + "id": "meter-10697", + "maker": "Maker E", + "model": "Model 10697", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.673614134536315, + 24.605242754234524 + ] + }, + "properties": { + "id": "meter-10698", + "maker": "Maker G", + "model": "Model 10698", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07602465694008, + 26.29613057012531 + ] + }, + "properties": { + "id": "meter-10699", + "maker": "Maker G", + "model": "Model 10699", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20693669147846, + 26.28551747306943 + ] + }, + "properties": { + "id": "meter-10700", + "maker": "Maker C", + "model": "Model 10700", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.86501292445202, + 28.29943133968954 + ] + }, + "properties": { + "id": "meter-10701", + "maker": "Maker F", + "model": "Model 10701", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.3853689911224, + 18.06241494151825 + ] + }, + "properties": { + "id": "meter-10702", + "maker": "Maker A", + "model": "Model 10702", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62390996164805, + 27.578042934350744 + ] + }, + "properties": { + "id": "meter-10703", + "maker": "Maker H", + "model": "Model 10703", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.03951587382489, + 24.111263611930394 + ] + }, + "properties": { + "id": "meter-10704", + "maker": "Maker I", + "model": "Model 10704", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.4351452608523, + 28.433577202585205 + ] + }, + "properties": { + "id": "meter-10705", + "maker": "Maker B", + "model": "Model 10705", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.71436828205231, + 28.429481206614927 + ] + }, + "properties": { + "id": "meter-10706", + "maker": "Maker D", + "model": "Model 10706", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.11579183243617, + 21.710496643512485 + ] + }, + "properties": { + "id": "meter-10707", + "maker": "Maker I", + "model": "Model 10707", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.73527530827922, + 28.22068074564078 + ] + }, + "properties": { + "id": "meter-10708", + "maker": "Maker G", + "model": "Model 10708", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06882693693343, + 24.27300699370309 + ] + }, + "properties": { + "id": "meter-10709", + "maker": "Maker A", + "model": "Model 10709", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.33548496401364, + 24.09315711460196 + ] + }, + "properties": { + "id": "meter-10710", + "maker": "Maker G", + "model": "Model 10710", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.823745993962696, + 31.033520032883665 + ] + }, + "properties": { + "id": "meter-10711", + "maker": "Maker E", + "model": "Model 10711", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.915021559263586, + 26.27944811544071 + ] + }, + "properties": { + "id": "meter-10712", + "maker": "Maker C", + "model": "Model 10712", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.784132362146664, + 18.47986375322958 + ] + }, + "properties": { + "id": "meter-10713", + "maker": "Maker E", + "model": "Model 10713", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.122542885550914, + 21.673680575710918 + ] + }, + "properties": { + "id": "meter-10714", + "maker": "Maker C", + "model": "Model 10714", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.20470737131741, + 30.818022030349816 + ] + }, + "properties": { + "id": "meter-10715", + "maker": "Maker C", + "model": "Model 10715", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.027599609491276, + 17.565120887440845 + ] + }, + "properties": { + "id": "meter-10716", + "maker": "Maker C", + "model": "Model 10716", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.512767195050195, + 18.08424232624429 + ] + }, + "properties": { + "id": "meter-10717", + "maker": "Maker J", + "model": "Model 10717", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91450837209785, + 26.603547951556603 + ] + }, + "properties": { + "id": "meter-10718", + "maker": "Maker B", + "model": "Model 10718", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.91988549771022, + 21.548687172243326 + ] + }, + "properties": { + "id": "meter-10719", + "maker": "Maker H", + "model": "Model 10719", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.10196592852907, + 24.19939801560927 + ] + }, + "properties": { + "id": "meter-10720", + "maker": "Maker A", + "model": "Model 10720", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.39430106690153, + 18.35082647909485 + ] + }, + "properties": { + "id": "meter-10721", + "maker": "Maker F", + "model": "Model 10721", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68167944834012, + 24.542547123706875 + ] + }, + "properties": { + "id": "meter-10722", + "maker": "Maker D", + "model": "Model 10722", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.879214827427106, + 26.186345546817858 + ] + }, + "properties": { + "id": "meter-10723", + "maker": "Maker J", + "model": "Model 10723", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92490239156127, + 26.736495866637778 + ] + }, + "properties": { + "id": "meter-10724", + "maker": "Maker E", + "model": "Model 10724", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.9580284255517, + 26.090077906908235 + ] + }, + "properties": { + "id": "meter-10725", + "maker": "Maker C", + "model": "Model 10725", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.224929315209245, + 20.016227361429372 + ] + }, + "properties": { + "id": "meter-10726", + "maker": "Maker J", + "model": "Model 10726", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.3999264097807, + 25.115491895616056 + ] + }, + "properties": { + "id": "meter-10727", + "maker": "Maker G", + "model": "Model 10727", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.29523368182581, + 31.06847914308284 + ] + }, + "properties": { + "id": "meter-10728", + "maker": "Maker G", + "model": "Model 10728", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.121880952718655, + 26.359199962096316 + ] + }, + "properties": { + "id": "meter-10729", + "maker": "Maker D", + "model": "Model 10729", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.23207624335933, + 17.5142970191247 + ] + }, + "properties": { + "id": "meter-10730", + "maker": "Maker J", + "model": "Model 10730", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.95323810301582, + 24.825572530723758 + ] + }, + "properties": { + "id": "meter-10731", + "maker": "Maker C", + "model": "Model 10731", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07447307355732, + 26.311694997957265 + ] + }, + "properties": { + "id": "meter-10732", + "maker": "Maker G", + "model": "Model 10732", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.357605222739316, + 19.816785169361335 + ] + }, + "properties": { + "id": "meter-10733", + "maker": "Maker H", + "model": "Model 10733", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.212136586808825, + 23.961718515830423 + ] + }, + "properties": { + "id": "meter-10734", + "maker": "Maker E", + "model": "Model 10734", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12951202032652, + 17.558034656200093 + ] + }, + "properties": { + "id": "meter-10735", + "maker": "Maker F", + "model": "Model 10735", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67979482159075, + 24.42154666631619 + ] + }, + "properties": { + "id": "meter-10736", + "maker": "Maker J", + "model": "Model 10736", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.98938291163621, + 21.151697685162024 + ] + }, + "properties": { + "id": "meter-10737", + "maker": "Maker E", + "model": "Model 10737", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.31355621672391, + 18.176880133881802 + ] + }, + "properties": { + "id": "meter-10738", + "maker": "Maker C", + "model": "Model 10738", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09231963445537, + 26.439075289298295 + ] + }, + "properties": { + "id": "meter-10739", + "maker": "Maker E", + "model": "Model 10739", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.8996378103247, + 21.37038391871304 + ] + }, + "properties": { + "id": "meter-10740", + "maker": "Maker G", + "model": "Model 10740", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.76662995018291, + 25.21464431626639 + ] + }, + "properties": { + "id": "meter-10741", + "maker": "Maker B", + "model": "Model 10741", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13146482671633, + 26.28632399468407 + ] + }, + "properties": { + "id": "meter-10742", + "maker": "Maker I", + "model": "Model 10742", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.740327634818925, + 26.458338506348177 + ] + }, + "properties": { + "id": "meter-10743", + "maker": "Maker G", + "model": "Model 10743", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.345111283770805, + 19.75965201781146 + ] + }, + "properties": { + "id": "meter-10744", + "maker": "Maker B", + "model": "Model 10744", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.127306480980806, + 17.59989411059586 + ] + }, + "properties": { + "id": "meter-10745", + "maker": "Maker B", + "model": "Model 10745", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06585037394522, + 26.273727527729104 + ] + }, + "properties": { + "id": "meter-10746", + "maker": "Maker H", + "model": "Model 10746", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67310453959759, + 24.787953814186412 + ] + }, + "properties": { + "id": "meter-10747", + "maker": "Maker C", + "model": "Model 10747", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98293775589908, + 26.407213529000607 + ] + }, + "properties": { + "id": "meter-10748", + "maker": "Maker H", + "model": "Model 10748", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.67622386011784, + 28.56499634069998 + ] + }, + "properties": { + "id": "meter-10749", + "maker": "Maker E", + "model": "Model 10749", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.81173016411099, + 26.35562806334063 + ] + }, + "properties": { + "id": "meter-10750", + "maker": "Maker H", + "model": "Model 10750", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.12595618071903, + 24.10040589357597 + ] + }, + "properties": { + "id": "meter-10751", + "maker": "Maker I", + "model": "Model 10751", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73134841901758, + 18.18504716982736 + ] + }, + "properties": { + "id": "meter-10752", + "maker": "Maker C", + "model": "Model 10752", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.04604431767848, + 26.376295492363454 + ] + }, + "properties": { + "id": "meter-10753", + "maker": "Maker F", + "model": "Model 10753", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61739186552864, + 21.441019103077736 + ] + }, + "properties": { + "id": "meter-10754", + "maker": "Maker I", + "model": "Model 10754", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.45550524791015, + 25.39222503464377 + ] + }, + "properties": { + "id": "meter-10755", + "maker": "Maker J", + "model": "Model 10755", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.61184931444093, + 24.89773095558325 + ] + }, + "properties": { + "id": "meter-10756", + "maker": "Maker J", + "model": "Model 10756", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.974764730885525, + 26.326713824704804 + ] + }, + "properties": { + "id": "meter-10757", + "maker": "Maker C", + "model": "Model 10757", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93617046282255, + 26.393002295491712 + ] + }, + "properties": { + "id": "meter-10758", + "maker": "Maker C", + "model": "Model 10758", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00414271614051, + 26.2101248227144 + ] + }, + "properties": { + "id": "meter-10759", + "maker": "Maker A", + "model": "Model 10759", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.55628766122182, + 24.558744916424533 + ] + }, + "properties": { + "id": "meter-10760", + "maker": "Maker C", + "model": "Model 10760", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23425909631977, + 30.101129683576993 + ] + }, + "properties": { + "id": "meter-10761", + "maker": "Maker B", + "model": "Model 10761", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.00738155975638, + 24.10228858141673 + ] + }, + "properties": { + "id": "meter-10762", + "maker": "Maker H", + "model": "Model 10762", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.90485017305181, + 26.102948851856084 + ] + }, + "properties": { + "id": "meter-10763", + "maker": "Maker B", + "model": "Model 10763", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.50270740751344, + 19.813781207707503 + ] + }, + "properties": { + "id": "meter-10764", + "maker": "Maker A", + "model": "Model 10764", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.20766792430573, + 30.967767356015194 + ] + }, + "properties": { + "id": "meter-10765", + "maker": "Maker E", + "model": "Model 10765", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71156329793711, + 18.496237750772163 + ] + }, + "properties": { + "id": "meter-10766", + "maker": "Maker I", + "model": "Model 10766", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86234096696708, + 24.54799647255501 + ] + }, + "properties": { + "id": "meter-10767", + "maker": "Maker B", + "model": "Model 10767", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.68437862058547, + 27.5640731880297 + ] + }, + "properties": { + "id": "meter-10768", + "maker": "Maker J", + "model": "Model 10768", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.3337594212569, + 25.316324403376687 + ] + }, + "properties": { + "id": "meter-10769", + "maker": "Maker E", + "model": "Model 10769", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86998121675879, + 21.614589759428675 + ] + }, + "properties": { + "id": "meter-10770", + "maker": "Maker G", + "model": "Model 10770", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07514877155334, + 26.41922502742455 + ] + }, + "properties": { + "id": "meter-10771", + "maker": "Maker H", + "model": "Model 10771", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.55786713037526, + 18.316365563423368 + ] + }, + "properties": { + "id": "meter-10772", + "maker": "Maker E", + "model": "Model 10772", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.841121901121134, + 26.260949252337188 + ] + }, + "properties": { + "id": "meter-10773", + "maker": "Maker E", + "model": "Model 10773", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.033432667316454, + 26.462431520353455 + ] + }, + "properties": { + "id": "meter-10774", + "maker": "Maker J", + "model": "Model 10774", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.60451665486583, + 18.264203045383912 + ] + }, + "properties": { + "id": "meter-10775", + "maker": "Maker D", + "model": "Model 10775", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.640640380001315, + 18.286023528490443 + ] + }, + "properties": { + "id": "meter-10776", + "maker": "Maker C", + "model": "Model 10776", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.80574047879357, + 26.40937703299511 + ] + }, + "properties": { + "id": "meter-10777", + "maker": "Maker C", + "model": "Model 10777", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.67062274738508, + 18.517500562438848 + ] + }, + "properties": { + "id": "meter-10778", + "maker": "Maker C", + "model": "Model 10778", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.004612183626726, + 26.30245708995142 + ] + }, + "properties": { + "id": "meter-10779", + "maker": "Maker D", + "model": "Model 10779", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.68249293471347, + 21.537662259293228 + ] + }, + "properties": { + "id": "meter-10780", + "maker": "Maker E", + "model": "Model 10780", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.052458641947744, + 26.224186804353746 + ] + }, + "properties": { + "id": "meter-10781", + "maker": "Maker I", + "model": "Model 10781", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.37243401987276, + 21.64055363359784 + ] + }, + "properties": { + "id": "meter-10782", + "maker": "Maker C", + "model": "Model 10782", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.839107161379175, + 21.456742756066493 + ] + }, + "properties": { + "id": "meter-10783", + "maker": "Maker J", + "model": "Model 10783", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.061843307260055, + 26.242563072612093 + ] + }, + "properties": { + "id": "meter-10784", + "maker": "Maker B", + "model": "Model 10784", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.241600443890434, + 17.453808761026156 + ] + }, + "properties": { + "id": "meter-10785", + "maker": "Maker B", + "model": "Model 10785", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.35843126410723, + 19.863633364823812 + ] + }, + "properties": { + "id": "meter-10786", + "maker": "Maker J", + "model": "Model 10786", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52244447820161, + 18.163678494383475 + ] + }, + "properties": { + "id": "meter-10787", + "maker": "Maker A", + "model": "Model 10787", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.708736179649165, + 24.647924214036447 + ] + }, + "properties": { + "id": "meter-10788", + "maker": "Maker D", + "model": "Model 10788", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.10866848751753, + 21.370682603877473 + ] + }, + "properties": { + "id": "meter-10789", + "maker": "Maker H", + "model": "Model 10789", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91404371286576, + 26.65707898415755 + ] + }, + "properties": { + "id": "meter-10790", + "maker": "Maker F", + "model": "Model 10790", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95263786215167, + 26.331437060001445 + ] + }, + "properties": { + "id": "meter-10791", + "maker": "Maker I", + "model": "Model 10791", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.71220368607775, + 28.257960330572377 + ] + }, + "properties": { + "id": "meter-10792", + "maker": "Maker I", + "model": "Model 10792", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08227285318536, + 26.411743054040567 + ] + }, + "properties": { + "id": "meter-10793", + "maker": "Maker H", + "model": "Model 10793", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.642530146246216, + 28.36048003235799 + ] + }, + "properties": { + "id": "meter-10794", + "maker": "Maker J", + "model": "Model 10794", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46304301555505, + 20.0113496653056 + ] + }, + "properties": { + "id": "meter-10795", + "maker": "Maker I", + "model": "Model 10795", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.112621923178004, + 24.124518028918093 + ] + }, + "properties": { + "id": "meter-10796", + "maker": "Maker I", + "model": "Model 10796", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.66882592243827, + 25.29557691626325 + ] + }, + "properties": { + "id": "meter-10797", + "maker": "Maker E", + "model": "Model 10797", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.53812665176195, + 28.63690634036181 + ] + }, + "properties": { + "id": "meter-10798", + "maker": "Maker G", + "model": "Model 10798", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97322727272637, + 26.333862280312168 + ] + }, + "properties": { + "id": "meter-10799", + "maker": "Maker H", + "model": "Model 10799", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92806801323278, + 26.766779770295457 + ] + }, + "properties": { + "id": "meter-10800", + "maker": "Maker B", + "model": "Model 10800", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.68092257051803, + 24.35613554806353 + ] + }, + "properties": { + "id": "meter-10801", + "maker": "Maker I", + "model": "Model 10801", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.47580352796459, + 28.38626643436679 + ] + }, + "properties": { + "id": "meter-10802", + "maker": "Maker B", + "model": "Model 10802", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.43312196593466, + 25.208308432205893 + ] + }, + "properties": { + "id": "meter-10803", + "maker": "Maker A", + "model": "Model 10803", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.79588759132321, + 30.803790254716393 + ] + }, + "properties": { + "id": "meter-10804", + "maker": "Maker J", + "model": "Model 10804", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.53910505439095, + 28.616867416563633 + ] + }, + "properties": { + "id": "meter-10805", + "maker": "Maker H", + "model": "Model 10805", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.189516698814565, + 26.30882380249656 + ] + }, + "properties": { + "id": "meter-10806", + "maker": "Maker E", + "model": "Model 10806", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.538124772920035, + 24.306504101858092 + ] + }, + "properties": { + "id": "meter-10807", + "maker": "Maker C", + "model": "Model 10807", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.77750598192497, + 28.391290396171836 + ] + }, + "properties": { + "id": "meter-10808", + "maker": "Maker D", + "model": "Model 10808", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.19650632277277, + 24.024325227393575 + ] + }, + "properties": { + "id": "meter-10809", + "maker": "Maker B", + "model": "Model 10809", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.98758520454268, + 24.281929868995075 + ] + }, + "properties": { + "id": "meter-10810", + "maker": "Maker G", + "model": "Model 10810", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.40459600597345, + 28.319239721380853 + ] + }, + "properties": { + "id": "meter-10811", + "maker": "Maker C", + "model": "Model 10811", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.737671842627314, + 18.27952420254796 + ] + }, + "properties": { + "id": "meter-10812", + "maker": "Maker C", + "model": "Model 10812", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.268651832484686, + 30.134684257352426 + ] + }, + "properties": { + "id": "meter-10813", + "maker": "Maker G", + "model": "Model 10813", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.523746782537856, + 28.57409011664379 + ] + }, + "properties": { + "id": "meter-10814", + "maker": "Maker B", + "model": "Model 10814", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.94857671340815, + 30.061333189420285 + ] + }, + "properties": { + "id": "meter-10815", + "maker": "Maker E", + "model": "Model 10815", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.80949978766912, + 18.352721090176075 + ] + }, + "properties": { + "id": "meter-10816", + "maker": "Maker F", + "model": "Model 10816", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67465264297758, + 24.651823338133084 + ] + }, + "properties": { + "id": "meter-10817", + "maker": "Maker F", + "model": "Model 10817", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.15805147453828, + 24.16536212733049 + ] + }, + "properties": { + "id": "meter-10818", + "maker": "Maker D", + "model": "Model 10818", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72666261195443, + 18.277697229127178 + ] + }, + "properties": { + "id": "meter-10819", + "maker": "Maker H", + "model": "Model 10819", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.737541116291034, + 24.55482593428759 + ] + }, + "properties": { + "id": "meter-10820", + "maker": "Maker F", + "model": "Model 10820", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.93909602411888, + 30.780215424971683 + ] + }, + "properties": { + "id": "meter-10821", + "maker": "Maker B", + "model": "Model 10821", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.121062748660286, + 17.406692552983234 + ] + }, + "properties": { + "id": "meter-10822", + "maker": "Maker F", + "model": "Model 10822", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2036285100199, + 21.442165101792057 + ] + }, + "properties": { + "id": "meter-10823", + "maker": "Maker B", + "model": "Model 10823", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.1972505840156, + 21.76304769694813 + ] + }, + "properties": { + "id": "meter-10824", + "maker": "Maker G", + "model": "Model 10824", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.43233514955981, + 18.275208147375523 + ] + }, + "properties": { + "id": "meter-10825", + "maker": "Maker C", + "model": "Model 10825", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.35449464980737, + 21.563968356248438 + ] + }, + "properties": { + "id": "meter-10826", + "maker": "Maker I", + "model": "Model 10826", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.16483581402543, + 30.125864336184243 + ] + }, + "properties": { + "id": "meter-10827", + "maker": "Maker C", + "model": "Model 10827", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60652978334907, + 24.47767060031792 + ] + }, + "properties": { + "id": "meter-10828", + "maker": "Maker E", + "model": "Model 10828", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.849962208578496, + 21.400559176807956 + ] + }, + "properties": { + "id": "meter-10829", + "maker": "Maker J", + "model": "Model 10829", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13838331842199, + 26.058785424770356 + ] + }, + "properties": { + "id": "meter-10830", + "maker": "Maker B", + "model": "Model 10830", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.46532120633616, + 18.270164973480494 + ] + }, + "properties": { + "id": "meter-10831", + "maker": "Maker A", + "model": "Model 10831", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.154960242308064, + 26.356021801598995 + ] + }, + "properties": { + "id": "meter-10832", + "maker": "Maker H", + "model": "Model 10832", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.950796707767516, + 26.563399403042677 + ] + }, + "properties": { + "id": "meter-10833", + "maker": "Maker I", + "model": "Model 10833", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.65538384599561, + 28.319283985151685 + ] + }, + "properties": { + "id": "meter-10834", + "maker": "Maker E", + "model": "Model 10834", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92343977244556, + 26.657249430702755 + ] + }, + "properties": { + "id": "meter-10835", + "maker": "Maker G", + "model": "Model 10835", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.17391097201761, + 21.349001453890242 + ] + }, + "properties": { + "id": "meter-10836", + "maker": "Maker A", + "model": "Model 10836", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54790632964793, + 25.419931869306627 + ] + }, + "properties": { + "id": "meter-10837", + "maker": "Maker F", + "model": "Model 10837", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.79894613660154, + 24.803277746947007 + ] + }, + "properties": { + "id": "meter-10838", + "maker": "Maker B", + "model": "Model 10838", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.9662206450222, + 26.047580670295055 + ] + }, + "properties": { + "id": "meter-10839", + "maker": "Maker J", + "model": "Model 10839", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.76059286871346, + 21.514571723139063 + ] + }, + "properties": { + "id": "meter-10840", + "maker": "Maker C", + "model": "Model 10840", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12000226755653, + 17.4361606169667 + ] + }, + "properties": { + "id": "meter-10841", + "maker": "Maker G", + "model": "Model 10841", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.005291219105374, + 26.325018676310524 + ] + }, + "properties": { + "id": "meter-10842", + "maker": "Maker F", + "model": "Model 10842", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50619921609175, + 18.20706416586528 + ] + }, + "properties": { + "id": "meter-10843", + "maker": "Maker A", + "model": "Model 10843", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.068480724945864, + 30.94151294384609 + ] + }, + "properties": { + "id": "meter-10844", + "maker": "Maker J", + "model": "Model 10844", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.788459043238305, + 21.56837006744228 + ] + }, + "properties": { + "id": "meter-10845", + "maker": "Maker E", + "model": "Model 10845", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.29468654715871, + 21.513918442102796 + ] + }, + "properties": { + "id": "meter-10846", + "maker": "Maker F", + "model": "Model 10846", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.08193346336351, + 24.10331732202679 + ] + }, + "properties": { + "id": "meter-10847", + "maker": "Maker C", + "model": "Model 10847", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67940884198349, + 24.53293138473066 + ] + }, + "properties": { + "id": "meter-10848", + "maker": "Maker I", + "model": "Model 10848", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.132748575892855, + 26.394575957934897 + ] + }, + "properties": { + "id": "meter-10849", + "maker": "Maker C", + "model": "Model 10849", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.54668027407087, + 18.080578153998047 + ] + }, + "properties": { + "id": "meter-10850", + "maker": "Maker I", + "model": "Model 10850", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.925059440483636, + 30.866222519892318 + ] + }, + "properties": { + "id": "meter-10851", + "maker": "Maker B", + "model": "Model 10851", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.81790925831171, + 25.42831593396175 + ] + }, + "properties": { + "id": "meter-10852", + "maker": "Maker E", + "model": "Model 10852", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.444232595209506, + 28.634456583326752 + ] + }, + "properties": { + "id": "meter-10853", + "maker": "Maker I", + "model": "Model 10853", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04370320040692, + 24.11516476025227 + ] + }, + "properties": { + "id": "meter-10854", + "maker": "Maker G", + "model": "Model 10854", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.21357411218191, + 31.115260971573843 + ] + }, + "properties": { + "id": "meter-10855", + "maker": "Maker B", + "model": "Model 10855", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.555747693891945, + 25.394310284129798 + ] + }, + "properties": { + "id": "meter-10856", + "maker": "Maker A", + "model": "Model 10856", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.16726371889776, + 29.678737107465743 + ] + }, + "properties": { + "id": "meter-10857", + "maker": "Maker F", + "model": "Model 10857", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.038400223481, + 30.975941905420317 + ] + }, + "properties": { + "id": "meter-10858", + "maker": "Maker J", + "model": "Model 10858", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.85940107402182, + 24.68667848084967 + ] + }, + "properties": { + "id": "meter-10859", + "maker": "Maker J", + "model": "Model 10859", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14717967572784, + 26.114947622573123 + ] + }, + "properties": { + "id": "meter-10860", + "maker": "Maker F", + "model": "Model 10860", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.754427327265, + 21.229823584550513 + ] + }, + "properties": { + "id": "meter-10861", + "maker": "Maker J", + "model": "Model 10861", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88388899780842, + 21.4006349881739 + ] + }, + "properties": { + "id": "meter-10862", + "maker": "Maker A", + "model": "Model 10862", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.756362321940735, + 28.364396929362904 + ] + }, + "properties": { + "id": "meter-10863", + "maker": "Maker E", + "model": "Model 10863", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.93608408556019, + 27.47835183073385 + ] + }, + "properties": { + "id": "meter-10864", + "maker": "Maker G", + "model": "Model 10864", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.977347765873205, + 26.196562009135967 + ] + }, + "properties": { + "id": "meter-10865", + "maker": "Maker D", + "model": "Model 10865", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67494685584686, + 24.732457642379742 + ] + }, + "properties": { + "id": "meter-10866", + "maker": "Maker C", + "model": "Model 10866", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21480782382325, + 29.99251531283965 + ] + }, + "properties": { + "id": "meter-10867", + "maker": "Maker C", + "model": "Model 10867", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.61402175062149, + 24.941342024126328 + ] + }, + "properties": { + "id": "meter-10868", + "maker": "Maker E", + "model": "Model 10868", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.14621333155866, + 31.0026665936045 + ] + }, + "properties": { + "id": "meter-10869", + "maker": "Maker D", + "model": "Model 10869", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.78770745933556, + 26.5137300562935 + ] + }, + "properties": { + "id": "meter-10870", + "maker": "Maker A", + "model": "Model 10870", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.9144490265653, + 21.495265281561213 + ] + }, + "properties": { + "id": "meter-10871", + "maker": "Maker D", + "model": "Model 10871", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52862376626107, + 18.220084406967104 + ] + }, + "properties": { + "id": "meter-10872", + "maker": "Maker B", + "model": "Model 10872", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.79372890232143, + 24.497788848674077 + ] + }, + "properties": { + "id": "meter-10873", + "maker": "Maker B", + "model": "Model 10873", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.517271501399726, + 28.40821539224644 + ] + }, + "properties": { + "id": "meter-10874", + "maker": "Maker F", + "model": "Model 10874", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.03595905450775, + 30.101080564169532 + ] + }, + "properties": { + "id": "meter-10875", + "maker": "Maker C", + "model": "Model 10875", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.393820107086555, + 17.98415999426056 + ] + }, + "properties": { + "id": "meter-10876", + "maker": "Maker H", + "model": "Model 10876", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.56660502480871, + 24.86704595545388 + ] + }, + "properties": { + "id": "meter-10877", + "maker": "Maker I", + "model": "Model 10877", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.611468435360365, + 18.25112725621599 + ] + }, + "properties": { + "id": "meter-10878", + "maker": "Maker G", + "model": "Model 10878", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.20154292746526, + 26.348228032825496 + ] + }, + "properties": { + "id": "meter-10879", + "maker": "Maker F", + "model": "Model 10879", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.749154309107695, + 18.345323504038078 + ] + }, + "properties": { + "id": "meter-10880", + "maker": "Maker B", + "model": "Model 10880", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.3007221239358, + 23.972663159948826 + ] + }, + "properties": { + "id": "meter-10881", + "maker": "Maker E", + "model": "Model 10881", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.16330868193979, + 26.332256291918206 + ] + }, + "properties": { + "id": "meter-10882", + "maker": "Maker G", + "model": "Model 10882", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.33786571320316, + 30.131068170415308 + ] + }, + "properties": { + "id": "meter-10883", + "maker": "Maker G", + "model": "Model 10883", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.71203462564703, + 27.446228270362553 + ] + }, + "properties": { + "id": "meter-10884", + "maker": "Maker B", + "model": "Model 10884", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.861299428253034, + 21.369993997808493 + ] + }, + "properties": { + "id": "meter-10885", + "maker": "Maker E", + "model": "Model 10885", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.15346514936388, + 21.52618447926394 + ] + }, + "properties": { + "id": "meter-10886", + "maker": "Maker C", + "model": "Model 10886", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.74635702097671, + 24.408791686948554 + ] + }, + "properties": { + "id": "meter-10887", + "maker": "Maker E", + "model": "Model 10887", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.60504372683795, + 18.431107734083536 + ] + }, + "properties": { + "id": "meter-10888", + "maker": "Maker E", + "model": "Model 10888", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.16787253337001, + 24.125456951747445 + ] + }, + "properties": { + "id": "meter-10889", + "maker": "Maker F", + "model": "Model 10889", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.69379080779883, + 21.53182549879888 + ] + }, + "properties": { + "id": "meter-10890", + "maker": "Maker G", + "model": "Model 10890", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.8607813049436, + 18.564356440953524 + ] + }, + "properties": { + "id": "meter-10891", + "maker": "Maker H", + "model": "Model 10891", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.65549831512688, + 24.42354600917836 + ] + }, + "properties": { + "id": "meter-10892", + "maker": "Maker J", + "model": "Model 10892", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.89731980606624, + 30.867076547264933 + ] + }, + "properties": { + "id": "meter-10893", + "maker": "Maker D", + "model": "Model 10893", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9475366660518, + 26.407540815517823 + ] + }, + "properties": { + "id": "meter-10894", + "maker": "Maker F", + "model": "Model 10894", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09550853629685, + 17.458773262073244 + ] + }, + "properties": { + "id": "meter-10895", + "maker": "Maker H", + "model": "Model 10895", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.690452330380346, + 18.339352649184097 + ] + }, + "properties": { + "id": "meter-10896", + "maker": "Maker C", + "model": "Model 10896", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.16073410400328, + 26.295202779518025 + ] + }, + "properties": { + "id": "meter-10897", + "maker": "Maker C", + "model": "Model 10897", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.112539981245654, + 26.296725522165758 + ] + }, + "properties": { + "id": "meter-10898", + "maker": "Maker E", + "model": "Model 10898", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.57019948666235, + 27.24018060900694 + ] + }, + "properties": { + "id": "meter-10899", + "maker": "Maker F", + "model": "Model 10899", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96769371651695, + 26.242876257393124 + ] + }, + "properties": { + "id": "meter-10900", + "maker": "Maker E", + "model": "Model 10900", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45908571767472, + 18.218993762470532 + ] + }, + "properties": { + "id": "meter-10901", + "maker": "Maker J", + "model": "Model 10901", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.18837485317091, + 30.019360951531556 + ] + }, + "properties": { + "id": "meter-10902", + "maker": "Maker D", + "model": "Model 10902", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.76758630941827, + 24.72596023651355 + ] + }, + "properties": { + "id": "meter-10903", + "maker": "Maker F", + "model": "Model 10903", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.15560352773923, + 29.98531397690032 + ] + }, + "properties": { + "id": "meter-10904", + "maker": "Maker B", + "model": "Model 10904", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.310423594797165, + 21.250874490467684 + ] + }, + "properties": { + "id": "meter-10905", + "maker": "Maker J", + "model": "Model 10905", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.344274436967744, + 17.45711349718143 + ] + }, + "properties": { + "id": "meter-10906", + "maker": "Maker E", + "model": "Model 10906", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.5694193407388, + 24.90635878398579 + ] + }, + "properties": { + "id": "meter-10907", + "maker": "Maker B", + "model": "Model 10907", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.38069998332149, + 20.1290972728447 + ] + }, + "properties": { + "id": "meter-10908", + "maker": "Maker B", + "model": "Model 10908", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.79188770993369, + 28.22888428069258 + ] + }, + "properties": { + "id": "meter-10909", + "maker": "Maker A", + "model": "Model 10909", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.070226315805336, + 26.449891792476144 + ] + }, + "properties": { + "id": "meter-10910", + "maker": "Maker A", + "model": "Model 10910", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.81677353023476, + 24.60689605824551 + ] + }, + "properties": { + "id": "meter-10911", + "maker": "Maker B", + "model": "Model 10911", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.412589831519156, + 18.151539831187677 + ] + }, + "properties": { + "id": "meter-10912", + "maker": "Maker G", + "model": "Model 10912", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.545056591360876, + 20.238505349578944 + ] + }, + "properties": { + "id": "meter-10913", + "maker": "Maker F", + "model": "Model 10913", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01657353606692, + 17.745444771686277 + ] + }, + "properties": { + "id": "meter-10914", + "maker": "Maker A", + "model": "Model 10914", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67114296150677, + 27.479089758292382 + ] + }, + "properties": { + "id": "meter-10915", + "maker": "Maker D", + "model": "Model 10915", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04485895671634, + 24.159911697570262 + ] + }, + "properties": { + "id": "meter-10916", + "maker": "Maker B", + "model": "Model 10916", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01855427486533, + 17.443802820248344 + ] + }, + "properties": { + "id": "meter-10917", + "maker": "Maker J", + "model": "Model 10917", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.89043874703875, + 26.059631367687526 + ] + }, + "properties": { + "id": "meter-10918", + "maker": "Maker H", + "model": "Model 10918", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.74553951914207, + 27.60426958275584 + ] + }, + "properties": { + "id": "meter-10919", + "maker": "Maker D", + "model": "Model 10919", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84175144319823, + 24.626120309338816 + ] + }, + "properties": { + "id": "meter-10920", + "maker": "Maker C", + "model": "Model 10920", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.239004912282205, + 19.97190443881237 + ] + }, + "properties": { + "id": "meter-10921", + "maker": "Maker A", + "model": "Model 10921", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.174989321720794, + 31.082773247362436 + ] + }, + "properties": { + "id": "meter-10922", + "maker": "Maker J", + "model": "Model 10922", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26400802815113, + 21.326669866672095 + ] + }, + "properties": { + "id": "meter-10923", + "maker": "Maker C", + "model": "Model 10923", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.143349532166766, + 26.30352893458316 + ] + }, + "properties": { + "id": "meter-10924", + "maker": "Maker G", + "model": "Model 10924", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.492338871112096, + 28.120139967860144 + ] + }, + "properties": { + "id": "meter-10925", + "maker": "Maker B", + "model": "Model 10925", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.166381664916806, + 26.30587742216094 + ] + }, + "properties": { + "id": "meter-10926", + "maker": "Maker F", + "model": "Model 10926", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.95647069320593, + 21.48229135104154 + ] + }, + "properties": { + "id": "meter-10927", + "maker": "Maker F", + "model": "Model 10927", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.57546994804632, + 18.244773154805944 + ] + }, + "properties": { + "id": "meter-10928", + "maker": "Maker G", + "model": "Model 10928", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.902099733098, + 31.23275268379439 + ] + }, + "properties": { + "id": "meter-10929", + "maker": "Maker G", + "model": "Model 10929", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.195554151147675, + 21.396988447285903 + ] + }, + "properties": { + "id": "meter-10930", + "maker": "Maker A", + "model": "Model 10930", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15021099737737, + 26.309292655201883 + ] + }, + "properties": { + "id": "meter-10931", + "maker": "Maker I", + "model": "Model 10931", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.422252809105615, + 28.549929680502917 + ] + }, + "properties": { + "id": "meter-10932", + "maker": "Maker B", + "model": "Model 10932", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.568929378569194, + 24.744732547023023 + ] + }, + "properties": { + "id": "meter-10933", + "maker": "Maker B", + "model": "Model 10933", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.18281672778115, + 21.451511583712833 + ] + }, + "properties": { + "id": "meter-10934", + "maker": "Maker H", + "model": "Model 10934", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.678413962758476, + 24.495227729555157 + ] + }, + "properties": { + "id": "meter-10935", + "maker": "Maker F", + "model": "Model 10935", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.49980056788104, + 25.070388025808317 + ] + }, + "properties": { + "id": "meter-10936", + "maker": "Maker B", + "model": "Model 10936", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.35547965628126, + 24.0544242290531 + ] + }, + "properties": { + "id": "meter-10937", + "maker": "Maker F", + "model": "Model 10937", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14227449254099, + 17.452162475348025 + ] + }, + "properties": { + "id": "meter-10938", + "maker": "Maker B", + "model": "Model 10938", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.25773970306571, + 26.396478647396123 + ] + }, + "properties": { + "id": "meter-10939", + "maker": "Maker E", + "model": "Model 10939", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.693058097457246, + 25.268328155197025 + ] + }, + "properties": { + "id": "meter-10940", + "maker": "Maker H", + "model": "Model 10940", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.040106488995086, + 30.99532534423969 + ] + }, + "properties": { + "id": "meter-10941", + "maker": "Maker F", + "model": "Model 10941", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.74248677376972, + 18.29357690527425 + ] + }, + "properties": { + "id": "meter-10942", + "maker": "Maker J", + "model": "Model 10942", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.46770987499099, + 25.384140483981138 + ] + }, + "properties": { + "id": "meter-10943", + "maker": "Maker I", + "model": "Model 10943", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.049925666949605, + 24.115586295419373 + ] + }, + "properties": { + "id": "meter-10944", + "maker": "Maker G", + "model": "Model 10944", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01509819723213, + 17.417328455226738 + ] + }, + "properties": { + "id": "meter-10945", + "maker": "Maker H", + "model": "Model 10945", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.7122348036793, + 18.355099035528227 + ] + }, + "properties": { + "id": "meter-10946", + "maker": "Maker G", + "model": "Model 10946", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.889503348016895, + 26.543744839936043 + ] + }, + "properties": { + "id": "meter-10947", + "maker": "Maker F", + "model": "Model 10947", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62791716170305, + 27.53364195126704 + ] + }, + "properties": { + "id": "meter-10948", + "maker": "Maker E", + "model": "Model 10948", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.006147212148676, + 26.314603258337943 + ] + }, + "properties": { + "id": "meter-10949", + "maker": "Maker J", + "model": "Model 10949", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.82625116528126, + 18.221738180522447 + ] + }, + "properties": { + "id": "meter-10950", + "maker": "Maker C", + "model": "Model 10950", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.15214908013849, + 17.510899744527162 + ] + }, + "properties": { + "id": "meter-10951", + "maker": "Maker A", + "model": "Model 10951", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.561438040023376, + 18.038310664729817 + ] + }, + "properties": { + "id": "meter-10952", + "maker": "Maker A", + "model": "Model 10952", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20630961952218, + 29.9374368509866 + ] + }, + "properties": { + "id": "meter-10953", + "maker": "Maker C", + "model": "Model 10953", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.112302589438144, + 26.2515067547422 + ] + }, + "properties": { + "id": "meter-10954", + "maker": "Maker C", + "model": "Model 10954", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.583882627074864, + 24.541138564101306 + ] + }, + "properties": { + "id": "meter-10955", + "maker": "Maker F", + "model": "Model 10955", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.049004040651674, + 26.536698600951375 + ] + }, + "properties": { + "id": "meter-10956", + "maker": "Maker A", + "model": "Model 10956", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.6096992059069, + 28.42378387937927 + ] + }, + "properties": { + "id": "meter-10957", + "maker": "Maker G", + "model": "Model 10957", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.069495190256134, + 24.323741890515034 + ] + }, + "properties": { + "id": "meter-10958", + "maker": "Maker E", + "model": "Model 10958", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.27185563478749, + 24.289188729004636 + ] + }, + "properties": { + "id": "meter-10959", + "maker": "Maker G", + "model": "Model 10959", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.135294099924856, + 26.25054319693689 + ] + }, + "properties": { + "id": "meter-10960", + "maker": "Maker I", + "model": "Model 10960", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19321204267946, + 26.240070723995508 + ] + }, + "properties": { + "id": "meter-10961", + "maker": "Maker H", + "model": "Model 10961", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12527992507468, + 26.45129140403524 + ] + }, + "properties": { + "id": "meter-10962", + "maker": "Maker G", + "model": "Model 10962", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.44273253933138, + 27.655499048310517 + ] + }, + "properties": { + "id": "meter-10963", + "maker": "Maker I", + "model": "Model 10963", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.13713546462025, + 30.135851070493217 + ] + }, + "properties": { + "id": "meter-10964", + "maker": "Maker C", + "model": "Model 10964", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98654167158774, + 26.268627813152918 + ] + }, + "properties": { + "id": "meter-10965", + "maker": "Maker H", + "model": "Model 10965", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.726637200427284, + 18.305402605202737 + ] + }, + "properties": { + "id": "meter-10966", + "maker": "Maker E", + "model": "Model 10966", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.69974658229234, + 24.864180996729914 + ] + }, + "properties": { + "id": "meter-10967", + "maker": "Maker E", + "model": "Model 10967", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15740958054985, + 26.24778684533623 + ] + }, + "properties": { + "id": "meter-10968", + "maker": "Maker A", + "model": "Model 10968", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.51953302698468, + 18.441508290275152 + ] + }, + "properties": { + "id": "meter-10969", + "maker": "Maker D", + "model": "Model 10969", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60219682375062, + 24.563881764275354 + ] + }, + "properties": { + "id": "meter-10970", + "maker": "Maker D", + "model": "Model 10970", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.856809162448776, + 21.459131326700547 + ] + }, + "properties": { + "id": "meter-10971", + "maker": "Maker B", + "model": "Model 10971", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.701127176135195, + 27.51331401663653 + ] + }, + "properties": { + "id": "meter-10972", + "maker": "Maker H", + "model": "Model 10972", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.059888508665274, + 26.378179977514417 + ] + }, + "properties": { + "id": "meter-10973", + "maker": "Maker F", + "model": "Model 10973", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.33418592744031, + 20.136779415066854 + ] + }, + "properties": { + "id": "meter-10974", + "maker": "Maker J", + "model": "Model 10974", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.616165978507894, + 27.400693115232013 + ] + }, + "properties": { + "id": "meter-10975", + "maker": "Maker H", + "model": "Model 10975", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.13061938842561, + 31.027318889818506 + ] + }, + "properties": { + "id": "meter-10976", + "maker": "Maker I", + "model": "Model 10976", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.69010198140225, + 28.50202771088429 + ] + }, + "properties": { + "id": "meter-10977", + "maker": "Maker I", + "model": "Model 10977", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14369693212716, + 26.275451753442205 + ] + }, + "properties": { + "id": "meter-10978", + "maker": "Maker G", + "model": "Model 10978", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14095153274051, + 26.268399282312362 + ] + }, + "properties": { + "id": "meter-10979", + "maker": "Maker B", + "model": "Model 10979", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.074907022629674, + 26.171414547291803 + ] + }, + "properties": { + "id": "meter-10980", + "maker": "Maker B", + "model": "Model 10980", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.74493099428102, + 27.576688446753195 + ] + }, + "properties": { + "id": "meter-10981", + "maker": "Maker B", + "model": "Model 10981", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.29492557214946, + 29.78330371612955 + ] + }, + "properties": { + "id": "meter-10982", + "maker": "Maker C", + "model": "Model 10982", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.75980408302317, + 25.519454818289674 + ] + }, + "properties": { + "id": "meter-10983", + "maker": "Maker F", + "model": "Model 10983", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.052647820209906, + 26.237899625109748 + ] + }, + "properties": { + "id": "meter-10984", + "maker": "Maker H", + "model": "Model 10984", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.42590259060066, + 21.6098609672257 + ] + }, + "properties": { + "id": "meter-10985", + "maker": "Maker B", + "model": "Model 10985", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21329074021753, + 29.970219182872736 + ] + }, + "properties": { + "id": "meter-10986", + "maker": "Maker I", + "model": "Model 10986", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.76855390586738, + 24.568982410494073 + ] + }, + "properties": { + "id": "meter-10987", + "maker": "Maker C", + "model": "Model 10987", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10493506353556, + 17.576157362878927 + ] + }, + "properties": { + "id": "meter-10988", + "maker": "Maker A", + "model": "Model 10988", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.211751795266224, + 26.250368877344748 + ] + }, + "properties": { + "id": "meter-10989", + "maker": "Maker I", + "model": "Model 10989", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72973687219384, + 18.313272078671403 + ] + }, + "properties": { + "id": "meter-10990", + "maker": "Maker E", + "model": "Model 10990", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.211387157444975, + 21.361205849487096 + ] + }, + "properties": { + "id": "meter-10991", + "maker": "Maker B", + "model": "Model 10991", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.744180262987605, + 18.179213626445073 + ] + }, + "properties": { + "id": "meter-10992", + "maker": "Maker C", + "model": "Model 10992", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.079677038570765, + 26.11514649399981 + ] + }, + "properties": { + "id": "meter-10993", + "maker": "Maker E", + "model": "Model 10993", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.206078047325434, + 21.47379967165003 + ] + }, + "properties": { + "id": "meter-10994", + "maker": "Maker E", + "model": "Model 10994", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.65958643737392, + 18.352327201193983 + ] + }, + "properties": { + "id": "meter-10995", + "maker": "Maker J", + "model": "Model 10995", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12512072778545, + 17.483317629297215 + ] + }, + "properties": { + "id": "meter-10996", + "maker": "Maker J", + "model": "Model 10996", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.832925473399335, + 21.366073791991777 + ] + }, + "properties": { + "id": "meter-10997", + "maker": "Maker E", + "model": "Model 10997", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.875869126354615, + 17.359164684071736 + ] + }, + "properties": { + "id": "meter-10998", + "maker": "Maker C", + "model": "Model 10998", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.6298295110724, + 18.343535738945583 + ] + }, + "properties": { + "id": "meter-10999", + "maker": "Maker I", + "model": "Model 10999", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.132724021182426, + 26.10920615624643 + ] + }, + "properties": { + "id": "meter-11000", + "maker": "Maker E", + "model": "Model 11000", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00535553216619, + 26.350653984694837 + ] + }, + "properties": { + "id": "meter-11001", + "maker": "Maker E", + "model": "Model 11001", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.980835220341156, + 26.374726951838625 + ] + }, + "properties": { + "id": "meter-11002", + "maker": "Maker J", + "model": "Model 11002", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.60160999334147, + 18.00397639677119 + ] + }, + "properties": { + "id": "meter-11003", + "maker": "Maker J", + "model": "Model 11003", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18906547560071, + 26.229014646550407 + ] + }, + "properties": { + "id": "meter-11004", + "maker": "Maker G", + "model": "Model 11004", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.11522885721597, + 24.17555454369412 + ] + }, + "properties": { + "id": "meter-11005", + "maker": "Maker G", + "model": "Model 11005", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.16732290828746, + 17.54063714948592 + ] + }, + "properties": { + "id": "meter-11006", + "maker": "Maker G", + "model": "Model 11006", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10134379465967, + 26.34241776189847 + ] + }, + "properties": { + "id": "meter-11007", + "maker": "Maker I", + "model": "Model 11007", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0952475455822, + 26.205294422660913 + ] + }, + "properties": { + "id": "meter-11008", + "maker": "Maker A", + "model": "Model 11008", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.238580427580786, + 24.15569409642566 + ] + }, + "properties": { + "id": "meter-11009", + "maker": "Maker H", + "model": "Model 11009", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.51225704170306, + 18.107404194026326 + ] + }, + "properties": { + "id": "meter-11010", + "maker": "Maker B", + "model": "Model 11010", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.24195748901315, + 17.596278367939576 + ] + }, + "properties": { + "id": "meter-11011", + "maker": "Maker H", + "model": "Model 11011", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.74144511961348, + 21.374266641710857 + ] + }, + "properties": { + "id": "meter-11012", + "maker": "Maker D", + "model": "Model 11012", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.26352561356412, + 26.354258602948452 + ] + }, + "properties": { + "id": "meter-11013", + "maker": "Maker G", + "model": "Model 11013", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.588239510128325, + 25.348785830906824 + ] + }, + "properties": { + "id": "meter-11014", + "maker": "Maker J", + "model": "Model 11014", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.05204092625528, + 30.822905242098336 + ] + }, + "properties": { + "id": "meter-11015", + "maker": "Maker J", + "model": "Model 11015", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.57075649449504, + 24.95524282886787 + ] + }, + "properties": { + "id": "meter-11016", + "maker": "Maker B", + "model": "Model 11016", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68862754522703, + 18.26490266488041 + ] + }, + "properties": { + "id": "meter-11017", + "maker": "Maker E", + "model": "Model 11017", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.440239008494075, + 25.379135013715263 + ] + }, + "properties": { + "id": "meter-11018", + "maker": "Maker J", + "model": "Model 11018", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.82620979712554, + 21.292784443678965 + ] + }, + "properties": { + "id": "meter-11019", + "maker": "Maker B", + "model": "Model 11019", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.77255820953187, + 28.37283918905289 + ] + }, + "properties": { + "id": "meter-11020", + "maker": "Maker I", + "model": "Model 11020", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08036820408413, + 17.54552405026239 + ] + }, + "properties": { + "id": "meter-11021", + "maker": "Maker B", + "model": "Model 11021", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.83658441040786, + 24.722584107992848 + ] + }, + "properties": { + "id": "meter-11022", + "maker": "Maker B", + "model": "Model 11022", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.61364032061019, + 24.98276327196635 + ] + }, + "properties": { + "id": "meter-11023", + "maker": "Maker J", + "model": "Model 11023", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.634693987971005, + 27.620730386939602 + ] + }, + "properties": { + "id": "meter-11024", + "maker": "Maker E", + "model": "Model 11024", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12194312521294, + 26.338717520527346 + ] + }, + "properties": { + "id": "meter-11025", + "maker": "Maker I", + "model": "Model 11025", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.1623264017378, + 21.47165139201502 + ] + }, + "properties": { + "id": "meter-11026", + "maker": "Maker C", + "model": "Model 11026", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.263623541051295, + 21.480489231779877 + ] + }, + "properties": { + "id": "meter-11027", + "maker": "Maker G", + "model": "Model 11027", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.659780484977155, + 24.53264210719414 + ] + }, + "properties": { + "id": "meter-11028", + "maker": "Maker G", + "model": "Model 11028", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.40124053105595, + 17.58820088376167 + ] + }, + "properties": { + "id": "meter-11029", + "maker": "Maker G", + "model": "Model 11029", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.494698395984315, + 29.974970853400237 + ] + }, + "properties": { + "id": "meter-11030", + "maker": "Maker E", + "model": "Model 11030", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.10579600055519, + 21.651841331855817 + ] + }, + "properties": { + "id": "meter-11031", + "maker": "Maker G", + "model": "Model 11031", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.27438569450601, + 17.48919806474147 + ] + }, + "properties": { + "id": "meter-11032", + "maker": "Maker E", + "model": "Model 11032", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.59631222233602, + 27.498513513607154 + ] + }, + "properties": { + "id": "meter-11033", + "maker": "Maker D", + "model": "Model 11033", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01592188746482, + 26.45186765530706 + ] + }, + "properties": { + "id": "meter-11034", + "maker": "Maker J", + "model": "Model 11034", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.44226220699032, + 30.13584031334566 + ] + }, + "properties": { + "id": "meter-11035", + "maker": "Maker D", + "model": "Model 11035", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09957341745876, + 26.42391040352946 + ] + }, + "properties": { + "id": "meter-11036", + "maker": "Maker J", + "model": "Model 11036", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99610335366344, + 26.47335109229016 + ] + }, + "properties": { + "id": "meter-11037", + "maker": "Maker H", + "model": "Model 11037", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.457915346221334, + 18.065546618583177 + ] + }, + "properties": { + "id": "meter-11038", + "maker": "Maker F", + "model": "Model 11038", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.7150632948173, + 18.296251299311376 + ] + }, + "properties": { + "id": "meter-11039", + "maker": "Maker H", + "model": "Model 11039", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.45125754711742, + 25.13128854716155 + ] + }, + "properties": { + "id": "meter-11040", + "maker": "Maker G", + "model": "Model 11040", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.365513009818216, + 29.995943595250942 + ] + }, + "properties": { + "id": "meter-11041", + "maker": "Maker G", + "model": "Model 11041", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.63218314607961, + 27.483697554784857 + ] + }, + "properties": { + "id": "meter-11042", + "maker": "Maker F", + "model": "Model 11042", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.79166657826778, + 27.47398291648606 + ] + }, + "properties": { + "id": "meter-11043", + "maker": "Maker D", + "model": "Model 11043", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.630744943398206, + 24.505629219473988 + ] + }, + "properties": { + "id": "meter-11044", + "maker": "Maker I", + "model": "Model 11044", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.16209907360808, + 21.49269049682097 + ] + }, + "properties": { + "id": "meter-11045", + "maker": "Maker B", + "model": "Model 11045", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.86800195184326, + 18.204996686455328 + ] + }, + "properties": { + "id": "meter-11046", + "maker": "Maker F", + "model": "Model 11046", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18027775013618, + 26.18615119208201 + ] + }, + "properties": { + "id": "meter-11047", + "maker": "Maker A", + "model": "Model 11047", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.52743803874573, + 24.451703017949686 + ] + }, + "properties": { + "id": "meter-11048", + "maker": "Maker I", + "model": "Model 11048", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.900031526229824, + 24.22247692260481 + ] + }, + "properties": { + "id": "meter-11049", + "maker": "Maker F", + "model": "Model 11049", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.476897883412676, + 27.719942338307803 + ] + }, + "properties": { + "id": "meter-11050", + "maker": "Maker B", + "model": "Model 11050", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.556943821147215, + 25.24486324439548 + ] + }, + "properties": { + "id": "meter-11051", + "maker": "Maker I", + "model": "Model 11051", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.89208141893846, + 26.43901592583569 + ] + }, + "properties": { + "id": "meter-11052", + "maker": "Maker B", + "model": "Model 11052", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77587918346801, + 21.170428089344824 + ] + }, + "properties": { + "id": "meter-11053", + "maker": "Maker B", + "model": "Model 11053", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.754292473535656, + 21.26178083752746 + ] + }, + "properties": { + "id": "meter-11054", + "maker": "Maker C", + "model": "Model 11054", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.71126755650309, + 24.725432889622045 + ] + }, + "properties": { + "id": "meter-11055", + "maker": "Maker F", + "model": "Model 11055", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.1173227418413, + 29.820297588639882 + ] + }, + "properties": { + "id": "meter-11056", + "maker": "Maker D", + "model": "Model 11056", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24829352738818, + 21.37317457040484 + ] + }, + "properties": { + "id": "meter-11057", + "maker": "Maker G", + "model": "Model 11057", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93485359854363, + 26.505830045300254 + ] + }, + "properties": { + "id": "meter-11058", + "maker": "Maker G", + "model": "Model 11058", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.014625977376674, + 24.12276463888138 + ] + }, + "properties": { + "id": "meter-11059", + "maker": "Maker F", + "model": "Model 11059", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.023832903338935, + 26.59501036559725 + ] + }, + "properties": { + "id": "meter-11060", + "maker": "Maker C", + "model": "Model 11060", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06422886968379, + 26.393415634436156 + ] + }, + "properties": { + "id": "meter-11061", + "maker": "Maker C", + "model": "Model 11061", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.986278567361055, + 17.72450569721447 + ] + }, + "properties": { + "id": "meter-11062", + "maker": "Maker D", + "model": "Model 11062", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.49472955282553, + 19.946038452565116 + ] + }, + "properties": { + "id": "meter-11063", + "maker": "Maker A", + "model": "Model 11063", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.373822921269806, + 21.535405855604985 + ] + }, + "properties": { + "id": "meter-11064", + "maker": "Maker I", + "model": "Model 11064", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.863433338916735, + 21.376242446424616 + ] + }, + "properties": { + "id": "meter-11065", + "maker": "Maker H", + "model": "Model 11065", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52473431011181, + 17.94952816383835 + ] + }, + "properties": { + "id": "meter-11066", + "maker": "Maker B", + "model": "Model 11066", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17889819100851, + 26.33932848889026 + ] + }, + "properties": { + "id": "meter-11067", + "maker": "Maker J", + "model": "Model 11067", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.38170787527319, + 18.303953975609524 + ] + }, + "properties": { + "id": "meter-11068", + "maker": "Maker G", + "model": "Model 11068", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.54313133842645, + 28.370342152192922 + ] + }, + "properties": { + "id": "meter-11069", + "maker": "Maker E", + "model": "Model 11069", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.073746822950625, + 26.398543446100657 + ] + }, + "properties": { + "id": "meter-11070", + "maker": "Maker H", + "model": "Model 11070", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.041529339388966, + 24.14087395337755 + ] + }, + "properties": { + "id": "meter-11071", + "maker": "Maker E", + "model": "Model 11071", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.365967293312146, + 24.56287503537716 + ] + }, + "properties": { + "id": "meter-11072", + "maker": "Maker C", + "model": "Model 11072", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.462615729214875, + 21.381553054764762 + ] + }, + "properties": { + "id": "meter-11073", + "maker": "Maker A", + "model": "Model 11073", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42096116005909, + 20.015367515528652 + ] + }, + "properties": { + "id": "meter-11074", + "maker": "Maker D", + "model": "Model 11074", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07667959183223, + 26.422231269258397 + ] + }, + "properties": { + "id": "meter-11075", + "maker": "Maker F", + "model": "Model 11075", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.93701323175093, + 26.229047283079236 + ] + }, + "properties": { + "id": "meter-11076", + "maker": "Maker E", + "model": "Model 11076", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06873108565425, + 26.693899013933116 + ] + }, + "properties": { + "id": "meter-11077", + "maker": "Maker B", + "model": "Model 11077", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.771233556161874, + 28.319470743428717 + ] + }, + "properties": { + "id": "meter-11078", + "maker": "Maker J", + "model": "Model 11078", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57092964685883, + 25.28322216730516 + ] + }, + "properties": { + "id": "meter-11079", + "maker": "Maker B", + "model": "Model 11079", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.620488410922796, + 24.50618013554992 + ] + }, + "properties": { + "id": "meter-11080", + "maker": "Maker G", + "model": "Model 11080", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.063421713647315, + 26.385983251888394 + ] + }, + "properties": { + "id": "meter-11081", + "maker": "Maker C", + "model": "Model 11081", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.192538554234865, + 29.96686726064807 + ] + }, + "properties": { + "id": "meter-11082", + "maker": "Maker J", + "model": "Model 11082", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.5033164406008, + 28.184184671828785 + ] + }, + "properties": { + "id": "meter-11083", + "maker": "Maker B", + "model": "Model 11083", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0858889336844, + 26.413039165277883 + ] + }, + "properties": { + "id": "meter-11084", + "maker": "Maker D", + "model": "Model 11084", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24301665525636, + 21.647635986998342 + ] + }, + "properties": { + "id": "meter-11085", + "maker": "Maker D", + "model": "Model 11085", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.54156348041129, + 24.527617869332783 + ] + }, + "properties": { + "id": "meter-11086", + "maker": "Maker B", + "model": "Model 11086", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.731251662852884, + 20.013592199808283 + ] + }, + "properties": { + "id": "meter-11087", + "maker": "Maker G", + "model": "Model 11087", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.840449871470966, + 21.395264918686973 + ] + }, + "properties": { + "id": "meter-11088", + "maker": "Maker F", + "model": "Model 11088", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.608073145161256, + 25.164292041381916 + ] + }, + "properties": { + "id": "meter-11089", + "maker": "Maker E", + "model": "Model 11089", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.59669456647759, + 27.521647103080166 + ] + }, + "properties": { + "id": "meter-11090", + "maker": "Maker H", + "model": "Model 11090", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09860778370384, + 26.432549147996372 + ] + }, + "properties": { + "id": "meter-11091", + "maker": "Maker F", + "model": "Model 11091", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.173595361612136, + 29.984019745340966 + ] + }, + "properties": { + "id": "meter-11092", + "maker": "Maker A", + "model": "Model 11092", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94950706879613, + 26.340271574429213 + ] + }, + "properties": { + "id": "meter-11093", + "maker": "Maker F", + "model": "Model 11093", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.5351816339948, + 24.717566513766258 + ] + }, + "properties": { + "id": "meter-11094", + "maker": "Maker F", + "model": "Model 11094", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.453189461310124, + 19.9526102286344 + ] + }, + "properties": { + "id": "meter-11095", + "maker": "Maker G", + "model": "Model 11095", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09089994281122, + 26.4210114469511 + ] + }, + "properties": { + "id": "meter-11096", + "maker": "Maker C", + "model": "Model 11096", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.81464074379485, + 26.252509551996784 + ] + }, + "properties": { + "id": "meter-11097", + "maker": "Maker F", + "model": "Model 11097", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.8662104142768, + 17.43939066975211 + ] + }, + "properties": { + "id": "meter-11098", + "maker": "Maker D", + "model": "Model 11098", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.60601747224977, + 25.485922332292287 + ] + }, + "properties": { + "id": "meter-11099", + "maker": "Maker C", + "model": "Model 11099", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.146421047126864, + 26.182128336540085 + ] + }, + "properties": { + "id": "meter-11100", + "maker": "Maker A", + "model": "Model 11100", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.17124816401834, + 24.0359987855649 + ] + }, + "properties": { + "id": "meter-11101", + "maker": "Maker I", + "model": "Model 11101", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.10916464642699, + 30.948252434897128 + ] + }, + "properties": { + "id": "meter-11102", + "maker": "Maker I", + "model": "Model 11102", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.003606202665516, + 26.120568625437134 + ] + }, + "properties": { + "id": "meter-11103", + "maker": "Maker J", + "model": "Model 11103", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72910075554669, + 18.30441533034863 + ] + }, + "properties": { + "id": "meter-11104", + "maker": "Maker H", + "model": "Model 11104", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81312537506366, + 21.389504870381 + ] + }, + "properties": { + "id": "meter-11105", + "maker": "Maker G", + "model": "Model 11105", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.064122644345765, + 26.43794983609366 + ] + }, + "properties": { + "id": "meter-11106", + "maker": "Maker B", + "model": "Model 11106", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07887633459352, + 26.223994519166542 + ] + }, + "properties": { + "id": "meter-11107", + "maker": "Maker B", + "model": "Model 11107", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.32251497097769, + 29.896713830321833 + ] + }, + "properties": { + "id": "meter-11108", + "maker": "Maker E", + "model": "Model 11108", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.57060600102799, + 21.472351866916306 + ] + }, + "properties": { + "id": "meter-11109", + "maker": "Maker B", + "model": "Model 11109", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.792646688642215, + 18.080857617879747 + ] + }, + "properties": { + "id": "meter-11110", + "maker": "Maker G", + "model": "Model 11110", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.1972354230132, + 30.981696777277165 + ] + }, + "properties": { + "id": "meter-11111", + "maker": "Maker B", + "model": "Model 11111", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92363842469387, + 26.27323400671476 + ] + }, + "properties": { + "id": "meter-11112", + "maker": "Maker J", + "model": "Model 11112", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11207187085579, + 17.543086412089806 + ] + }, + "properties": { + "id": "meter-11113", + "maker": "Maker C", + "model": "Model 11113", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99395708895207, + 26.222739995484286 + ] + }, + "properties": { + "id": "meter-11114", + "maker": "Maker D", + "model": "Model 11114", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.46712678647891, + 24.568969446127074 + ] + }, + "properties": { + "id": "meter-11115", + "maker": "Maker I", + "model": "Model 11115", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.102662202433756, + 17.468830930420573 + ] + }, + "properties": { + "id": "meter-11116", + "maker": "Maker A", + "model": "Model 11116", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08499832193271, + 26.42242647904662 + ] + }, + "properties": { + "id": "meter-11117", + "maker": "Maker E", + "model": "Model 11117", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.79901783104709, + 26.56091609203274 + ] + }, + "properties": { + "id": "meter-11118", + "maker": "Maker J", + "model": "Model 11118", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.63588611883694, + 25.394830816699034 + ] + }, + "properties": { + "id": "meter-11119", + "maker": "Maker A", + "model": "Model 11119", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19849392003717, + 26.305222718121716 + ] + }, + "properties": { + "id": "meter-11120", + "maker": "Maker J", + "model": "Model 11120", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95010594011281, + 26.318504548766523 + ] + }, + "properties": { + "id": "meter-11121", + "maker": "Maker D", + "model": "Model 11121", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.99653409522875, + 30.922551647132202 + ] + }, + "properties": { + "id": "meter-11122", + "maker": "Maker A", + "model": "Model 11122", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.73824077552364, + 25.42033598334764 + ] + }, + "properties": { + "id": "meter-11123", + "maker": "Maker H", + "model": "Model 11123", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55108278863289, + 27.465888974571282 + ] + }, + "properties": { + "id": "meter-11124", + "maker": "Maker I", + "model": "Model 11124", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.84254557754841, + 26.445248466252384 + ] + }, + "properties": { + "id": "meter-11125", + "maker": "Maker G", + "model": "Model 11125", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.951277710728725, + 24.754880928702836 + ] + }, + "properties": { + "id": "meter-11126", + "maker": "Maker B", + "model": "Model 11126", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.87399090024344, + 21.616230144476834 + ] + }, + "properties": { + "id": "meter-11127", + "maker": "Maker B", + "model": "Model 11127", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63483483832992, + 21.212811668195684 + ] + }, + "properties": { + "id": "meter-11128", + "maker": "Maker D", + "model": "Model 11128", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.793330884014004, + 24.921345644841416 + ] + }, + "properties": { + "id": "meter-11129", + "maker": "Maker F", + "model": "Model 11129", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.979071316093105, + 26.382076028330214 + ] + }, + "properties": { + "id": "meter-11130", + "maker": "Maker A", + "model": "Model 11130", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.22207025665065, + 29.89851370004383 + ] + }, + "properties": { + "id": "meter-11131", + "maker": "Maker I", + "model": "Model 11131", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14179343171681, + 17.674600597819218 + ] + }, + "properties": { + "id": "meter-11132", + "maker": "Maker B", + "model": "Model 11132", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.82673220689104, + 18.38150566501489 + ] + }, + "properties": { + "id": "meter-11133", + "maker": "Maker A", + "model": "Model 11133", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.841083280523826, + 21.392173870007216 + ] + }, + "properties": { + "id": "meter-11134", + "maker": "Maker I", + "model": "Model 11134", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65247420104537, + 24.988853003767503 + ] + }, + "properties": { + "id": "meter-11135", + "maker": "Maker E", + "model": "Model 11135", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24964639152299, + 21.508232481204022 + ] + }, + "properties": { + "id": "meter-11136", + "maker": "Maker E", + "model": "Model 11136", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99551488977865, + 26.235479401605872 + ] + }, + "properties": { + "id": "meter-11137", + "maker": "Maker J", + "model": "Model 11137", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.612587612240446, + 19.784268128439635 + ] + }, + "properties": { + "id": "meter-11138", + "maker": "Maker G", + "model": "Model 11138", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.569643362461726, + 24.41059625588714 + ] + }, + "properties": { + "id": "meter-11139", + "maker": "Maker D", + "model": "Model 11139", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69410354564714, + 18.550994381065404 + ] + }, + "properties": { + "id": "meter-11140", + "maker": "Maker E", + "model": "Model 11140", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55599501848311, + 27.412478077294622 + ] + }, + "properties": { + "id": "meter-11141", + "maker": "Maker D", + "model": "Model 11141", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.16563999260446, + 29.95812212574265 + ] + }, + "properties": { + "id": "meter-11142", + "maker": "Maker C", + "model": "Model 11142", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.0521243087725, + 17.54927208628551 + ] + }, + "properties": { + "id": "meter-11143", + "maker": "Maker D", + "model": "Model 11143", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.104544606786284, + 17.404398469964065 + ] + }, + "properties": { + "id": "meter-11144", + "maker": "Maker I", + "model": "Model 11144", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.85590869195702, + 30.993965696814918 + ] + }, + "properties": { + "id": "meter-11145", + "maker": "Maker E", + "model": "Model 11145", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04552096582436, + 17.56110671251746 + ] + }, + "properties": { + "id": "meter-11146", + "maker": "Maker E", + "model": "Model 11146", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.38714580848661, + 21.545861557891186 + ] + }, + "properties": { + "id": "meter-11147", + "maker": "Maker F", + "model": "Model 11147", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49596690559145, + 18.23649656349586 + ] + }, + "properties": { + "id": "meter-11148", + "maker": "Maker E", + "model": "Model 11148", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.87198818838881, + 26.175967205882817 + ] + }, + "properties": { + "id": "meter-11149", + "maker": "Maker F", + "model": "Model 11149", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23688425916404, + 21.209129733247362 + ] + }, + "properties": { + "id": "meter-11150", + "maker": "Maker E", + "model": "Model 11150", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0730626304916, + 24.1043940022749 + ] + }, + "properties": { + "id": "meter-11151", + "maker": "Maker D", + "model": "Model 11151", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.08100520679442, + 21.73518077801157 + ] + }, + "properties": { + "id": "meter-11152", + "maker": "Maker A", + "model": "Model 11152", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.077944140950564, + 26.43160252471592 + ] + }, + "properties": { + "id": "meter-11153", + "maker": "Maker J", + "model": "Model 11153", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02451575073953, + 26.21188777665047 + ] + }, + "properties": { + "id": "meter-11154", + "maker": "Maker H", + "model": "Model 11154", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.978798236240365, + 26.295002172352902 + ] + }, + "properties": { + "id": "meter-11155", + "maker": "Maker A", + "model": "Model 11155", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.15328522457102, + 21.52802474378174 + ] + }, + "properties": { + "id": "meter-11156", + "maker": "Maker G", + "model": "Model 11156", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.65366029261324, + 24.520780660806775 + ] + }, + "properties": { + "id": "meter-11157", + "maker": "Maker B", + "model": "Model 11157", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.47274792860981, + 28.67141197400612 + ] + }, + "properties": { + "id": "meter-11158", + "maker": "Maker A", + "model": "Model 11158", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23671567363541, + 30.091962735957495 + ] + }, + "properties": { + "id": "meter-11159", + "maker": "Maker H", + "model": "Model 11159", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.614301491386776, + 24.660731431396513 + ] + }, + "properties": { + "id": "meter-11160", + "maker": "Maker E", + "model": "Model 11160", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48823398621489, + 27.513905705051958 + ] + }, + "properties": { + "id": "meter-11161", + "maker": "Maker J", + "model": "Model 11161", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03545485787518, + 26.473259609764675 + ] + }, + "properties": { + "id": "meter-11162", + "maker": "Maker B", + "model": "Model 11162", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94531059062403, + 26.183575790522404 + ] + }, + "properties": { + "id": "meter-11163", + "maker": "Maker J", + "model": "Model 11163", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04714570080641, + 17.474878820666873 + ] + }, + "properties": { + "id": "meter-11164", + "maker": "Maker I", + "model": "Model 11164", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.12056926272877, + 30.90776546727192 + ] + }, + "properties": { + "id": "meter-11165", + "maker": "Maker F", + "model": "Model 11165", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.56294843946771, + 24.937095994309118 + ] + }, + "properties": { + "id": "meter-11166", + "maker": "Maker J", + "model": "Model 11166", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68168617738536, + 24.737156666923152 + ] + }, + "properties": { + "id": "meter-11167", + "maker": "Maker I", + "model": "Model 11167", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.638289300626546, + 24.62476563712851 + ] + }, + "properties": { + "id": "meter-11168", + "maker": "Maker C", + "model": "Model 11168", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.132635238952716, + 17.471409472204925 + ] + }, + "properties": { + "id": "meter-11169", + "maker": "Maker B", + "model": "Model 11169", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.43054396220929, + 28.633865449557916 + ] + }, + "properties": { + "id": "meter-11170", + "maker": "Maker J", + "model": "Model 11170", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58294305713795, + 25.357442910447798 + ] + }, + "properties": { + "id": "meter-11171", + "maker": "Maker I", + "model": "Model 11171", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.681121348677834, + 27.32057885262934 + ] + }, + "properties": { + "id": "meter-11172", + "maker": "Maker B", + "model": "Model 11172", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.61038920034415, + 27.640625516626883 + ] + }, + "properties": { + "id": "meter-11173", + "maker": "Maker C", + "model": "Model 11173", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.17582564445322, + 29.958411860206624 + ] + }, + "properties": { + "id": "meter-11174", + "maker": "Maker B", + "model": "Model 11174", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42954949588203, + 20.00169689240346 + ] + }, + "properties": { + "id": "meter-11175", + "maker": "Maker D", + "model": "Model 11175", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.76067113772797, + 24.335884080381284 + ] + }, + "properties": { + "id": "meter-11176", + "maker": "Maker H", + "model": "Model 11176", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.87793440141951, + 17.44501424545486 + ] + }, + "properties": { + "id": "meter-11177", + "maker": "Maker D", + "model": "Model 11177", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.96322251486182, + 30.94790673389484 + ] + }, + "properties": { + "id": "meter-11178", + "maker": "Maker H", + "model": "Model 11178", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.052232526275276, + 26.42489404278717 + ] + }, + "properties": { + "id": "meter-11179", + "maker": "Maker J", + "model": "Model 11179", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.53216847220381, + 24.643576748186547 + ] + }, + "properties": { + "id": "meter-11180", + "maker": "Maker E", + "model": "Model 11180", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.93528777509618, + 21.437767238840042 + ] + }, + "properties": { + "id": "meter-11181", + "maker": "Maker G", + "model": "Model 11181", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.877952596067885, + 26.55435123380001 + ] + }, + "properties": { + "id": "meter-11182", + "maker": "Maker J", + "model": "Model 11182", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.5625679666668, + 24.575829031302174 + ] + }, + "properties": { + "id": "meter-11183", + "maker": "Maker H", + "model": "Model 11183", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14122161781636, + 26.294555524169716 + ] + }, + "properties": { + "id": "meter-11184", + "maker": "Maker D", + "model": "Model 11184", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.600332133030015, + 25.531520412521942 + ] + }, + "properties": { + "id": "meter-11185", + "maker": "Maker E", + "model": "Model 11185", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.88588334338798, + 26.65046085533609 + ] + }, + "properties": { + "id": "meter-11186", + "maker": "Maker E", + "model": "Model 11186", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.70373806631568, + 24.63239657353006 + ] + }, + "properties": { + "id": "meter-11187", + "maker": "Maker G", + "model": "Model 11187", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.54969939820834, + 28.173218887187563 + ] + }, + "properties": { + "id": "meter-11188", + "maker": "Maker A", + "model": "Model 11188", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.979279566213314, + 26.266138644694905 + ] + }, + "properties": { + "id": "meter-11189", + "maker": "Maker C", + "model": "Model 11189", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12861710886452, + 26.285985754517565 + ] + }, + "properties": { + "id": "meter-11190", + "maker": "Maker D", + "model": "Model 11190", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.76880950238584, + 25.34866071482884 + ] + }, + "properties": { + "id": "meter-11191", + "maker": "Maker C", + "model": "Model 11191", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.688532083389404, + 28.55757784586318 + ] + }, + "properties": { + "id": "meter-11192", + "maker": "Maker A", + "model": "Model 11192", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.120290378697696, + 17.468527094280702 + ] + }, + "properties": { + "id": "meter-11193", + "maker": "Maker D", + "model": "Model 11193", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.75142789056976, + 27.473552495677453 + ] + }, + "properties": { + "id": "meter-11194", + "maker": "Maker G", + "model": "Model 11194", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18817150205339, + 26.212199981105346 + ] + }, + "properties": { + "id": "meter-11195", + "maker": "Maker H", + "model": "Model 11195", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.92503237964213, + 18.471736998516377 + ] + }, + "properties": { + "id": "meter-11196", + "maker": "Maker G", + "model": "Model 11196", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.39632193920709, + 25.535305858039596 + ] + }, + "properties": { + "id": "meter-11197", + "maker": "Maker J", + "model": "Model 11197", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.58322823968703, + 18.262692610098576 + ] + }, + "properties": { + "id": "meter-11198", + "maker": "Maker G", + "model": "Model 11198", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.82472566004616, + 18.062908554532576 + ] + }, + "properties": { + "id": "meter-11199", + "maker": "Maker E", + "model": "Model 11199", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.99399401153639, + 30.95659161081852 + ] + }, + "properties": { + "id": "meter-11200", + "maker": "Maker D", + "model": "Model 11200", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.452726322515616, + 24.73791443510993 + ] + }, + "properties": { + "id": "meter-11201", + "maker": "Maker F", + "model": "Model 11201", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.926451069659635, + 31.05453092752381 + ] + }, + "properties": { + "id": "meter-11202", + "maker": "Maker B", + "model": "Model 11202", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.810546501855825, + 18.501007813926282 + ] + }, + "properties": { + "id": "meter-11203", + "maker": "Maker E", + "model": "Model 11203", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.70511263898925, + 25.458923305361285 + ] + }, + "properties": { + "id": "meter-11204", + "maker": "Maker F", + "model": "Model 11204", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.64760274460626, + 25.562800049254612 + ] + }, + "properties": { + "id": "meter-11205", + "maker": "Maker I", + "model": "Model 11205", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.2252897255336, + 30.083061549900123 + ] + }, + "properties": { + "id": "meter-11206", + "maker": "Maker B", + "model": "Model 11206", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.446131995641565, + 21.687006189725 + ] + }, + "properties": { + "id": "meter-11207", + "maker": "Maker G", + "model": "Model 11207", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.09365219398427, + 29.878865867399693 + ] + }, + "properties": { + "id": "meter-11208", + "maker": "Maker A", + "model": "Model 11208", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.149182487089305, + 17.532877577800956 + ] + }, + "properties": { + "id": "meter-11209", + "maker": "Maker H", + "model": "Model 11209", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.37919683557537, + 18.16401458240215 + ] + }, + "properties": { + "id": "meter-11210", + "maker": "Maker F", + "model": "Model 11210", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.27055299528893, + 17.560575958309652 + ] + }, + "properties": { + "id": "meter-11211", + "maker": "Maker G", + "model": "Model 11211", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66429622690859, + 18.334268166146945 + ] + }, + "properties": { + "id": "meter-11212", + "maker": "Maker E", + "model": "Model 11212", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.233549993989, + 21.626953175476586 + ] + }, + "properties": { + "id": "meter-11213", + "maker": "Maker E", + "model": "Model 11213", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.97699341424072, + 31.03794176279491 + ] + }, + "properties": { + "id": "meter-11214", + "maker": "Maker H", + "model": "Model 11214", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.27911905643516, + 17.713493000674994 + ] + }, + "properties": { + "id": "meter-11215", + "maker": "Maker H", + "model": "Model 11215", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60508193519525, + 24.478763448961207 + ] + }, + "properties": { + "id": "meter-11216", + "maker": "Maker G", + "model": "Model 11216", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.583113852360476, + 24.812444425307596 + ] + }, + "properties": { + "id": "meter-11217", + "maker": "Maker B", + "model": "Model 11217", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47586207651647, + 20.12147831532751 + ] + }, + "properties": { + "id": "meter-11218", + "maker": "Maker C", + "model": "Model 11218", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.226004378033004, + 29.835623184307178 + ] + }, + "properties": { + "id": "meter-11219", + "maker": "Maker G", + "model": "Model 11219", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.458283449322074, + 18.200758974362394 + ] + }, + "properties": { + "id": "meter-11220", + "maker": "Maker I", + "model": "Model 11220", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07302786965523, + 26.304328112171408 + ] + }, + "properties": { + "id": "meter-11221", + "maker": "Maker A", + "model": "Model 11221", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.608741173181876, + 24.436464447581095 + ] + }, + "properties": { + "id": "meter-11222", + "maker": "Maker I", + "model": "Model 11222", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.724731710616965, + 25.519438173557752 + ] + }, + "properties": { + "id": "meter-11223", + "maker": "Maker C", + "model": "Model 11223", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.83611550933057, + 26.39026412429496 + ] + }, + "properties": { + "id": "meter-11224", + "maker": "Maker E", + "model": "Model 11224", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.502267461740416, + 18.28348953504512 + ] + }, + "properties": { + "id": "meter-11225", + "maker": "Maker G", + "model": "Model 11225", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77025714994868, + 24.643856701150273 + ] + }, + "properties": { + "id": "meter-11226", + "maker": "Maker H", + "model": "Model 11226", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.54747141045577, + 27.53493555491528 + ] + }, + "properties": { + "id": "meter-11227", + "maker": "Maker D", + "model": "Model 11227", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.563695069744476, + 25.138723692839115 + ] + }, + "properties": { + "id": "meter-11228", + "maker": "Maker A", + "model": "Model 11228", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45226332028903, + 20.013743392022516 + ] + }, + "properties": { + "id": "meter-11229", + "maker": "Maker C", + "model": "Model 11229", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96345516468351, + 17.663165667611736 + ] + }, + "properties": { + "id": "meter-11230", + "maker": "Maker C", + "model": "Model 11230", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.098143672580136, + 26.251508343078513 + ] + }, + "properties": { + "id": "meter-11231", + "maker": "Maker E", + "model": "Model 11231", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.456084566354335, + 18.203034399452182 + ] + }, + "properties": { + "id": "meter-11232", + "maker": "Maker E", + "model": "Model 11232", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.191001989688566, + 26.207421404079426 + ] + }, + "properties": { + "id": "meter-11233", + "maker": "Maker I", + "model": "Model 11233", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.94667729431631, + 21.491168689805654 + ] + }, + "properties": { + "id": "meter-11234", + "maker": "Maker I", + "model": "Model 11234", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.46648017223396, + 18.231147361804595 + ] + }, + "properties": { + "id": "meter-11235", + "maker": "Maker D", + "model": "Model 11235", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.1893567858219, + 29.897708065788226 + ] + }, + "properties": { + "id": "meter-11236", + "maker": "Maker B", + "model": "Model 11236", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.479810784021815, + 20.041801118441168 + ] + }, + "properties": { + "id": "meter-11237", + "maker": "Maker G", + "model": "Model 11237", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03885057146242, + 30.9667514535349 + ] + }, + "properties": { + "id": "meter-11238", + "maker": "Maker J", + "model": "Model 11238", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.3725978294481, + 20.277861587407408 + ] + }, + "properties": { + "id": "meter-11239", + "maker": "Maker H", + "model": "Model 11239", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.00619426576212, + 24.172139585672145 + ] + }, + "properties": { + "id": "meter-11240", + "maker": "Maker C", + "model": "Model 11240", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04222676853404, + 17.60657986400915 + ] + }, + "properties": { + "id": "meter-11241", + "maker": "Maker C", + "model": "Model 11241", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.18012030399596, + 30.981118773000336 + ] + }, + "properties": { + "id": "meter-11242", + "maker": "Maker G", + "model": "Model 11242", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01002926591391, + 17.59633711343643 + ] + }, + "properties": { + "id": "meter-11243", + "maker": "Maker I", + "model": "Model 11243", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02564756966969, + 26.33009016377132 + ] + }, + "properties": { + "id": "meter-11244", + "maker": "Maker I", + "model": "Model 11244", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71271033113386, + 18.278550968027698 + ] + }, + "properties": { + "id": "meter-11245", + "maker": "Maker H", + "model": "Model 11245", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01524424032223, + 26.493305881158804 + ] + }, + "properties": { + "id": "meter-11246", + "maker": "Maker G", + "model": "Model 11246", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18357879007965, + 26.26859327306917 + ] + }, + "properties": { + "id": "meter-11247", + "maker": "Maker A", + "model": "Model 11247", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.56748255060212, + 24.569473327977065 + ] + }, + "properties": { + "id": "meter-11248", + "maker": "Maker J", + "model": "Model 11248", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.02478210799524, + 24.105795833171886 + ] + }, + "properties": { + "id": "meter-11249", + "maker": "Maker G", + "model": "Model 11249", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.9228199546008, + 21.44748912163915 + ] + }, + "properties": { + "id": "meter-11250", + "maker": "Maker C", + "model": "Model 11250", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.030409075798055, + 26.37713605665943 + ] + }, + "properties": { + "id": "meter-11251", + "maker": "Maker B", + "model": "Model 11251", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2417622417169, + 21.470717011943027 + ] + }, + "properties": { + "id": "meter-11252", + "maker": "Maker G", + "model": "Model 11252", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.49982183646637, + 28.50933366728585 + ] + }, + "properties": { + "id": "meter-11253", + "maker": "Maker A", + "model": "Model 11253", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0137890753682, + 26.39052237804232 + ] + }, + "properties": { + "id": "meter-11254", + "maker": "Maker H", + "model": "Model 11254", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.640685844811, + 25.217571429272464 + ] + }, + "properties": { + "id": "meter-11255", + "maker": "Maker F", + "model": "Model 11255", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.74517505484526, + 28.63143609113675 + ] + }, + "properties": { + "id": "meter-11256", + "maker": "Maker E", + "model": "Model 11256", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.5237126068938, + 25.278331980765614 + ] + }, + "properties": { + "id": "meter-11257", + "maker": "Maker I", + "model": "Model 11257", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.561258028840534, + 20.06652367066689 + ] + }, + "properties": { + "id": "meter-11258", + "maker": "Maker B", + "model": "Model 11258", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.47799977059498, + 18.325276601262658 + ] + }, + "properties": { + "id": "meter-11259", + "maker": "Maker C", + "model": "Model 11259", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.46968464628735, + 28.546693101144744 + ] + }, + "properties": { + "id": "meter-11260", + "maker": "Maker E", + "model": "Model 11260", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.565818989119045, + 25.13997256845777 + ] + }, + "properties": { + "id": "meter-11261", + "maker": "Maker E", + "model": "Model 11261", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.56227771618758, + 28.39932668038426 + ] + }, + "properties": { + "id": "meter-11262", + "maker": "Maker I", + "model": "Model 11262", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.51970166524243, + 24.476099155052975 + ] + }, + "properties": { + "id": "meter-11263", + "maker": "Maker F", + "model": "Model 11263", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.186500577906465, + 21.506044823240202 + ] + }, + "properties": { + "id": "meter-11264", + "maker": "Maker A", + "model": "Model 11264", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.13357450470954, + 30.82954014453005 + ] + }, + "properties": { + "id": "meter-11265", + "maker": "Maker D", + "model": "Model 11265", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.39853314852424, + 18.162759475004037 + ] + }, + "properties": { + "id": "meter-11266", + "maker": "Maker J", + "model": "Model 11266", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14285401802876, + 26.420726786381895 + ] + }, + "properties": { + "id": "meter-11267", + "maker": "Maker C", + "model": "Model 11267", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.77921914792242, + 26.505667110579637 + ] + }, + "properties": { + "id": "meter-11268", + "maker": "Maker F", + "model": "Model 11268", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12986542111833, + 17.503209249903126 + ] + }, + "properties": { + "id": "meter-11269", + "maker": "Maker B", + "model": "Model 11269", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.769894333421874, + 26.47381862499362 + ] + }, + "properties": { + "id": "meter-11270", + "maker": "Maker G", + "model": "Model 11270", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.536536140231675, + 24.69200004761939 + ] + }, + "properties": { + "id": "meter-11271", + "maker": "Maker C", + "model": "Model 11271", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.576179498348665, + 25.34552284423382 + ] + }, + "properties": { + "id": "meter-11272", + "maker": "Maker C", + "model": "Model 11272", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93033280880193, + 26.46330311978015 + ] + }, + "properties": { + "id": "meter-11273", + "maker": "Maker F", + "model": "Model 11273", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.2019277977481, + 26.273489316131535 + ] + }, + "properties": { + "id": "meter-11274", + "maker": "Maker J", + "model": "Model 11274", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.45258927795054, + 24.77124140940557 + ] + }, + "properties": { + "id": "meter-11275", + "maker": "Maker F", + "model": "Model 11275", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86751435988766, + 21.66426605650042 + ] + }, + "properties": { + "id": "meter-11276", + "maker": "Maker J", + "model": "Model 11276", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.433916876417335, + 20.043077290643648 + ] + }, + "properties": { + "id": "meter-11277", + "maker": "Maker D", + "model": "Model 11277", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.28327103537396, + 19.87699790010729 + ] + }, + "properties": { + "id": "meter-11278", + "maker": "Maker I", + "model": "Model 11278", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.849969457509864, + 17.42685647670459 + ] + }, + "properties": { + "id": "meter-11279", + "maker": "Maker E", + "model": "Model 11279", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.63306556543283, + 24.508918483188825 + ] + }, + "properties": { + "id": "meter-11280", + "maker": "Maker D", + "model": "Model 11280", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.329601202154514, + 21.75839531730332 + ] + }, + "properties": { + "id": "meter-11281", + "maker": "Maker C", + "model": "Model 11281", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.29366877655079, + 18.406544316198516 + ] + }, + "properties": { + "id": "meter-11282", + "maker": "Maker J", + "model": "Model 11282", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14513935449832, + 26.115080115107627 + ] + }, + "properties": { + "id": "meter-11283", + "maker": "Maker E", + "model": "Model 11283", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.081437186617535, + 21.262913840680973 + ] + }, + "properties": { + "id": "meter-11284", + "maker": "Maker I", + "model": "Model 11284", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.531267592644475, + 24.972605849601514 + ] + }, + "properties": { + "id": "meter-11285", + "maker": "Maker D", + "model": "Model 11285", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13498314814617, + 17.65327755715402 + ] + }, + "properties": { + "id": "meter-11286", + "maker": "Maker G", + "model": "Model 11286", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.36881841916592, + 30.192216511101517 + ] + }, + "properties": { + "id": "meter-11287", + "maker": "Maker D", + "model": "Model 11287", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11741322861708, + 17.537936264730742 + ] + }, + "properties": { + "id": "meter-11288", + "maker": "Maker I", + "model": "Model 11288", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1285138679203, + 17.58435417229636 + ] + }, + "properties": { + "id": "meter-11289", + "maker": "Maker G", + "model": "Model 11289", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00178261320839, + 26.43280131144428 + ] + }, + "properties": { + "id": "meter-11290", + "maker": "Maker A", + "model": "Model 11290", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.11260380142486, + 30.865915408330224 + ] + }, + "properties": { + "id": "meter-11291", + "maker": "Maker J", + "model": "Model 11291", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2509357246067, + 21.46704922581299 + ] + }, + "properties": { + "id": "meter-11292", + "maker": "Maker H", + "model": "Model 11292", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08596539154868, + 26.42795793752119 + ] + }, + "properties": { + "id": "meter-11293", + "maker": "Maker C", + "model": "Model 11293", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.039641552331226, + 30.97493666789462 + ] + }, + "properties": { + "id": "meter-11294", + "maker": "Maker A", + "model": "Model 11294", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.975042135334284, + 26.417360499964396 + ] + }, + "properties": { + "id": "meter-11295", + "maker": "Maker C", + "model": "Model 11295", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96934970098755, + 26.409265871525708 + ] + }, + "properties": { + "id": "meter-11296", + "maker": "Maker H", + "model": "Model 11296", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01462667489203, + 26.21798569509374 + ] + }, + "properties": { + "id": "meter-11297", + "maker": "Maker G", + "model": "Model 11297", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.04720966309615, + 31.059113114365285 + ] + }, + "properties": { + "id": "meter-11298", + "maker": "Maker I", + "model": "Model 11298", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58427676062518, + 25.34900989348063 + ] + }, + "properties": { + "id": "meter-11299", + "maker": "Maker A", + "model": "Model 11299", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20903251523755, + 26.25038340215037 + ] + }, + "properties": { + "id": "meter-11300", + "maker": "Maker B", + "model": "Model 11300", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.11573096967212, + 29.8863372883618 + ] + }, + "properties": { + "id": "meter-11301", + "maker": "Maker I", + "model": "Model 11301", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.708631417194574, + 18.415962147796897 + ] + }, + "properties": { + "id": "meter-11302", + "maker": "Maker I", + "model": "Model 11302", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05807303637529, + 24.077901004743982 + ] + }, + "properties": { + "id": "meter-11303", + "maker": "Maker A", + "model": "Model 11303", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.56144355790956, + 24.53628513373999 + ] + }, + "properties": { + "id": "meter-11304", + "maker": "Maker D", + "model": "Model 11304", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.81888553169874, + 18.38788419705239 + ] + }, + "properties": { + "id": "meter-11305", + "maker": "Maker E", + "model": "Model 11305", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.843651394040144, + 30.983353273202884 + ] + }, + "properties": { + "id": "meter-11306", + "maker": "Maker F", + "model": "Model 11306", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.155864805756885, + 26.409282557311496 + ] + }, + "properties": { + "id": "meter-11307", + "maker": "Maker G", + "model": "Model 11307", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08428951649742, + 26.335352649729725 + ] + }, + "properties": { + "id": "meter-11308", + "maker": "Maker I", + "model": "Model 11308", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.57069491919161, + 20.26155687190801 + ] + }, + "properties": { + "id": "meter-11309", + "maker": "Maker A", + "model": "Model 11309", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.80892471413709, + 24.446573086999194 + ] + }, + "properties": { + "id": "meter-11310", + "maker": "Maker B", + "model": "Model 11310", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.96046502626764, + 18.12205223230222 + ] + }, + "properties": { + "id": "meter-11311", + "maker": "Maker C", + "model": "Model 11311", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.78229847489467, + 24.592779549280838 + ] + }, + "properties": { + "id": "meter-11312", + "maker": "Maker J", + "model": "Model 11312", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05044703881016, + 26.440955995526476 + ] + }, + "properties": { + "id": "meter-11313", + "maker": "Maker C", + "model": "Model 11313", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00316713283105, + 26.610390832718068 + ] + }, + "properties": { + "id": "meter-11314", + "maker": "Maker G", + "model": "Model 11314", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73482105801208, + 18.484720390432635 + ] + }, + "properties": { + "id": "meter-11315", + "maker": "Maker H", + "model": "Model 11315", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.65337785958488, + 25.5503541338768 + ] + }, + "properties": { + "id": "meter-11316", + "maker": "Maker G", + "model": "Model 11316", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.643209326285096, + 25.410520362337316 + ] + }, + "properties": { + "id": "meter-11317", + "maker": "Maker G", + "model": "Model 11317", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.57178489118007, + 24.605856949229032 + ] + }, + "properties": { + "id": "meter-11318", + "maker": "Maker I", + "model": "Model 11318", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.60509538883824, + 28.419837778192633 + ] + }, + "properties": { + "id": "meter-11319", + "maker": "Maker B", + "model": "Model 11319", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69705026417843, + 27.459948816936016 + ] + }, + "properties": { + "id": "meter-11320", + "maker": "Maker D", + "model": "Model 11320", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.880789279505365, + 26.562511743282407 + ] + }, + "properties": { + "id": "meter-11321", + "maker": "Maker A", + "model": "Model 11321", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.22598662986728, + 30.255384910882345 + ] + }, + "properties": { + "id": "meter-11322", + "maker": "Maker J", + "model": "Model 11322", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09715134015187, + 26.494786779716012 + ] + }, + "properties": { + "id": "meter-11323", + "maker": "Maker A", + "model": "Model 11323", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.655660589373404, + 24.36893439075255 + ] + }, + "properties": { + "id": "meter-11324", + "maker": "Maker C", + "model": "Model 11324", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65157039024719, + 24.483390643706663 + ] + }, + "properties": { + "id": "meter-11325", + "maker": "Maker A", + "model": "Model 11325", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03735645749121, + 26.352941948913163 + ] + }, + "properties": { + "id": "meter-11326", + "maker": "Maker J", + "model": "Model 11326", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.51135365983546, + 20.041817313922547 + ] + }, + "properties": { + "id": "meter-11327", + "maker": "Maker I", + "model": "Model 11327", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.89690625317073, + 31.06311495198853 + ] + }, + "properties": { + "id": "meter-11328", + "maker": "Maker I", + "model": "Model 11328", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.04281850125758, + 31.017557139834587 + ] + }, + "properties": { + "id": "meter-11329", + "maker": "Maker F", + "model": "Model 11329", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.91569943995488, + 24.803967964686425 + ] + }, + "properties": { + "id": "meter-11330", + "maker": "Maker H", + "model": "Model 11330", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.0476731371272, + 30.99065461244956 + ] + }, + "properties": { + "id": "meter-11331", + "maker": "Maker G", + "model": "Model 11331", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.8689249836327, + 24.717335899630044 + ] + }, + "properties": { + "id": "meter-11332", + "maker": "Maker D", + "model": "Model 11332", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.54849142243862, + 20.037771102482832 + ] + }, + "properties": { + "id": "meter-11333", + "maker": "Maker G", + "model": "Model 11333", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68999175241172, + 24.712218664373292 + ] + }, + "properties": { + "id": "meter-11334", + "maker": "Maker E", + "model": "Model 11334", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.421767142543366, + 18.19513752660166 + ] + }, + "properties": { + "id": "meter-11335", + "maker": "Maker J", + "model": "Model 11335", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.19474942790772, + 26.422151183619448 + ] + }, + "properties": { + "id": "meter-11336", + "maker": "Maker D", + "model": "Model 11336", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.44003297474245, + 19.907495553781363 + ] + }, + "properties": { + "id": "meter-11337", + "maker": "Maker I", + "model": "Model 11337", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.449141174282666, + 25.333619273976428 + ] + }, + "properties": { + "id": "meter-11338", + "maker": "Maker E", + "model": "Model 11338", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.13156385443813, + 21.362877415672887 + ] + }, + "properties": { + "id": "meter-11339", + "maker": "Maker J", + "model": "Model 11339", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.89080696269017, + 26.26390350154366 + ] + }, + "properties": { + "id": "meter-11340", + "maker": "Maker D", + "model": "Model 11340", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.81945454033302, + 26.42703176601619 + ] + }, + "properties": { + "id": "meter-11341", + "maker": "Maker G", + "model": "Model 11341", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00303665401412, + 26.20891117016548 + ] + }, + "properties": { + "id": "meter-11342", + "maker": "Maker H", + "model": "Model 11342", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50713816507866, + 18.21791710379179 + ] + }, + "properties": { + "id": "meter-11343", + "maker": "Maker J", + "model": "Model 11343", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.473135930523895, + 18.44900836498146 + ] + }, + "properties": { + "id": "meter-11344", + "maker": "Maker I", + "model": "Model 11344", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.261089443689784, + 19.888795540665015 + ] + }, + "properties": { + "id": "meter-11345", + "maker": "Maker I", + "model": "Model 11345", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.234319460649246, + 21.367131380265196 + ] + }, + "properties": { + "id": "meter-11346", + "maker": "Maker E", + "model": "Model 11346", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03836948401219, + 26.455643446065753 + ] + }, + "properties": { + "id": "meter-11347", + "maker": "Maker E", + "model": "Model 11347", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.239898872673955, + 21.425161839996647 + ] + }, + "properties": { + "id": "meter-11348", + "maker": "Maker I", + "model": "Model 11348", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.8005082753554, + 26.413517317891156 + ] + }, + "properties": { + "id": "meter-11349", + "maker": "Maker B", + "model": "Model 11349", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.74301316385543, + 26.382568635494057 + ] + }, + "properties": { + "id": "meter-11350", + "maker": "Maker D", + "model": "Model 11350", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97356664525933, + 26.360562354308296 + ] + }, + "properties": { + "id": "meter-11351", + "maker": "Maker H", + "model": "Model 11351", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07881801415265, + 26.225203476313467 + ] + }, + "properties": { + "id": "meter-11352", + "maker": "Maker G", + "model": "Model 11352", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98293678870054, + 26.10254809939168 + ] + }, + "properties": { + "id": "meter-11353", + "maker": "Maker G", + "model": "Model 11353", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.83758647568239, + 21.59299674964182 + ] + }, + "properties": { + "id": "meter-11354", + "maker": "Maker D", + "model": "Model 11354", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.69337355584759, + 28.434162648457605 + ] + }, + "properties": { + "id": "meter-11355", + "maker": "Maker E", + "model": "Model 11355", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.477582905015396, + 24.665624636048378 + ] + }, + "properties": { + "id": "meter-11356", + "maker": "Maker J", + "model": "Model 11356", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.649086028334764, + 28.594564072227413 + ] + }, + "properties": { + "id": "meter-11357", + "maker": "Maker A", + "model": "Model 11357", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.03735441656338, + 29.995844834837488 + ] + }, + "properties": { + "id": "meter-11358", + "maker": "Maker C", + "model": "Model 11358", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.11278783365322, + 31.027465813587092 + ] + }, + "properties": { + "id": "meter-11359", + "maker": "Maker H", + "model": "Model 11359", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.12343110467351, + 30.115946958027845 + ] + }, + "properties": { + "id": "meter-11360", + "maker": "Maker F", + "model": "Model 11360", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.88819360006375, + 24.798328572752823 + ] + }, + "properties": { + "id": "meter-11361", + "maker": "Maker G", + "model": "Model 11361", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.788650083536034, + 21.465892919071972 + ] + }, + "properties": { + "id": "meter-11362", + "maker": "Maker E", + "model": "Model 11362", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.82058018775471, + 27.6699185426465 + ] + }, + "properties": { + "id": "meter-11363", + "maker": "Maker H", + "model": "Model 11363", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.43188863187306, + 25.278185770263686 + ] + }, + "properties": { + "id": "meter-11364", + "maker": "Maker D", + "model": "Model 11364", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.37961907082004, + 21.435173040599004 + ] + }, + "properties": { + "id": "meter-11365", + "maker": "Maker C", + "model": "Model 11365", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.167798541079755, + 30.811838029332737 + ] + }, + "properties": { + "id": "meter-11366", + "maker": "Maker D", + "model": "Model 11366", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.22621311272157, + 21.559220520384525 + ] + }, + "properties": { + "id": "meter-11367", + "maker": "Maker I", + "model": "Model 11367", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.66817629462388, + 25.166324774888704 + ] + }, + "properties": { + "id": "meter-11368", + "maker": "Maker G", + "model": "Model 11368", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61134654594272, + 24.523554047538063 + ] + }, + "properties": { + "id": "meter-11369", + "maker": "Maker D", + "model": "Model 11369", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.889161714836334, + 26.294950237431888 + ] + }, + "properties": { + "id": "meter-11370", + "maker": "Maker C", + "model": "Model 11370", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20928283440119, + 26.33367815173526 + ] + }, + "properties": { + "id": "meter-11371", + "maker": "Maker C", + "model": "Model 11371", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.949791094751454, + 24.14806799896293 + ] + }, + "properties": { + "id": "meter-11372", + "maker": "Maker B", + "model": "Model 11372", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71567793026625, + 18.284004643852196 + ] + }, + "properties": { + "id": "meter-11373", + "maker": "Maker I", + "model": "Model 11373", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25667779267273, + 21.762455802436627 + ] + }, + "properties": { + "id": "meter-11374", + "maker": "Maker B", + "model": "Model 11374", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.588617348318394, + 25.309692530929585 + ] + }, + "properties": { + "id": "meter-11375", + "maker": "Maker J", + "model": "Model 11375", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.941334257180415, + 18.2989725797929 + ] + }, + "properties": { + "id": "meter-11376", + "maker": "Maker I", + "model": "Model 11376", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.676004267780215, + 18.30822577585967 + ] + }, + "properties": { + "id": "meter-11377", + "maker": "Maker I", + "model": "Model 11377", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.4915345460213, + 24.593243196705192 + ] + }, + "properties": { + "id": "meter-11378", + "maker": "Maker A", + "model": "Model 11378", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21318623397014, + 21.343674904570012 + ] + }, + "properties": { + "id": "meter-11379", + "maker": "Maker F", + "model": "Model 11379", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.91156991962643, + 24.672190154903145 + ] + }, + "properties": { + "id": "meter-11380", + "maker": "Maker F", + "model": "Model 11380", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.82639431148673, + 21.274249677384763 + ] + }, + "properties": { + "id": "meter-11381", + "maker": "Maker B", + "model": "Model 11381", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.048172935650314, + 30.179571138059067 + ] + }, + "properties": { + "id": "meter-11382", + "maker": "Maker B", + "model": "Model 11382", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93453456526027, + 26.28156083242265 + ] + }, + "properties": { + "id": "meter-11383", + "maker": "Maker E", + "model": "Model 11383", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.32645819734756, + 28.302964087167112 + ] + }, + "properties": { + "id": "meter-11384", + "maker": "Maker H", + "model": "Model 11384", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.52056730956659, + 28.197082616025217 + ] + }, + "properties": { + "id": "meter-11385", + "maker": "Maker D", + "model": "Model 11385", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.25921837058211, + 29.910653550424012 + ] + }, + "properties": { + "id": "meter-11386", + "maker": "Maker H", + "model": "Model 11386", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.17000606830057, + 24.23948596595991 + ] + }, + "properties": { + "id": "meter-11387", + "maker": "Maker H", + "model": "Model 11387", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.70019307756982, + 28.44040317069501 + ] + }, + "properties": { + "id": "meter-11388", + "maker": "Maker H", + "model": "Model 11388", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.59184983939338, + 18.213786911404235 + ] + }, + "properties": { + "id": "meter-11389", + "maker": "Maker B", + "model": "Model 11389", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72864240928714, + 18.28803385440209 + ] + }, + "properties": { + "id": "meter-11390", + "maker": "Maker B", + "model": "Model 11390", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.0563424270827, + 29.825791791714444 + ] + }, + "properties": { + "id": "meter-11391", + "maker": "Maker E", + "model": "Model 11391", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.219809678921614, + 21.489048861780507 + ] + }, + "properties": { + "id": "meter-11392", + "maker": "Maker F", + "model": "Model 11392", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10410780721838, + 17.5579383545007 + ] + }, + "properties": { + "id": "meter-11393", + "maker": "Maker B", + "model": "Model 11393", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.84026255529565, + 26.149110112805044 + ] + }, + "properties": { + "id": "meter-11394", + "maker": "Maker E", + "model": "Model 11394", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.62586479025036, + 18.106872242682698 + ] + }, + "properties": { + "id": "meter-11395", + "maker": "Maker H", + "model": "Model 11395", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73561262045642, + 18.30234609165335 + ] + }, + "properties": { + "id": "meter-11396", + "maker": "Maker J", + "model": "Model 11396", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.04173363238727, + 26.38277011869402 + ] + }, + "properties": { + "id": "meter-11397", + "maker": "Maker J", + "model": "Model 11397", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10084020135025, + 26.296435686862687 + ] + }, + "properties": { + "id": "meter-11398", + "maker": "Maker D", + "model": "Model 11398", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.86623214884035, + 18.308931015011694 + ] + }, + "properties": { + "id": "meter-11399", + "maker": "Maker J", + "model": "Model 11399", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.33104448124699, + 17.67671015830389 + ] + }, + "properties": { + "id": "meter-11400", + "maker": "Maker C", + "model": "Model 11400", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.89088418878017, + 27.52711017596332 + ] + }, + "properties": { + "id": "meter-11401", + "maker": "Maker E", + "model": "Model 11401", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05618325891819, + 26.303553862297413 + ] + }, + "properties": { + "id": "meter-11402", + "maker": "Maker C", + "model": "Model 11402", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.6987534667741, + 25.211912542309193 + ] + }, + "properties": { + "id": "meter-11403", + "maker": "Maker F", + "model": "Model 11403", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.592463695613375, + 24.477201370757406 + ] + }, + "properties": { + "id": "meter-11404", + "maker": "Maker G", + "model": "Model 11404", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.76004850234892, + 24.36378760368334 + ] + }, + "properties": { + "id": "meter-11405", + "maker": "Maker F", + "model": "Model 11405", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.416950695376705, + 24.560328283366577 + ] + }, + "properties": { + "id": "meter-11406", + "maker": "Maker J", + "model": "Model 11406", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.58306781727449, + 28.396292002192627 + ] + }, + "properties": { + "id": "meter-11407", + "maker": "Maker C", + "model": "Model 11407", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.91953563624053, + 26.388750948189028 + ] + }, + "properties": { + "id": "meter-11408", + "maker": "Maker F", + "model": "Model 11408", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.690730466247, + 24.626470569457133 + ] + }, + "properties": { + "id": "meter-11409", + "maker": "Maker B", + "model": "Model 11409", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96608911835209, + 26.318575374959952 + ] + }, + "properties": { + "id": "meter-11410", + "maker": "Maker A", + "model": "Model 11410", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.854790258639085, + 27.61861144318577 + ] + }, + "properties": { + "id": "meter-11411", + "maker": "Maker H", + "model": "Model 11411", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.185210993904576, + 26.393902753323676 + ] + }, + "properties": { + "id": "meter-11412", + "maker": "Maker C", + "model": "Model 11412", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1375314691573, + 26.276275370915688 + ] + }, + "properties": { + "id": "meter-11413", + "maker": "Maker B", + "model": "Model 11413", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89549239245245, + 21.270652603679004 + ] + }, + "properties": { + "id": "meter-11414", + "maker": "Maker D", + "model": "Model 11414", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.81988939745155, + 28.41373243768055 + ] + }, + "properties": { + "id": "meter-11415", + "maker": "Maker I", + "model": "Model 11415", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92617308596081, + 26.179938898088174 + ] + }, + "properties": { + "id": "meter-11416", + "maker": "Maker E", + "model": "Model 11416", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1069889649317, + 26.428876286480293 + ] + }, + "properties": { + "id": "meter-11417", + "maker": "Maker J", + "model": "Model 11417", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.564854545622346, + 25.335109608536907 + ] + }, + "properties": { + "id": "meter-11418", + "maker": "Maker B", + "model": "Model 11418", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.54008757906795, + 28.362633287925828 + ] + }, + "properties": { + "id": "meter-11419", + "maker": "Maker D", + "model": "Model 11419", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.33075732532604, + 29.786738189105044 + ] + }, + "properties": { + "id": "meter-11420", + "maker": "Maker F", + "model": "Model 11420", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.71064399062119, + 24.441850824491922 + ] + }, + "properties": { + "id": "meter-11421", + "maker": "Maker J", + "model": "Model 11421", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.29986740651591, + 21.608249713684724 + ] + }, + "properties": { + "id": "meter-11422", + "maker": "Maker G", + "model": "Model 11422", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.21045051775444, + 26.46475731479475 + ] + }, + "properties": { + "id": "meter-11423", + "maker": "Maker E", + "model": "Model 11423", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.16971124640031, + 24.02291502668956 + ] + }, + "properties": { + "id": "meter-11424", + "maker": "Maker H", + "model": "Model 11424", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.033475467524134, + 29.93916118805962 + ] + }, + "properties": { + "id": "meter-11425", + "maker": "Maker A", + "model": "Model 11425", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.940146559178466, + 26.38024653940357 + ] + }, + "properties": { + "id": "meter-11426", + "maker": "Maker A", + "model": "Model 11426", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77115999723118, + 24.71593724904834 + ] + }, + "properties": { + "id": "meter-11427", + "maker": "Maker C", + "model": "Model 11427", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.53348143321969, + 25.297629064398457 + ] + }, + "properties": { + "id": "meter-11428", + "maker": "Maker B", + "model": "Model 11428", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14577132571774, + 26.09213567156223 + ] + }, + "properties": { + "id": "meter-11429", + "maker": "Maker I", + "model": "Model 11429", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.37957855611058, + 24.688017427841555 + ] + }, + "properties": { + "id": "meter-11430", + "maker": "Maker G", + "model": "Model 11430", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.04555605466078, + 26.294633150201605 + ] + }, + "properties": { + "id": "meter-11431", + "maker": "Maker I", + "model": "Model 11431", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71635398222269, + 18.31241438585533 + ] + }, + "properties": { + "id": "meter-11432", + "maker": "Maker I", + "model": "Model 11432", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.770495013550395, + 28.567906153205897 + ] + }, + "properties": { + "id": "meter-11433", + "maker": "Maker F", + "model": "Model 11433", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.36798440534987, + 29.963840822054177 + ] + }, + "properties": { + "id": "meter-11434", + "maker": "Maker J", + "model": "Model 11434", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08386417937449, + 26.43228255685898 + ] + }, + "properties": { + "id": "meter-11435", + "maker": "Maker D", + "model": "Model 11435", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63439852985438, + 24.530382991106546 + ] + }, + "properties": { + "id": "meter-11436", + "maker": "Maker A", + "model": "Model 11436", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.44380526025984, + 29.96333536944492 + ] + }, + "properties": { + "id": "meter-11437", + "maker": "Maker I", + "model": "Model 11437", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18687836928312, + 26.26617236852496 + ] + }, + "properties": { + "id": "meter-11438", + "maker": "Maker I", + "model": "Model 11438", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.662838479734944, + 27.440424469407134 + ] + }, + "properties": { + "id": "meter-11439", + "maker": "Maker C", + "model": "Model 11439", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46121323832662, + 19.7856878403467 + ] + }, + "properties": { + "id": "meter-11440", + "maker": "Maker G", + "model": "Model 11440", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06538922797111, + 24.19877616568435 + ] + }, + "properties": { + "id": "meter-11441", + "maker": "Maker J", + "model": "Model 11441", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.26479409996591, + 18.249274826850804 + ] + }, + "properties": { + "id": "meter-11442", + "maker": "Maker D", + "model": "Model 11442", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6718626416142, + 20.01157689841831 + ] + }, + "properties": { + "id": "meter-11443", + "maker": "Maker D", + "model": "Model 11443", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.706465690382466, + 24.430417794834447 + ] + }, + "properties": { + "id": "meter-11444", + "maker": "Maker B", + "model": "Model 11444", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.30581395649837, + 30.84531771741331 + ] + }, + "properties": { + "id": "meter-11445", + "maker": "Maker J", + "model": "Model 11445", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.114634122355774, + 31.019551874056877 + ] + }, + "properties": { + "id": "meter-11446", + "maker": "Maker E", + "model": "Model 11446", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.21745651574488, + 26.283262003344273 + ] + }, + "properties": { + "id": "meter-11447", + "maker": "Maker F", + "model": "Model 11447", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.774318497150084, + 30.84392418429672 + ] + }, + "properties": { + "id": "meter-11448", + "maker": "Maker E", + "model": "Model 11448", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.82060130866583, + 30.99644350920811 + ] + }, + "properties": { + "id": "meter-11449", + "maker": "Maker E", + "model": "Model 11449", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.28618755566452, + 21.408827020616073 + ] + }, + "properties": { + "id": "meter-11450", + "maker": "Maker A", + "model": "Model 11450", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.891238309058416, + 21.49703682902621 + ] + }, + "properties": { + "id": "meter-11451", + "maker": "Maker E", + "model": "Model 11451", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.858400478601446, + 18.098753126621336 + ] + }, + "properties": { + "id": "meter-11452", + "maker": "Maker H", + "model": "Model 11452", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.76490199317855, + 18.281528678164527 + ] + }, + "properties": { + "id": "meter-11453", + "maker": "Maker J", + "model": "Model 11453", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.656955925900945, + 19.855724987539045 + ] + }, + "properties": { + "id": "meter-11454", + "maker": "Maker A", + "model": "Model 11454", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.25901751149117, + 24.09542035871391 + ] + }, + "properties": { + "id": "meter-11455", + "maker": "Maker F", + "model": "Model 11455", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.685548790333144, + 19.87485629928887 + ] + }, + "properties": { + "id": "meter-11456", + "maker": "Maker H", + "model": "Model 11456", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.116798345939046, + 30.78937694522511 + ] + }, + "properties": { + "id": "meter-11457", + "maker": "Maker B", + "model": "Model 11457", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.44496463360663, + 18.47887709819002 + ] + }, + "properties": { + "id": "meter-11458", + "maker": "Maker F", + "model": "Model 11458", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.876391247632355, + 24.535227000750524 + ] + }, + "properties": { + "id": "meter-11459", + "maker": "Maker J", + "model": "Model 11459", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.16258192183024, + 21.26809950426042 + ] + }, + "properties": { + "id": "meter-11460", + "maker": "Maker B", + "model": "Model 11460", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05211016681963, + 26.249215099687827 + ] + }, + "properties": { + "id": "meter-11461", + "maker": "Maker G", + "model": "Model 11461", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9252318686396, + 26.586575487267975 + ] + }, + "properties": { + "id": "meter-11462", + "maker": "Maker D", + "model": "Model 11462", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.657581564444456, + 28.359090571958024 + ] + }, + "properties": { + "id": "meter-11463", + "maker": "Maker F", + "model": "Model 11463", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02660248831521, + 26.350907120806852 + ] + }, + "properties": { + "id": "meter-11464", + "maker": "Maker B", + "model": "Model 11464", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.98241152281008, + 24.172694483536223 + ] + }, + "properties": { + "id": "meter-11465", + "maker": "Maker B", + "model": "Model 11465", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.31406280316599, + 18.442802135717162 + ] + }, + "properties": { + "id": "meter-11466", + "maker": "Maker H", + "model": "Model 11466", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.845355799938716, + 18.251945613366978 + ] + }, + "properties": { + "id": "meter-11467", + "maker": "Maker G", + "model": "Model 11467", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17181995725455, + 17.465786386388764 + ] + }, + "properties": { + "id": "meter-11468", + "maker": "Maker E", + "model": "Model 11468", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.230518775865875, + 26.262938792598362 + ] + }, + "properties": { + "id": "meter-11469", + "maker": "Maker J", + "model": "Model 11469", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.982248622635886, + 26.227200414503166 + ] + }, + "properties": { + "id": "meter-11470", + "maker": "Maker B", + "model": "Model 11470", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14739340870091, + 26.376847958236112 + ] + }, + "properties": { + "id": "meter-11471", + "maker": "Maker D", + "model": "Model 11471", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.518494131181555, + 24.523172264617667 + ] + }, + "properties": { + "id": "meter-11472", + "maker": "Maker B", + "model": "Model 11472", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00888227779397, + 26.528029188596634 + ] + }, + "properties": { + "id": "meter-11473", + "maker": "Maker F", + "model": "Model 11473", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.45600922026877, + 29.895913926331215 + ] + }, + "properties": { + "id": "meter-11474", + "maker": "Maker A", + "model": "Model 11474", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46468270783201, + 27.497274572060583 + ] + }, + "properties": { + "id": "meter-11475", + "maker": "Maker I", + "model": "Model 11475", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06098584537449, + 24.08751484897957 + ] + }, + "properties": { + "id": "meter-11476", + "maker": "Maker E", + "model": "Model 11476", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.737194494834895, + 19.95359044608319 + ] + }, + "properties": { + "id": "meter-11477", + "maker": "Maker B", + "model": "Model 11477", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.060216471032426, + 26.44924759486483 + ] + }, + "properties": { + "id": "meter-11478", + "maker": "Maker G", + "model": "Model 11478", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.24298692990556, + 17.683453638085794 + ] + }, + "properties": { + "id": "meter-11479", + "maker": "Maker D", + "model": "Model 11479", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.90315764047693, + 24.15644224131151 + ] + }, + "properties": { + "id": "meter-11480", + "maker": "Maker H", + "model": "Model 11480", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.66355076526143, + 24.67493739873597 + ] + }, + "properties": { + "id": "meter-11481", + "maker": "Maker E", + "model": "Model 11481", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.09689812156585, + 29.99142558799484 + ] + }, + "properties": { + "id": "meter-11482", + "maker": "Maker B", + "model": "Model 11482", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.130917302126164, + 21.306697646861018 + ] + }, + "properties": { + "id": "meter-11483", + "maker": "Maker F", + "model": "Model 11483", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92914698749211, + 17.477782671736087 + ] + }, + "properties": { + "id": "meter-11484", + "maker": "Maker D", + "model": "Model 11484", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.816931883865806, + 26.3927499476202 + ] + }, + "properties": { + "id": "meter-11485", + "maker": "Maker I", + "model": "Model 11485", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.05776091839841, + 17.41629126388471 + ] + }, + "properties": { + "id": "meter-11486", + "maker": "Maker J", + "model": "Model 11486", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94728185637831, + 26.597023532973846 + ] + }, + "properties": { + "id": "meter-11487", + "maker": "Maker I", + "model": "Model 11487", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.74198973520482, + 18.297568403980872 + ] + }, + "properties": { + "id": "meter-11488", + "maker": "Maker I", + "model": "Model 11488", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.04803170052667, + 31.03064911496254 + ] + }, + "properties": { + "id": "meter-11489", + "maker": "Maker C", + "model": "Model 11489", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52021240442194, + 18.058918300554744 + ] + }, + "properties": { + "id": "meter-11490", + "maker": "Maker I", + "model": "Model 11490", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17349260590322, + 26.30902314554235 + ] + }, + "properties": { + "id": "meter-11491", + "maker": "Maker F", + "model": "Model 11491", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.22237704754286, + 30.95077165040755 + ] + }, + "properties": { + "id": "meter-11492", + "maker": "Maker A", + "model": "Model 11492", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4161263581408, + 19.79968207539573 + ] + }, + "properties": { + "id": "meter-11493", + "maker": "Maker I", + "model": "Model 11493", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.56364164495752, + 19.885455865950973 + ] + }, + "properties": { + "id": "meter-11494", + "maker": "Maker E", + "model": "Model 11494", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.00651751848732, + 24.308143224621023 + ] + }, + "properties": { + "id": "meter-11495", + "maker": "Maker E", + "model": "Model 11495", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.853030826725686, + 21.42498865006129 + ] + }, + "properties": { + "id": "meter-11496", + "maker": "Maker J", + "model": "Model 11496", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.505111725251766, + 18.229891702709114 + ] + }, + "properties": { + "id": "meter-11497", + "maker": "Maker H", + "model": "Model 11497", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.93879616519589, + 17.660596782197132 + ] + }, + "properties": { + "id": "meter-11498", + "maker": "Maker H", + "model": "Model 11498", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.638855782803866, + 24.744397117831596 + ] + }, + "properties": { + "id": "meter-11499", + "maker": "Maker B", + "model": "Model 11499", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.9424716535557, + 21.330232008238962 + ] + }, + "properties": { + "id": "meter-11500", + "maker": "Maker B", + "model": "Model 11500", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.145307967445596, + 24.118690923544396 + ] + }, + "properties": { + "id": "meter-11501", + "maker": "Maker G", + "model": "Model 11501", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.16507873191622, + 30.044621493741083 + ] + }, + "properties": { + "id": "meter-11502", + "maker": "Maker D", + "model": "Model 11502", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.33192918740017, + 24.52382503271514 + ] + }, + "properties": { + "id": "meter-11503", + "maker": "Maker G", + "model": "Model 11503", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.772100851525465, + 27.493450776242586 + ] + }, + "properties": { + "id": "meter-11504", + "maker": "Maker E", + "model": "Model 11504", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.32373319668262, + 29.885092459519726 + ] + }, + "properties": { + "id": "meter-11505", + "maker": "Maker F", + "model": "Model 11505", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.6143541451101, + 24.52414938594564 + ] + }, + "properties": { + "id": "meter-11506", + "maker": "Maker I", + "model": "Model 11506", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.574723455825115, + 24.62526500891302 + ] + }, + "properties": { + "id": "meter-11507", + "maker": "Maker A", + "model": "Model 11507", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96196015550177, + 26.352757803963314 + ] + }, + "properties": { + "id": "meter-11508", + "maker": "Maker A", + "model": "Model 11508", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.47847075615005, + 18.29634585767089 + ] + }, + "properties": { + "id": "meter-11509", + "maker": "Maker B", + "model": "Model 11509", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.72598315054029, + 24.618913628915106 + ] + }, + "properties": { + "id": "meter-11510", + "maker": "Maker C", + "model": "Model 11510", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.90674746180829, + 18.257896630795983 + ] + }, + "properties": { + "id": "meter-11511", + "maker": "Maker H", + "model": "Model 11511", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.507700909189246, + 25.212878671802656 + ] + }, + "properties": { + "id": "meter-11512", + "maker": "Maker A", + "model": "Model 11512", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23252480169113, + 21.483449177816826 + ] + }, + "properties": { + "id": "meter-11513", + "maker": "Maker I", + "model": "Model 11513", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96873003852198, + 26.35097902599655 + ] + }, + "properties": { + "id": "meter-11514", + "maker": "Maker I", + "model": "Model 11514", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.059645285712406, + 24.169256593154568 + ] + }, + "properties": { + "id": "meter-11515", + "maker": "Maker I", + "model": "Model 11515", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.020436728926285, + 26.416471117877492 + ] + }, + "properties": { + "id": "meter-11516", + "maker": "Maker E", + "model": "Model 11516", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.229984649482425, + 20.07061858866633 + ] + }, + "properties": { + "id": "meter-11517", + "maker": "Maker B", + "model": "Model 11517", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09712958218234, + 26.169884680525165 + ] + }, + "properties": { + "id": "meter-11518", + "maker": "Maker I", + "model": "Model 11518", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24689932414704, + 21.770782794118425 + ] + }, + "properties": { + "id": "meter-11519", + "maker": "Maker J", + "model": "Model 11519", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.83414407843255, + 25.32153949504884 + ] + }, + "properties": { + "id": "meter-11520", + "maker": "Maker F", + "model": "Model 11520", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21304009337254, + 26.275950963682863 + ] + }, + "properties": { + "id": "meter-11521", + "maker": "Maker H", + "model": "Model 11521", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.56657330175311, + 18.441167389345463 + ] + }, + "properties": { + "id": "meter-11522", + "maker": "Maker H", + "model": "Model 11522", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.213465263497945, + 26.253326253995326 + ] + }, + "properties": { + "id": "meter-11523", + "maker": "Maker E", + "model": "Model 11523", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.195053005194886, + 24.020881457773374 + ] + }, + "properties": { + "id": "meter-11524", + "maker": "Maker J", + "model": "Model 11524", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.652489071120925, + 24.465506516547425 + ] + }, + "properties": { + "id": "meter-11525", + "maker": "Maker D", + "model": "Model 11525", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13044756554566, + 17.492117238814277 + ] + }, + "properties": { + "id": "meter-11526", + "maker": "Maker H", + "model": "Model 11526", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57379389572109, + 25.34338193746455 + ] + }, + "properties": { + "id": "meter-11527", + "maker": "Maker E", + "model": "Model 11527", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.02308287735067, + 30.0593324725684 + ] + }, + "properties": { + "id": "meter-11528", + "maker": "Maker D", + "model": "Model 11528", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99086426396211, + 26.216964245197524 + ] + }, + "properties": { + "id": "meter-11529", + "maker": "Maker F", + "model": "Model 11529", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.69679634028944, + 21.41786952396361 + ] + }, + "properties": { + "id": "meter-11530", + "maker": "Maker A", + "model": "Model 11530", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.0841309437007, + 26.256777018778546 + ] + }, + "properties": { + "id": "meter-11531", + "maker": "Maker F", + "model": "Model 11531", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.382518603851, + 25.466096871590445 + ] + }, + "properties": { + "id": "meter-11532", + "maker": "Maker A", + "model": "Model 11532", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.5943083624015, + 18.437849855952802 + ] + }, + "properties": { + "id": "meter-11533", + "maker": "Maker B", + "model": "Model 11533", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.66473127856104, + 24.48288756620564 + ] + }, + "properties": { + "id": "meter-11534", + "maker": "Maker D", + "model": "Model 11534", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.9128739395186, + 27.452124356798972 + ] + }, + "properties": { + "id": "meter-11535", + "maker": "Maker C", + "model": "Model 11535", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.70735364412298, + 18.119665476872974 + ] + }, + "properties": { + "id": "meter-11536", + "maker": "Maker C", + "model": "Model 11536", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53225164047907, + 18.18090201248076 + ] + }, + "properties": { + "id": "meter-11537", + "maker": "Maker B", + "model": "Model 11537", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.54579124698504, + 28.412638576606966 + ] + }, + "properties": { + "id": "meter-11538", + "maker": "Maker I", + "model": "Model 11538", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.40201683134106, + 19.802867398780474 + ] + }, + "properties": { + "id": "meter-11539", + "maker": "Maker G", + "model": "Model 11539", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.92220153692722, + 30.848958016806208 + ] + }, + "properties": { + "id": "meter-11540", + "maker": "Maker G", + "model": "Model 11540", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.95778876226032, + 21.663138725892765 + ] + }, + "properties": { + "id": "meter-11541", + "maker": "Maker E", + "model": "Model 11541", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.112258640517084, + 26.380644075346673 + ] + }, + "properties": { + "id": "meter-11542", + "maker": "Maker A", + "model": "Model 11542", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.024533730683025, + 30.99386226507434 + ] + }, + "properties": { + "id": "meter-11543", + "maker": "Maker H", + "model": "Model 11543", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.27357670237028, + 18.32297354736703 + ] + }, + "properties": { + "id": "meter-11544", + "maker": "Maker G", + "model": "Model 11544", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70624989183696, + 27.445122839294637 + ] + }, + "properties": { + "id": "meter-11545", + "maker": "Maker C", + "model": "Model 11545", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.156781979559675, + 21.643597989347786 + ] + }, + "properties": { + "id": "meter-11546", + "maker": "Maker D", + "model": "Model 11546", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63040004614194, + 24.523578375745068 + ] + }, + "properties": { + "id": "meter-11547", + "maker": "Maker H", + "model": "Model 11547", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.36817613518848, + 21.46991627629218 + ] + }, + "properties": { + "id": "meter-11548", + "maker": "Maker B", + "model": "Model 11548", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.28969803012411, + 30.83427215780133 + ] + }, + "properties": { + "id": "meter-11549", + "maker": "Maker C", + "model": "Model 11549", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.147361395766204, + 26.37410041227048 + ] + }, + "properties": { + "id": "meter-11550", + "maker": "Maker H", + "model": "Model 11550", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.55743119859041, + 18.16120158341871 + ] + }, + "properties": { + "id": "meter-11551", + "maker": "Maker J", + "model": "Model 11551", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95793483861572, + 26.441883820791126 + ] + }, + "properties": { + "id": "meter-11552", + "maker": "Maker E", + "model": "Model 11552", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.24056320449437, + 18.09689503406311 + ] + }, + "properties": { + "id": "meter-11553", + "maker": "Maker A", + "model": "Model 11553", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.974531507832644, + 26.545725884154685 + ] + }, + "properties": { + "id": "meter-11554", + "maker": "Maker A", + "model": "Model 11554", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86527484157287, + 21.397906522529258 + ] + }, + "properties": { + "id": "meter-11555", + "maker": "Maker F", + "model": "Model 11555", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20388286344537, + 26.228085273713138 + ] + }, + "properties": { + "id": "meter-11556", + "maker": "Maker D", + "model": "Model 11556", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.74621037217933, + 24.822327563149162 + ] + }, + "properties": { + "id": "meter-11557", + "maker": "Maker C", + "model": "Model 11557", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09850745466385, + 24.062101499337853 + ] + }, + "properties": { + "id": "meter-11558", + "maker": "Maker A", + "model": "Model 11558", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.32744982783139, + 18.39796597876794 + ] + }, + "properties": { + "id": "meter-11559", + "maker": "Maker E", + "model": "Model 11559", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.35671344775433, + 24.125674927339258 + ] + }, + "properties": { + "id": "meter-11560", + "maker": "Maker A", + "model": "Model 11560", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.6507733687627, + 18.201484675077698 + ] + }, + "properties": { + "id": "meter-11561", + "maker": "Maker D", + "model": "Model 11561", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.779555803863495, + 18.54961885447693 + ] + }, + "properties": { + "id": "meter-11562", + "maker": "Maker E", + "model": "Model 11562", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.49117125850364, + 25.468916394782777 + ] + }, + "properties": { + "id": "meter-11563", + "maker": "Maker A", + "model": "Model 11563", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.24629127029639, + 29.88929604480046 + ] + }, + "properties": { + "id": "meter-11564", + "maker": "Maker F", + "model": "Model 11564", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.57421248073533, + 28.372652202041543 + ] + }, + "properties": { + "id": "meter-11565", + "maker": "Maker I", + "model": "Model 11565", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54222975296211, + 25.303770762435274 + ] + }, + "properties": { + "id": "meter-11566", + "maker": "Maker B", + "model": "Model 11566", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.648996782818294, + 25.52979942066098 + ] + }, + "properties": { + "id": "meter-11567", + "maker": "Maker B", + "model": "Model 11567", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.682161415430514, + 27.523822467105763 + ] + }, + "properties": { + "id": "meter-11568", + "maker": "Maker A", + "model": "Model 11568", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03902603415217, + 31.052101250220858 + ] + }, + "properties": { + "id": "meter-11569", + "maker": "Maker A", + "model": "Model 11569", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.73670562384115, + 26.366967121671724 + ] + }, + "properties": { + "id": "meter-11570", + "maker": "Maker G", + "model": "Model 11570", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81681889222357, + 21.27885045547621 + ] + }, + "properties": { + "id": "meter-11571", + "maker": "Maker B", + "model": "Model 11571", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.244651666494, + 21.304855119075302 + ] + }, + "properties": { + "id": "meter-11572", + "maker": "Maker I", + "model": "Model 11572", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.67985350891711, + 18.424406263653548 + ] + }, + "properties": { + "id": "meter-11573", + "maker": "Maker D", + "model": "Model 11573", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.76075898552478, + 21.48329086957789 + ] + }, + "properties": { + "id": "meter-11574", + "maker": "Maker B", + "model": "Model 11574", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01086842285896, + 26.331588294767958 + ] + }, + "properties": { + "id": "meter-11575", + "maker": "Maker I", + "model": "Model 11575", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.87937336916189, + 26.6021453934146 + ] + }, + "properties": { + "id": "meter-11576", + "maker": "Maker A", + "model": "Model 11576", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.983348561753886, + 30.983909803636383 + ] + }, + "properties": { + "id": "meter-11577", + "maker": "Maker B", + "model": "Model 11577", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1092967834444, + 26.31359945570418 + ] + }, + "properties": { + "id": "meter-11578", + "maker": "Maker D", + "model": "Model 11578", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.497746059769526, + 21.450282310496057 + ] + }, + "properties": { + "id": "meter-11579", + "maker": "Maker H", + "model": "Model 11579", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.37152684240369, + 21.613328995047663 + ] + }, + "properties": { + "id": "meter-11580", + "maker": "Maker F", + "model": "Model 11580", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08232283444458, + 17.625898536679816 + ] + }, + "properties": { + "id": "meter-11581", + "maker": "Maker H", + "model": "Model 11581", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.507378233650066, + 27.746494681629656 + ] + }, + "properties": { + "id": "meter-11582", + "maker": "Maker D", + "model": "Model 11582", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.40345215536813, + 20.044372581654788 + ] + }, + "properties": { + "id": "meter-11583", + "maker": "Maker H", + "model": "Model 11583", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.542549447276265, + 18.259379609322004 + ] + }, + "properties": { + "id": "meter-11584", + "maker": "Maker C", + "model": "Model 11584", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59447334880372, + 25.381996127317606 + ] + }, + "properties": { + "id": "meter-11585", + "maker": "Maker D", + "model": "Model 11585", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.57274814408454, + 28.656993386282654 + ] + }, + "properties": { + "id": "meter-11586", + "maker": "Maker E", + "model": "Model 11586", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.871221373370545, + 26.650077684143696 + ] + }, + "properties": { + "id": "meter-11587", + "maker": "Maker F", + "model": "Model 11587", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.59839752922262, + 21.385113307574052 + ] + }, + "properties": { + "id": "meter-11588", + "maker": "Maker C", + "model": "Model 11588", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.10860201527961, + 31.056872931120044 + ] + }, + "properties": { + "id": "meter-11589", + "maker": "Maker B", + "model": "Model 11589", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.57837426478378, + 28.68393776241391 + ] + }, + "properties": { + "id": "meter-11590", + "maker": "Maker H", + "model": "Model 11590", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.62913094770505, + 18.43100131080783 + ] + }, + "properties": { + "id": "meter-11591", + "maker": "Maker B", + "model": "Model 11591", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.75793640041368, + 18.089234752568398 + ] + }, + "properties": { + "id": "meter-11592", + "maker": "Maker G", + "model": "Model 11592", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.240035784634614, + 21.4854242900852 + ] + }, + "properties": { + "id": "meter-11593", + "maker": "Maker H", + "model": "Model 11593", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.60169172191869, + 25.31754645333131 + ] + }, + "properties": { + "id": "meter-11594", + "maker": "Maker I", + "model": "Model 11594", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.773593071546266, + 24.63222652973142 + ] + }, + "properties": { + "id": "meter-11595", + "maker": "Maker H", + "model": "Model 11595", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67815456095724, + 27.50963284066514 + ] + }, + "properties": { + "id": "meter-11596", + "maker": "Maker D", + "model": "Model 11596", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.905233342156926, + 26.440694604365188 + ] + }, + "properties": { + "id": "meter-11597", + "maker": "Maker G", + "model": "Model 11597", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.801591182739664, + 26.372998056493888 + ] + }, + "properties": { + "id": "meter-11598", + "maker": "Maker F", + "model": "Model 11598", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09107811211543, + 26.156721593148948 + ] + }, + "properties": { + "id": "meter-11599", + "maker": "Maker A", + "model": "Model 11599", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.92137352329456, + 24.334987622814335 + ] + }, + "properties": { + "id": "meter-11600", + "maker": "Maker H", + "model": "Model 11600", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.76926634744277, + 24.672859801015782 + ] + }, + "properties": { + "id": "meter-11601", + "maker": "Maker J", + "model": "Model 11601", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.906406798285666, + 26.380994639088154 + ] + }, + "properties": { + "id": "meter-11602", + "maker": "Maker E", + "model": "Model 11602", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.905699269299326, + 27.540296061050547 + ] + }, + "properties": { + "id": "meter-11603", + "maker": "Maker J", + "model": "Model 11603", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.75411819146721, + 24.336347324916016 + ] + }, + "properties": { + "id": "meter-11604", + "maker": "Maker F", + "model": "Model 11604", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.37274799913817, + 25.436236873135734 + ] + }, + "properties": { + "id": "meter-11605", + "maker": "Maker E", + "model": "Model 11605", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86271613021096, + 21.58227037602133 + ] + }, + "properties": { + "id": "meter-11606", + "maker": "Maker I", + "model": "Model 11606", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.05499779834686, + 31.018945308193526 + ] + }, + "properties": { + "id": "meter-11607", + "maker": "Maker B", + "model": "Model 11607", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.081480364866046, + 30.974134987679207 + ] + }, + "properties": { + "id": "meter-11608", + "maker": "Maker B", + "model": "Model 11608", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.368578946005734, + 21.49156810292207 + ] + }, + "properties": { + "id": "meter-11609", + "maker": "Maker B", + "model": "Model 11609", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14779838734144, + 26.265206047822765 + ] + }, + "properties": { + "id": "meter-11610", + "maker": "Maker B", + "model": "Model 11610", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.677015011051886, + 27.586556150220872 + ] + }, + "properties": { + "id": "meter-11611", + "maker": "Maker I", + "model": "Model 11611", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.5980308266717, + 25.375934461991935 + ] + }, + "properties": { + "id": "meter-11612", + "maker": "Maker H", + "model": "Model 11612", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88208443479743, + 21.411237427371095 + ] + }, + "properties": { + "id": "meter-11613", + "maker": "Maker C", + "model": "Model 11613", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.35186997626158, + 25.234528464174865 + ] + }, + "properties": { + "id": "meter-11614", + "maker": "Maker A", + "model": "Model 11614", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.59965345859863, + 18.331846498482523 + ] + }, + "properties": { + "id": "meter-11615", + "maker": "Maker C", + "model": "Model 11615", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.88135480908375, + 26.51022121849041 + ] + }, + "properties": { + "id": "meter-11616", + "maker": "Maker G", + "model": "Model 11616", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.51046500073124, + 18.45425457860948 + ] + }, + "properties": { + "id": "meter-11617", + "maker": "Maker J", + "model": "Model 11617", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.771658888295775, + 25.317763773098797 + ] + }, + "properties": { + "id": "meter-11618", + "maker": "Maker I", + "model": "Model 11618", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00289664925476, + 26.25762948765367 + ] + }, + "properties": { + "id": "meter-11619", + "maker": "Maker C", + "model": "Model 11619", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.91850887305038, + 24.28462838103031 + ] + }, + "properties": { + "id": "meter-11620", + "maker": "Maker G", + "model": "Model 11620", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.418399387381676, + 19.72200426161396 + ] + }, + "properties": { + "id": "meter-11621", + "maker": "Maker C", + "model": "Model 11621", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03584600712063, + 26.20192309688983 + ] + }, + "properties": { + "id": "meter-11622", + "maker": "Maker H", + "model": "Model 11622", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.80132336629199, + 24.625480000441353 + ] + }, + "properties": { + "id": "meter-11623", + "maker": "Maker H", + "model": "Model 11623", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97848929195812, + 26.327413508337578 + ] + }, + "properties": { + "id": "meter-11624", + "maker": "Maker C", + "model": "Model 11624", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70207073831871, + 27.520922812901873 + ] + }, + "properties": { + "id": "meter-11625", + "maker": "Maker E", + "model": "Model 11625", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.206281364211854, + 21.36046680347091 + ] + }, + "properties": { + "id": "meter-11626", + "maker": "Maker F", + "model": "Model 11626", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.006933194776245, + 26.30467802816966 + ] + }, + "properties": { + "id": "meter-11627", + "maker": "Maker G", + "model": "Model 11627", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.81366196256295, + 27.56425975169014 + ] + }, + "properties": { + "id": "meter-11628", + "maker": "Maker B", + "model": "Model 11628", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.1985700122242, + 24.141486104485328 + ] + }, + "properties": { + "id": "meter-11629", + "maker": "Maker B", + "model": "Model 11629", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.73187598305284, + 24.962899030112432 + ] + }, + "properties": { + "id": "meter-11630", + "maker": "Maker D", + "model": "Model 11630", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.662463272185825, + 18.309548421847 + ] + }, + "properties": { + "id": "meter-11631", + "maker": "Maker F", + "model": "Model 11631", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.82479158844173, + 21.41907296055074 + ] + }, + "properties": { + "id": "meter-11632", + "maker": "Maker J", + "model": "Model 11632", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11072186416622, + 26.42679640111138 + ] + }, + "properties": { + "id": "meter-11633", + "maker": "Maker G", + "model": "Model 11633", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.578671431519936, + 28.18571339170475 + ] + }, + "properties": { + "id": "meter-11634", + "maker": "Maker H", + "model": "Model 11634", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06935702175021, + 26.421152312180233 + ] + }, + "properties": { + "id": "meter-11635", + "maker": "Maker I", + "model": "Model 11635", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.905729148572185, + 26.696823682149535 + ] + }, + "properties": { + "id": "meter-11636", + "maker": "Maker G", + "model": "Model 11636", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17373627419067, + 17.47371153460019 + ] + }, + "properties": { + "id": "meter-11637", + "maker": "Maker F", + "model": "Model 11637", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02264383947963, + 17.669571836502765 + ] + }, + "properties": { + "id": "meter-11638", + "maker": "Maker H", + "model": "Model 11638", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00404665379395, + 26.5214611649328 + ] + }, + "properties": { + "id": "meter-11639", + "maker": "Maker F", + "model": "Model 11639", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98479180382308, + 26.3359072597294 + ] + }, + "properties": { + "id": "meter-11640", + "maker": "Maker J", + "model": "Model 11640", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68243254521225, + 18.569172347411147 + ] + }, + "properties": { + "id": "meter-11641", + "maker": "Maker H", + "model": "Model 11641", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.799479714799816, + 21.53993055452682 + ] + }, + "properties": { + "id": "meter-11642", + "maker": "Maker J", + "model": "Model 11642", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15720715460298, + 26.295616163760176 + ] + }, + "properties": { + "id": "meter-11643", + "maker": "Maker G", + "model": "Model 11643", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48801762617347, + 27.349810896282 + ] + }, + "properties": { + "id": "meter-11644", + "maker": "Maker B", + "model": "Model 11644", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.31472042915449, + 20.226038007391903 + ] + }, + "properties": { + "id": "meter-11645", + "maker": "Maker J", + "model": "Model 11645", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.0949590254859, + 30.048986662707982 + ] + }, + "properties": { + "id": "meter-11646", + "maker": "Maker H", + "model": "Model 11646", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.57086341796415, + 24.335193902784365 + ] + }, + "properties": { + "id": "meter-11647", + "maker": "Maker A", + "model": "Model 11647", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.35254702817147, + 21.40006060058145 + ] + }, + "properties": { + "id": "meter-11648", + "maker": "Maker C", + "model": "Model 11648", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.85906581345561, + 24.52161233240689 + ] + }, + "properties": { + "id": "meter-11649", + "maker": "Maker I", + "model": "Model 11649", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.932284111910654, + 21.419712791066914 + ] + }, + "properties": { + "id": "meter-11650", + "maker": "Maker F", + "model": "Model 11650", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.814662026992785, + 18.14912085561431 + ] + }, + "properties": { + "id": "meter-11651", + "maker": "Maker E", + "model": "Model 11651", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.88910415665267, + 26.36514249126223 + ] + }, + "properties": { + "id": "meter-11652", + "maker": "Maker G", + "model": "Model 11652", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01678937643318, + 26.476316210677616 + ] + }, + "properties": { + "id": "meter-11653", + "maker": "Maker E", + "model": "Model 11653", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20463345132695, + 26.278735124926072 + ] + }, + "properties": { + "id": "meter-11654", + "maker": "Maker A", + "model": "Model 11654", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.848699290615606, + 18.237000753882686 + ] + }, + "properties": { + "id": "meter-11655", + "maker": "Maker H", + "model": "Model 11655", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.81689094786082, + 25.17482694459749 + ] + }, + "properties": { + "id": "meter-11656", + "maker": "Maker J", + "model": "Model 11656", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.64249869493877, + 18.378414024790963 + ] + }, + "properties": { + "id": "meter-11657", + "maker": "Maker G", + "model": "Model 11657", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20738458081158, + 26.261949827654963 + ] + }, + "properties": { + "id": "meter-11658", + "maker": "Maker G", + "model": "Model 11658", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.07073868888192, + 17.40504396791326 + ] + }, + "properties": { + "id": "meter-11659", + "maker": "Maker I", + "model": "Model 11659", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09474589758571, + 26.245087752761243 + ] + }, + "properties": { + "id": "meter-11660", + "maker": "Maker H", + "model": "Model 11660", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.61456059480617, + 25.323500116058895 + ] + }, + "properties": { + "id": "meter-11661", + "maker": "Maker A", + "model": "Model 11661", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65765233851985, + 24.730120832064557 + ] + }, + "properties": { + "id": "meter-11662", + "maker": "Maker J", + "model": "Model 11662", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.49796355578834, + 25.089611586134627 + ] + }, + "properties": { + "id": "meter-11663", + "maker": "Maker C", + "model": "Model 11663", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.82688112962559, + 21.383269129266363 + ] + }, + "properties": { + "id": "meter-11664", + "maker": "Maker I", + "model": "Model 11664", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.40880114691025, + 28.363564079882455 + ] + }, + "properties": { + "id": "meter-11665", + "maker": "Maker H", + "model": "Model 11665", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.19627887201169, + 21.63490549497976 + ] + }, + "properties": { + "id": "meter-11666", + "maker": "Maker A", + "model": "Model 11666", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.169727071436235, + 21.66209234457687 + ] + }, + "properties": { + "id": "meter-11667", + "maker": "Maker D", + "model": "Model 11667", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.857309926384815, + 21.389896036959065 + ] + }, + "properties": { + "id": "meter-11668", + "maker": "Maker H", + "model": "Model 11668", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.33950874847126, + 20.017362756331647 + ] + }, + "properties": { + "id": "meter-11669", + "maker": "Maker D", + "model": "Model 11669", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.61880864928935, + 18.175785361392403 + ] + }, + "properties": { + "id": "meter-11670", + "maker": "Maker F", + "model": "Model 11670", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98188980557961, + 26.381514256573997 + ] + }, + "properties": { + "id": "meter-11671", + "maker": "Maker J", + "model": "Model 11671", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.7981731622264, + 24.920860735991035 + ] + }, + "properties": { + "id": "meter-11672", + "maker": "Maker A", + "model": "Model 11672", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.92361274945069, + 24.861185344920465 + ] + }, + "properties": { + "id": "meter-11673", + "maker": "Maker J", + "model": "Model 11673", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.116142885668815, + 24.33427743918642 + ] + }, + "properties": { + "id": "meter-11674", + "maker": "Maker H", + "model": "Model 11674", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.50223342744931, + 27.325172210156698 + ] + }, + "properties": { + "id": "meter-11675", + "maker": "Maker B", + "model": "Model 11675", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.29312371349832, + 20.188823680951284 + ] + }, + "properties": { + "id": "meter-11676", + "maker": "Maker F", + "model": "Model 11676", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.51101483284442, + 18.206073631607953 + ] + }, + "properties": { + "id": "meter-11677", + "maker": "Maker H", + "model": "Model 11677", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.16051851527287, + 31.10681025524488 + ] + }, + "properties": { + "id": "meter-11678", + "maker": "Maker C", + "model": "Model 11678", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.711788169481586, + 18.29554019175991 + ] + }, + "properties": { + "id": "meter-11679", + "maker": "Maker H", + "model": "Model 11679", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.390523230569656, + 21.668943756541115 + ] + }, + "properties": { + "id": "meter-11680", + "maker": "Maker C", + "model": "Model 11680", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.16784747357367, + 21.546365680165962 + ] + }, + "properties": { + "id": "meter-11681", + "maker": "Maker D", + "model": "Model 11681", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69445945364637, + 27.48651831479097 + ] + }, + "properties": { + "id": "meter-11682", + "maker": "Maker F", + "model": "Model 11682", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.12985727063628, + 29.843323493423952 + ] + }, + "properties": { + "id": "meter-11683", + "maker": "Maker B", + "model": "Model 11683", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.5463153107856, + 28.148541832330135 + ] + }, + "properties": { + "id": "meter-11684", + "maker": "Maker D", + "model": "Model 11684", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.051689909255145, + 26.165090287111052 + ] + }, + "properties": { + "id": "meter-11685", + "maker": "Maker A", + "model": "Model 11685", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.29212034254994, + 21.605287272918485 + ] + }, + "properties": { + "id": "meter-11686", + "maker": "Maker I", + "model": "Model 11686", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.087586808795116, + 30.07664302301599 + ] + }, + "properties": { + "id": "meter-11687", + "maker": "Maker F", + "model": "Model 11687", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.88189269388996, + 24.63568759445156 + ] + }, + "properties": { + "id": "meter-11688", + "maker": "Maker H", + "model": "Model 11688", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.43690741753585, + 19.964834254795772 + ] + }, + "properties": { + "id": "meter-11689", + "maker": "Maker H", + "model": "Model 11689", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09365479230299, + 26.427095960405538 + ] + }, + "properties": { + "id": "meter-11690", + "maker": "Maker F", + "model": "Model 11690", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.49181376544782, + 20.003251209643707 + ] + }, + "properties": { + "id": "meter-11691", + "maker": "Maker F", + "model": "Model 11691", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.57021659138181, + 24.62051816221174 + ] + }, + "properties": { + "id": "meter-11692", + "maker": "Maker B", + "model": "Model 11692", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.77975622366079, + 27.65698101267968 + ] + }, + "properties": { + "id": "meter-11693", + "maker": "Maker I", + "model": "Model 11693", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.600149686470566, + 24.70195450510303 + ] + }, + "properties": { + "id": "meter-11694", + "maker": "Maker J", + "model": "Model 11694", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.5584194427833, + 18.157996586685154 + ] + }, + "properties": { + "id": "meter-11695", + "maker": "Maker D", + "model": "Model 11695", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.845887584642746, + 18.386891369216965 + ] + }, + "properties": { + "id": "meter-11696", + "maker": "Maker I", + "model": "Model 11696", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.040516232122776, + 17.76627831608195 + ] + }, + "properties": { + "id": "meter-11697", + "maker": "Maker D", + "model": "Model 11697", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.32349623868565, + 21.41898454103851 + ] + }, + "properties": { + "id": "meter-11698", + "maker": "Maker E", + "model": "Model 11698", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.4658428458823, + 28.45974746088355 + ] + }, + "properties": { + "id": "meter-11699", + "maker": "Maker D", + "model": "Model 11699", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.16242825836596, + 30.152250040940253 + ] + }, + "properties": { + "id": "meter-11700", + "maker": "Maker G", + "model": "Model 11700", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.181733440579585, + 21.4781768237857 + ] + }, + "properties": { + "id": "meter-11701", + "maker": "Maker C", + "model": "Model 11701", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.02855227091104, + 24.11205110593995 + ] + }, + "properties": { + "id": "meter-11702", + "maker": "Maker I", + "model": "Model 11702", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84778364905265, + 21.495727153101296 + ] + }, + "properties": { + "id": "meter-11703", + "maker": "Maker G", + "model": "Model 11703", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.93882505588034, + 26.296542735605303 + ] + }, + "properties": { + "id": "meter-11704", + "maker": "Maker F", + "model": "Model 11704", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94150415670077, + 26.613506952322272 + ] + }, + "properties": { + "id": "meter-11705", + "maker": "Maker I", + "model": "Model 11705", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.17072419519491, + 26.28940568180029 + ] + }, + "properties": { + "id": "meter-11706", + "maker": "Maker G", + "model": "Model 11706", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.23835883572557, + 31.001599481930818 + ] + }, + "properties": { + "id": "meter-11707", + "maker": "Maker E", + "model": "Model 11707", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24982201790905, + 21.42815099411323 + ] + }, + "properties": { + "id": "meter-11708", + "maker": "Maker I", + "model": "Model 11708", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.77163169224119, + 18.523707350875636 + ] + }, + "properties": { + "id": "meter-11709", + "maker": "Maker A", + "model": "Model 11709", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21410187544603, + 21.556867045107392 + ] + }, + "properties": { + "id": "meter-11710", + "maker": "Maker A", + "model": "Model 11710", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.648451841741434, + 27.514454106983198 + ] + }, + "properties": { + "id": "meter-11711", + "maker": "Maker J", + "model": "Model 11711", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.122674772944436, + 26.28315301730032 + ] + }, + "properties": { + "id": "meter-11712", + "maker": "Maker B", + "model": "Model 11712", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0914428978087, + 26.391521462907612 + ] + }, + "properties": { + "id": "meter-11713", + "maker": "Maker A", + "model": "Model 11713", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.61751935885958, + 27.457154436379927 + ] + }, + "properties": { + "id": "meter-11714", + "maker": "Maker C", + "model": "Model 11714", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.33921348130454, + 20.035711204874595 + ] + }, + "properties": { + "id": "meter-11715", + "maker": "Maker H", + "model": "Model 11715", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.42512084574384, + 21.48327742330039 + ] + }, + "properties": { + "id": "meter-11716", + "maker": "Maker B", + "model": "Model 11716", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.93422598043932, + 24.81166437632344 + ] + }, + "properties": { + "id": "meter-11717", + "maker": "Maker H", + "model": "Model 11717", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.541339145685164, + 27.42815919187402 + ] + }, + "properties": { + "id": "meter-11718", + "maker": "Maker A", + "model": "Model 11718", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.936909262488726, + 24.849228932206653 + ] + }, + "properties": { + "id": "meter-11719", + "maker": "Maker F", + "model": "Model 11719", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20516228035992, + 29.873319366830653 + ] + }, + "properties": { + "id": "meter-11720", + "maker": "Maker F", + "model": "Model 11720", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.469841219990585, + 19.956298080111946 + ] + }, + "properties": { + "id": "meter-11721", + "maker": "Maker C", + "model": "Model 11721", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10857133353403, + 26.38371333001719 + ] + }, + "properties": { + "id": "meter-11722", + "maker": "Maker C", + "model": "Model 11722", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.70210202168204, + 25.319860072592235 + ] + }, + "properties": { + "id": "meter-11723", + "maker": "Maker B", + "model": "Model 11723", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.115993976030296, + 17.38334669231197 + ] + }, + "properties": { + "id": "meter-11724", + "maker": "Maker H", + "model": "Model 11724", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.53659316321216, + 24.83328017237165 + ] + }, + "properties": { + "id": "meter-11725", + "maker": "Maker I", + "model": "Model 11725", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.980179915554615, + 26.492026232834377 + ] + }, + "properties": { + "id": "meter-11726", + "maker": "Maker D", + "model": "Model 11726", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.673708818709834, + 21.599115056716794 + ] + }, + "properties": { + "id": "meter-11727", + "maker": "Maker E", + "model": "Model 11727", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.15714464523866, + 31.00067353786587 + ] + }, + "properties": { + "id": "meter-11728", + "maker": "Maker B", + "model": "Model 11728", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.194496501161595, + 26.37269392528487 + ] + }, + "properties": { + "id": "meter-11729", + "maker": "Maker D", + "model": "Model 11729", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.131596746781995, + 24.25988099665545 + ] + }, + "properties": { + "id": "meter-11730", + "maker": "Maker C", + "model": "Model 11730", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.47983266742418, + 18.17521114290545 + ] + }, + "properties": { + "id": "meter-11731", + "maker": "Maker B", + "model": "Model 11731", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94559777489872, + 26.38788848706305 + ] + }, + "properties": { + "id": "meter-11732", + "maker": "Maker I", + "model": "Model 11732", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.29584295643019, + 18.328798097220613 + ] + }, + "properties": { + "id": "meter-11733", + "maker": "Maker E", + "model": "Model 11733", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.15129058000521, + 26.41177926693746 + ] + }, + "properties": { + "id": "meter-11734", + "maker": "Maker C", + "model": "Model 11734", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.2699143531502, + 19.835725479119805 + ] + }, + "properties": { + "id": "meter-11735", + "maker": "Maker D", + "model": "Model 11735", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.89925263555352, + 26.18135616757488 + ] + }, + "properties": { + "id": "meter-11736", + "maker": "Maker I", + "model": "Model 11736", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.685375101994076, + 18.193757294064866 + ] + }, + "properties": { + "id": "meter-11737", + "maker": "Maker A", + "model": "Model 11737", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.451480438291846, + 19.842236098452876 + ] + }, + "properties": { + "id": "meter-11738", + "maker": "Maker F", + "model": "Model 11738", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.30100029967897, + 18.163579710374172 + ] + }, + "properties": { + "id": "meter-11739", + "maker": "Maker A", + "model": "Model 11739", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.36130088420431, + 18.02922024045733 + ] + }, + "properties": { + "id": "meter-11740", + "maker": "Maker I", + "model": "Model 11740", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.585631745453874, + 28.29545662007328 + ] + }, + "properties": { + "id": "meter-11741", + "maker": "Maker C", + "model": "Model 11741", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.10649991038909, + 24.177007591899525 + ] + }, + "properties": { + "id": "meter-11742", + "maker": "Maker J", + "model": "Model 11742", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.59587636841049, + 24.770698830315474 + ] + }, + "properties": { + "id": "meter-11743", + "maker": "Maker C", + "model": "Model 11743", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.775259486062154, + 27.52480478375456 + ] + }, + "properties": { + "id": "meter-11744", + "maker": "Maker J", + "model": "Model 11744", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01946032556483, + 26.35645652461831 + ] + }, + "properties": { + "id": "meter-11745", + "maker": "Maker G", + "model": "Model 11745", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.63855102730455, + 20.137017320141805 + ] + }, + "properties": { + "id": "meter-11746", + "maker": "Maker J", + "model": "Model 11746", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97038852102187, + 26.306854741933588 + ] + }, + "properties": { + "id": "meter-11747", + "maker": "Maker B", + "model": "Model 11747", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.229589408391696, + 17.4958896117819 + ] + }, + "properties": { + "id": "meter-11748", + "maker": "Maker F", + "model": "Model 11748", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15629514025722, + 26.103201023979373 + ] + }, + "properties": { + "id": "meter-11749", + "maker": "Maker J", + "model": "Model 11749", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.79235712103072, + 27.577121983631695 + ] + }, + "properties": { + "id": "meter-11750", + "maker": "Maker G", + "model": "Model 11750", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.78760942565722, + 26.386612823457263 + ] + }, + "properties": { + "id": "meter-11751", + "maker": "Maker D", + "model": "Model 11751", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.646496427609016, + 24.730189046414594 + ] + }, + "properties": { + "id": "meter-11752", + "maker": "Maker I", + "model": "Model 11752", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.675939927174056, + 25.305117434550088 + ] + }, + "properties": { + "id": "meter-11753", + "maker": "Maker B", + "model": "Model 11753", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.816628554508426, + 21.335434873135352 + ] + }, + "properties": { + "id": "meter-11754", + "maker": "Maker I", + "model": "Model 11754", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.44710387119595, + 20.01107095623124 + ] + }, + "properties": { + "id": "meter-11755", + "maker": "Maker C", + "model": "Model 11755", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.578736828960224, + 25.370160373348625 + ] + }, + "properties": { + "id": "meter-11756", + "maker": "Maker C", + "model": "Model 11756", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.11198929540284, + 29.979330361038027 + ] + }, + "properties": { + "id": "meter-11757", + "maker": "Maker B", + "model": "Model 11757", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.7588242847189, + 18.339611651821265 + ] + }, + "properties": { + "id": "meter-11758", + "maker": "Maker H", + "model": "Model 11758", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.655774162297334, + 24.60762502602497 + ] + }, + "properties": { + "id": "meter-11759", + "maker": "Maker B", + "model": "Model 11759", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.047034412401125, + 29.88719123996653 + ] + }, + "properties": { + "id": "meter-11760", + "maker": "Maker C", + "model": "Model 11760", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62157102131872, + 19.961810734157666 + ] + }, + "properties": { + "id": "meter-11761", + "maker": "Maker A", + "model": "Model 11761", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96746588399054, + 17.701965457846573 + ] + }, + "properties": { + "id": "meter-11762", + "maker": "Maker B", + "model": "Model 11762", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.051143888369836, + 26.529083248306712 + ] + }, + "properties": { + "id": "meter-11763", + "maker": "Maker A", + "model": "Model 11763", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.47407884099744, + 28.272920067208293 + ] + }, + "properties": { + "id": "meter-11764", + "maker": "Maker F", + "model": "Model 11764", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.05258726741599, + 26.223296890172875 + ] + }, + "properties": { + "id": "meter-11765", + "maker": "Maker D", + "model": "Model 11765", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.011145849908324, + 24.129583755363598 + ] + }, + "properties": { + "id": "meter-11766", + "maker": "Maker F", + "model": "Model 11766", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.39674332583055, + 28.359756797998987 + ] + }, + "properties": { + "id": "meter-11767", + "maker": "Maker A", + "model": "Model 11767", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61121781743942, + 21.55205274980951 + ] + }, + "properties": { + "id": "meter-11768", + "maker": "Maker D", + "model": "Model 11768", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.363520647519245, + 29.93333540887769 + ] + }, + "properties": { + "id": "meter-11769", + "maker": "Maker F", + "model": "Model 11769", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.52382619097199, + 24.514379357714724 + ] + }, + "properties": { + "id": "meter-11770", + "maker": "Maker D", + "model": "Model 11770", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18209787265258, + 26.207698217250826 + ] + }, + "properties": { + "id": "meter-11771", + "maker": "Maker G", + "model": "Model 11771", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47201670270571, + 19.99629087348449 + ] + }, + "properties": { + "id": "meter-11772", + "maker": "Maker E", + "model": "Model 11772", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.111003207270315, + 21.256917521058483 + ] + }, + "properties": { + "id": "meter-11773", + "maker": "Maker J", + "model": "Model 11773", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.14146527903086, + 30.965823435563742 + ] + }, + "properties": { + "id": "meter-11774", + "maker": "Maker A", + "model": "Model 11774", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.040612311466596, + 26.34645859304704 + ] + }, + "properties": { + "id": "meter-11775", + "maker": "Maker A", + "model": "Model 11775", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.59744439446836, + 24.447766137885203 + ] + }, + "properties": { + "id": "meter-11776", + "maker": "Maker I", + "model": "Model 11776", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51959184256381, + 28.178120912891682 + ] + }, + "properties": { + "id": "meter-11777", + "maker": "Maker J", + "model": "Model 11777", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.64846857479851, + 24.756471724816016 + ] + }, + "properties": { + "id": "meter-11778", + "maker": "Maker B", + "model": "Model 11778", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01934796484997, + 26.386552655310513 + ] + }, + "properties": { + "id": "meter-11779", + "maker": "Maker D", + "model": "Model 11779", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14222225307163, + 17.494416861334017 + ] + }, + "properties": { + "id": "meter-11780", + "maker": "Maker A", + "model": "Model 11780", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.82149503104464, + 27.579600581879355 + ] + }, + "properties": { + "id": "meter-11781", + "maker": "Maker F", + "model": "Model 11781", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.54910320312137, + 18.135977204089272 + ] + }, + "properties": { + "id": "meter-11782", + "maker": "Maker J", + "model": "Model 11782", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18735140518345, + 26.28751793609078 + ] + }, + "properties": { + "id": "meter-11783", + "maker": "Maker F", + "model": "Model 11783", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.52596556952085, + 28.30590266058003 + ] + }, + "properties": { + "id": "meter-11784", + "maker": "Maker C", + "model": "Model 11784", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11369695256158, + 26.157508476016684 + ] + }, + "properties": { + "id": "meter-11785", + "maker": "Maker I", + "model": "Model 11785", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.481650490762334, + 24.740722960793597 + ] + }, + "properties": { + "id": "meter-11786", + "maker": "Maker J", + "model": "Model 11786", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59438415391711, + 25.145679239234795 + ] + }, + "properties": { + "id": "meter-11787", + "maker": "Maker A", + "model": "Model 11787", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.024443753905054, + 30.999420341355783 + ] + }, + "properties": { + "id": "meter-11788", + "maker": "Maker C", + "model": "Model 11788", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.359123503211414, + 25.47042379689606 + ] + }, + "properties": { + "id": "meter-11789", + "maker": "Maker D", + "model": "Model 11789", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.132346019890946, + 26.35676147029178 + ] + }, + "properties": { + "id": "meter-11790", + "maker": "Maker I", + "model": "Model 11790", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.79413719357937, + 21.430229241285655 + ] + }, + "properties": { + "id": "meter-11791", + "maker": "Maker G", + "model": "Model 11791", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.675798565577246, + 24.71383660217444 + ] + }, + "properties": { + "id": "meter-11792", + "maker": "Maker G", + "model": "Model 11792", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.612135449094986, + 24.522573483943546 + ] + }, + "properties": { + "id": "meter-11793", + "maker": "Maker B", + "model": "Model 11793", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.48877577107138, + 18.069173752878342 + ] + }, + "properties": { + "id": "meter-11794", + "maker": "Maker E", + "model": "Model 11794", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.198620398455, + 21.35250385942599 + ] + }, + "properties": { + "id": "meter-11795", + "maker": "Maker H", + "model": "Model 11795", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.32599226925701, + 18.454886847599543 + ] + }, + "properties": { + "id": "meter-11796", + "maker": "Maker I", + "model": "Model 11796", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.430294791414575, + 19.98820188583822 + ] + }, + "properties": { + "id": "meter-11797", + "maker": "Maker D", + "model": "Model 11797", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9957793260716, + 26.598518432643765 + ] + }, + "properties": { + "id": "meter-11798", + "maker": "Maker H", + "model": "Model 11798", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20351976732281, + 26.33930865420311 + ] + }, + "properties": { + "id": "meter-11799", + "maker": "Maker H", + "model": "Model 11799", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.206892179082764, + 26.27817514715831 + ] + }, + "properties": { + "id": "meter-11800", + "maker": "Maker I", + "model": "Model 11800", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23506615144269, + 21.47034405851109 + ] + }, + "properties": { + "id": "meter-11801", + "maker": "Maker G", + "model": "Model 11801", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.00595277066881, + 24.28600924758443 + ] + }, + "properties": { + "id": "meter-11802", + "maker": "Maker A", + "model": "Model 11802", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.18856957698464, + 26.183397046745558 + ] + }, + "properties": { + "id": "meter-11803", + "maker": "Maker J", + "model": "Model 11803", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.23326287966543, + 17.520377310396142 + ] + }, + "properties": { + "id": "meter-11804", + "maker": "Maker B", + "model": "Model 11804", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00652645913554, + 26.50442967480588 + ] + }, + "properties": { + "id": "meter-11805", + "maker": "Maker H", + "model": "Model 11805", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.299497871891845, + 29.97147493370174 + ] + }, + "properties": { + "id": "meter-11806", + "maker": "Maker B", + "model": "Model 11806", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.15872891478902, + 17.47887703451758 + ] + }, + "properties": { + "id": "meter-11807", + "maker": "Maker J", + "model": "Model 11807", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15739416899433, + 26.145124853068996 + ] + }, + "properties": { + "id": "meter-11808", + "maker": "Maker E", + "model": "Model 11808", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.43308505862975, + 24.493664530283926 + ] + }, + "properties": { + "id": "meter-11809", + "maker": "Maker B", + "model": "Model 11809", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.643650346770414, + 24.508818743528245 + ] + }, + "properties": { + "id": "meter-11810", + "maker": "Maker I", + "model": "Model 11810", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09584855176452, + 26.095041580480174 + ] + }, + "properties": { + "id": "meter-11811", + "maker": "Maker B", + "model": "Model 11811", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.92104369272301, + 30.97181003184858 + ] + }, + "properties": { + "id": "meter-11812", + "maker": "Maker E", + "model": "Model 11812", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.49760110056185, + 25.622675849795495 + ] + }, + "properties": { + "id": "meter-11813", + "maker": "Maker D", + "model": "Model 11813", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.85471254013476, + 18.450729355644953 + ] + }, + "properties": { + "id": "meter-11814", + "maker": "Maker I", + "model": "Model 11814", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.83181510727276, + 24.92583749428997 + ] + }, + "properties": { + "id": "meter-11815", + "maker": "Maker I", + "model": "Model 11815", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.34764725802764, + 29.833681381102185 + ] + }, + "properties": { + "id": "meter-11816", + "maker": "Maker H", + "model": "Model 11816", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05822751365794, + 26.714306201324383 + ] + }, + "properties": { + "id": "meter-11817", + "maker": "Maker A", + "model": "Model 11817", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.32371766152691, + 21.44330045317472 + ] + }, + "properties": { + "id": "meter-11818", + "maker": "Maker F", + "model": "Model 11818", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.28957965979498, + 21.778515412183975 + ] + }, + "properties": { + "id": "meter-11819", + "maker": "Maker F", + "model": "Model 11819", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.46165207708619, + 28.538422730303527 + ] + }, + "properties": { + "id": "meter-11820", + "maker": "Maker C", + "model": "Model 11820", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.293605260934726, + 17.661112527403937 + ] + }, + "properties": { + "id": "meter-11821", + "maker": "Maker D", + "model": "Model 11821", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.02930494996345, + 24.20374172598699 + ] + }, + "properties": { + "id": "meter-11822", + "maker": "Maker I", + "model": "Model 11822", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.37634897295685, + 19.987398378132472 + ] + }, + "properties": { + "id": "meter-11823", + "maker": "Maker D", + "model": "Model 11823", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.969908347956924, + 26.463355233850958 + ] + }, + "properties": { + "id": "meter-11824", + "maker": "Maker E", + "model": "Model 11824", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.82581380353376, + 27.504359106363633 + ] + }, + "properties": { + "id": "meter-11825", + "maker": "Maker B", + "model": "Model 11825", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0840331357042, + 26.411277601800272 + ] + }, + "properties": { + "id": "meter-11826", + "maker": "Maker J", + "model": "Model 11826", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.203630998155646, + 21.470397504375214 + ] + }, + "properties": { + "id": "meter-11827", + "maker": "Maker F", + "model": "Model 11827", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.688365975888665, + 18.02747845651466 + ] + }, + "properties": { + "id": "meter-11828", + "maker": "Maker C", + "model": "Model 11828", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.17970619768364, + 30.09860842990123 + ] + }, + "properties": { + "id": "meter-11829", + "maker": "Maker J", + "model": "Model 11829", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.44332306435869, + 25.20300900521315 + ] + }, + "properties": { + "id": "meter-11830", + "maker": "Maker A", + "model": "Model 11830", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.82971332317829, + 30.856012298086412 + ] + }, + "properties": { + "id": "meter-11831", + "maker": "Maker E", + "model": "Model 11831", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.77631986397341, + 26.41855392312005 + ] + }, + "properties": { + "id": "meter-11832", + "maker": "Maker I", + "model": "Model 11832", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.35723170477014, + 17.598305864852588 + ] + }, + "properties": { + "id": "meter-11833", + "maker": "Maker A", + "model": "Model 11833", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89368000225604, + 21.35524661429719 + ] + }, + "properties": { + "id": "meter-11834", + "maker": "Maker J", + "model": "Model 11834", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88690080241897, + 21.429071670955878 + ] + }, + "properties": { + "id": "meter-11835", + "maker": "Maker G", + "model": "Model 11835", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.89922614925664, + 27.373213378345135 + ] + }, + "properties": { + "id": "meter-11836", + "maker": "Maker C", + "model": "Model 11836", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.65005264688964, + 18.44940216464134 + ] + }, + "properties": { + "id": "meter-11837", + "maker": "Maker C", + "model": "Model 11837", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.601085124114626, + 18.55249822534045 + ] + }, + "properties": { + "id": "meter-11838", + "maker": "Maker I", + "model": "Model 11838", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97028443827636, + 26.447544261788757 + ] + }, + "properties": { + "id": "meter-11839", + "maker": "Maker H", + "model": "Model 11839", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13207856688829, + 17.51153536782365 + ] + }, + "properties": { + "id": "meter-11840", + "maker": "Maker I", + "model": "Model 11840", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.83006041199557, + 24.663635999302738 + ] + }, + "properties": { + "id": "meter-11841", + "maker": "Maker B", + "model": "Model 11841", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.40971958954724, + 24.65727588788839 + ] + }, + "properties": { + "id": "meter-11842", + "maker": "Maker E", + "model": "Model 11842", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.799307411569195, + 27.505790978100162 + ] + }, + "properties": { + "id": "meter-11843", + "maker": "Maker D", + "model": "Model 11843", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.64190054910659, + 18.25663885141994 + ] + }, + "properties": { + "id": "meter-11844", + "maker": "Maker E", + "model": "Model 11844", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.15355988175949, + 17.50950881838103 + ] + }, + "properties": { + "id": "meter-11845", + "maker": "Maker D", + "model": "Model 11845", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54096097709834, + 25.278158150492917 + ] + }, + "properties": { + "id": "meter-11846", + "maker": "Maker C", + "model": "Model 11846", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.457417860582325, + 24.59187386940595 + ] + }, + "properties": { + "id": "meter-11847", + "maker": "Maker I", + "model": "Model 11847", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73695797164389, + 18.26364853075565 + ] + }, + "properties": { + "id": "meter-11848", + "maker": "Maker C", + "model": "Model 11848", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03361886524976, + 26.2759879293959 + ] + }, + "properties": { + "id": "meter-11849", + "maker": "Maker B", + "model": "Model 11849", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.308288840148826, + 25.25524079343115 + ] + }, + "properties": { + "id": "meter-11850", + "maker": "Maker J", + "model": "Model 11850", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25620783236935, + 21.48468922924745 + ] + }, + "properties": { + "id": "meter-11851", + "maker": "Maker E", + "model": "Model 11851", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.75209651200167, + 18.323020829404502 + ] + }, + "properties": { + "id": "meter-11852", + "maker": "Maker F", + "model": "Model 11852", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.41626912762138, + 18.159624039048353 + ] + }, + "properties": { + "id": "meter-11853", + "maker": "Maker A", + "model": "Model 11853", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.78154817811829, + 24.28514985955188 + ] + }, + "properties": { + "id": "meter-11854", + "maker": "Maker G", + "model": "Model 11854", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9578036154084, + 26.46118555270428 + ] + }, + "properties": { + "id": "meter-11855", + "maker": "Maker F", + "model": "Model 11855", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.78014888364373, + 18.300179963471326 + ] + }, + "properties": { + "id": "meter-11856", + "maker": "Maker D", + "model": "Model 11856", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.50044045802946, + 25.347915740167938 + ] + }, + "properties": { + "id": "meter-11857", + "maker": "Maker J", + "model": "Model 11857", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85311114106398, + 21.384284687647337 + ] + }, + "properties": { + "id": "meter-11858", + "maker": "Maker E", + "model": "Model 11858", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.62740855780723, + 28.413854879112986 + ] + }, + "properties": { + "id": "meter-11859", + "maker": "Maker C", + "model": "Model 11859", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.1068187558479, + 31.116743758315874 + ] + }, + "properties": { + "id": "meter-11860", + "maker": "Maker B", + "model": "Model 11860", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.44495795730769, + 29.797476940349 + ] + }, + "properties": { + "id": "meter-11861", + "maker": "Maker B", + "model": "Model 11861", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19223293880978, + 26.237818509070724 + ] + }, + "properties": { + "id": "meter-11862", + "maker": "Maker G", + "model": "Model 11862", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2458021079978, + 21.75000552975669 + ] + }, + "properties": { + "id": "meter-11863", + "maker": "Maker D", + "model": "Model 11863", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.783878804725376, + 25.532147242781747 + ] + }, + "properties": { + "id": "meter-11864", + "maker": "Maker J", + "model": "Model 11864", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.90842407689211, + 21.309754421635265 + ] + }, + "properties": { + "id": "meter-11865", + "maker": "Maker H", + "model": "Model 11865", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.17822668475585, + 24.16565422974674 + ] + }, + "properties": { + "id": "meter-11866", + "maker": "Maker I", + "model": "Model 11866", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.93471076722794, + 26.267008731538947 + ] + }, + "properties": { + "id": "meter-11867", + "maker": "Maker J", + "model": "Model 11867", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17837107648291, + 17.652467468182884 + ] + }, + "properties": { + "id": "meter-11868", + "maker": "Maker E", + "model": "Model 11868", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.00201534599573, + 29.78897169400911 + ] + }, + "properties": { + "id": "meter-11869", + "maker": "Maker F", + "model": "Model 11869", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.036032925239596, + 26.322416949195617 + ] + }, + "properties": { + "id": "meter-11870", + "maker": "Maker B", + "model": "Model 11870", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.56498548997984, + 24.761401438100993 + ] + }, + "properties": { + "id": "meter-11871", + "maker": "Maker F", + "model": "Model 11871", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.5372918575812, + 27.731494903649693 + ] + }, + "properties": { + "id": "meter-11872", + "maker": "Maker B", + "model": "Model 11872", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.24500764774642, + 29.837352765580487 + ] + }, + "properties": { + "id": "meter-11873", + "maker": "Maker E", + "model": "Model 11873", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71651416382539, + 18.311652045539706 + ] + }, + "properties": { + "id": "meter-11874", + "maker": "Maker D", + "model": "Model 11874", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.200298357574226, + 24.30328284374153 + ] + }, + "properties": { + "id": "meter-11875", + "maker": "Maker I", + "model": "Model 11875", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.46495160067862, + 18.159544608000623 + ] + }, + "properties": { + "id": "meter-11876", + "maker": "Maker E", + "model": "Model 11876", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.38344179362865, + 20.153440809313487 + ] + }, + "properties": { + "id": "meter-11877", + "maker": "Maker A", + "model": "Model 11877", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.695468032898305, + 24.591638264694314 + ] + }, + "properties": { + "id": "meter-11878", + "maker": "Maker J", + "model": "Model 11878", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.37712353469117, + 21.30428034032695 + ] + }, + "properties": { + "id": "meter-11879", + "maker": "Maker G", + "model": "Model 11879", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25632986418848, + 21.44248418440916 + ] + }, + "properties": { + "id": "meter-11880", + "maker": "Maker E", + "model": "Model 11880", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.211551105320844, + 21.222177780514908 + ] + }, + "properties": { + "id": "meter-11881", + "maker": "Maker H", + "model": "Model 11881", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45913850691715, + 18.232518338416288 + ] + }, + "properties": { + "id": "meter-11882", + "maker": "Maker C", + "model": "Model 11882", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.583011871815174, + 24.471699789714837 + ] + }, + "properties": { + "id": "meter-11883", + "maker": "Maker H", + "model": "Model 11883", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.807793080507324, + 28.34065458886426 + ] + }, + "properties": { + "id": "meter-11884", + "maker": "Maker J", + "model": "Model 11884", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.601666214442034, + 19.999977403564486 + ] + }, + "properties": { + "id": "meter-11885", + "maker": "Maker B", + "model": "Model 11885", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69137448655581, + 27.783928830309694 + ] + }, + "properties": { + "id": "meter-11886", + "maker": "Maker F", + "model": "Model 11886", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9465429688434, + 26.49896296234668 + ] + }, + "properties": { + "id": "meter-11887", + "maker": "Maker H", + "model": "Model 11887", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26669844776488, + 21.497033956664396 + ] + }, + "properties": { + "id": "meter-11888", + "maker": "Maker I", + "model": "Model 11888", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00971671780822, + 26.49855765231204 + ] + }, + "properties": { + "id": "meter-11889", + "maker": "Maker F", + "model": "Model 11889", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.17010731282089, + 30.01440599934774 + ] + }, + "properties": { + "id": "meter-11890", + "maker": "Maker I", + "model": "Model 11890", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10903941894667, + 26.29304008488461 + ] + }, + "properties": { + "id": "meter-11891", + "maker": "Maker I", + "model": "Model 11891", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.106486828546934, + 26.419844178583077 + ] + }, + "properties": { + "id": "meter-11892", + "maker": "Maker I", + "model": "Model 11892", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.85945897087073, + 25.393163651526738 + ] + }, + "properties": { + "id": "meter-11893", + "maker": "Maker C", + "model": "Model 11893", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.675962485048885, + 27.254316896574345 + ] + }, + "properties": { + "id": "meter-11894", + "maker": "Maker D", + "model": "Model 11894", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.68518441834922, + 27.549671533941886 + ] + }, + "properties": { + "id": "meter-11895", + "maker": "Maker G", + "model": "Model 11895", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.82187474896653, + 24.7054180602491 + ] + }, + "properties": { + "id": "meter-11896", + "maker": "Maker E", + "model": "Model 11896", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.32614118067572, + 24.458846051372817 + ] + }, + "properties": { + "id": "meter-11897", + "maker": "Maker E", + "model": "Model 11897", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52367502843017, + 18.210143813653396 + ] + }, + "properties": { + "id": "meter-11898", + "maker": "Maker G", + "model": "Model 11898", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.134876377229624, + 24.09590386546966 + ] + }, + "properties": { + "id": "meter-11899", + "maker": "Maker G", + "model": "Model 11899", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.27888571834301, + 29.976983628669462 + ] + }, + "properties": { + "id": "meter-11900", + "maker": "Maker A", + "model": "Model 11900", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.99143900958489, + 31.139957767302356 + ] + }, + "properties": { + "id": "meter-11901", + "maker": "Maker B", + "model": "Model 11901", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98398740873233, + 17.41730381901281 + ] + }, + "properties": { + "id": "meter-11902", + "maker": "Maker H", + "model": "Model 11902", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1238606245003, + 17.43020591296215 + ] + }, + "properties": { + "id": "meter-11903", + "maker": "Maker A", + "model": "Model 11903", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.75974777148215, + 21.299470529541352 + ] + }, + "properties": { + "id": "meter-11904", + "maker": "Maker G", + "model": "Model 11904", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94909298831321, + 26.340737806906088 + ] + }, + "properties": { + "id": "meter-11905", + "maker": "Maker B", + "model": "Model 11905", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.46134275958664, + 24.297975011625944 + ] + }, + "properties": { + "id": "meter-11906", + "maker": "Maker C", + "model": "Model 11906", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.957596839386106, + 18.19656992948033 + ] + }, + "properties": { + "id": "meter-11907", + "maker": "Maker G", + "model": "Model 11907", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.48332016438105, + 18.39091245981227 + ] + }, + "properties": { + "id": "meter-11908", + "maker": "Maker D", + "model": "Model 11908", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.569279272326426, + 24.607773024779075 + ] + }, + "properties": { + "id": "meter-11909", + "maker": "Maker E", + "model": "Model 11909", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68115228399511, + 24.640508151036737 + ] + }, + "properties": { + "id": "meter-11910", + "maker": "Maker A", + "model": "Model 11910", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97196625346045, + 26.32007965940623 + ] + }, + "properties": { + "id": "meter-11911", + "maker": "Maker F", + "model": "Model 11911", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.260870807442636, + 21.774651428262338 + ] + }, + "properties": { + "id": "meter-11912", + "maker": "Maker C", + "model": "Model 11912", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.08155349515631, + 26.405837172281366 + ] + }, + "properties": { + "id": "meter-11913", + "maker": "Maker I", + "model": "Model 11913", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.313734637404615, + 18.11061827201276 + ] + }, + "properties": { + "id": "meter-11914", + "maker": "Maker A", + "model": "Model 11914", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.65107038140449, + 18.224322951633944 + ] + }, + "properties": { + "id": "meter-11915", + "maker": "Maker B", + "model": "Model 11915", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.564760105271844, + 28.397502082220885 + ] + }, + "properties": { + "id": "meter-11916", + "maker": "Maker B", + "model": "Model 11916", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.233706392050244, + 30.885949091216283 + ] + }, + "properties": { + "id": "meter-11917", + "maker": "Maker E", + "model": "Model 11917", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.92537251915903, + 24.623557981290414 + ] + }, + "properties": { + "id": "meter-11918", + "maker": "Maker I", + "model": "Model 11918", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.793215365671465, + 27.706915903439544 + ] + }, + "properties": { + "id": "meter-11919", + "maker": "Maker D", + "model": "Model 11919", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.28213058010926, + 18.317953727195043 + ] + }, + "properties": { + "id": "meter-11920", + "maker": "Maker H", + "model": "Model 11920", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.280447216636176, + 21.673230190363007 + ] + }, + "properties": { + "id": "meter-11921", + "maker": "Maker C", + "model": "Model 11921", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.122938797918636, + 26.153264388434216 + ] + }, + "properties": { + "id": "meter-11922", + "maker": "Maker F", + "model": "Model 11922", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.44952600575144, + 19.96807724086366 + ] + }, + "properties": { + "id": "meter-11923", + "maker": "Maker A", + "model": "Model 11923", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.71805149541685, + 26.428185857011826 + ] + }, + "properties": { + "id": "meter-11924", + "maker": "Maker H", + "model": "Model 11924", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.67744405172011, + 18.424780552591315 + ] + }, + "properties": { + "id": "meter-11925", + "maker": "Maker C", + "model": "Model 11925", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1130878022762, + 17.49228481991361 + ] + }, + "properties": { + "id": "meter-11926", + "maker": "Maker I", + "model": "Model 11926", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.941304672321905, + 26.42279141648418 + ] + }, + "properties": { + "id": "meter-11927", + "maker": "Maker E", + "model": "Model 11927", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.59521466557125, + 24.543687145589114 + ] + }, + "properties": { + "id": "meter-11928", + "maker": "Maker F", + "model": "Model 11928", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.755193244379846, + 25.121363090361715 + ] + }, + "properties": { + "id": "meter-11929", + "maker": "Maker A", + "model": "Model 11929", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.519825776168986, + 18.271874167071665 + ] + }, + "properties": { + "id": "meter-11930", + "maker": "Maker A", + "model": "Model 11930", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.97510397877892, + 18.259358161568404 + ] + }, + "properties": { + "id": "meter-11931", + "maker": "Maker J", + "model": "Model 11931", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.657317729324056, + 19.95547910837166 + ] + }, + "properties": { + "id": "meter-11932", + "maker": "Maker A", + "model": "Model 11932", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11174360492633, + 26.22829066298355 + ] + }, + "properties": { + "id": "meter-11933", + "maker": "Maker D", + "model": "Model 11933", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.095862772953616, + 26.36674010744251 + ] + }, + "properties": { + "id": "meter-11934", + "maker": "Maker H", + "model": "Model 11934", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.65881259769232, + 18.323320588367444 + ] + }, + "properties": { + "id": "meter-11935", + "maker": "Maker F", + "model": "Model 11935", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47012435733244, + 20.001578514350804 + ] + }, + "properties": { + "id": "meter-11936", + "maker": "Maker H", + "model": "Model 11936", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.684796046724955, + 27.502933959664155 + ] + }, + "properties": { + "id": "meter-11937", + "maker": "Maker D", + "model": "Model 11937", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94128454717957, + 26.66639288547592 + ] + }, + "properties": { + "id": "meter-11938", + "maker": "Maker D", + "model": "Model 11938", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.02131335134922, + 30.87996162968635 + ] + }, + "properties": { + "id": "meter-11939", + "maker": "Maker D", + "model": "Model 11939", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52459050392076, + 18.43250225431517 + ] + }, + "properties": { + "id": "meter-11940", + "maker": "Maker H", + "model": "Model 11940", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.22339425610078, + 21.482476478916336 + ] + }, + "properties": { + "id": "meter-11941", + "maker": "Maker E", + "model": "Model 11941", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.47347240109797, + 21.401260105616753 + ] + }, + "properties": { + "id": "meter-11942", + "maker": "Maker G", + "model": "Model 11942", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.46346243965018, + 18.451583938669465 + ] + }, + "properties": { + "id": "meter-11943", + "maker": "Maker C", + "model": "Model 11943", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.34096279301137, + 29.798688828067352 + ] + }, + "properties": { + "id": "meter-11944", + "maker": "Maker I", + "model": "Model 11944", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93016118550468, + 26.738740480702415 + ] + }, + "properties": { + "id": "meter-11945", + "maker": "Maker I", + "model": "Model 11945", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.47157971696744, + 24.648860813884315 + ] + }, + "properties": { + "id": "meter-11946", + "maker": "Maker G", + "model": "Model 11946", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59046382058126, + 25.34939654980884 + ] + }, + "properties": { + "id": "meter-11947", + "maker": "Maker I", + "model": "Model 11947", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.73595588649647, + 24.68292779961378 + ] + }, + "properties": { + "id": "meter-11948", + "maker": "Maker B", + "model": "Model 11948", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.4693555971367, + 18.003303378113706 + ] + }, + "properties": { + "id": "meter-11949", + "maker": "Maker I", + "model": "Model 11949", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.29284828567612, + 21.548288306840398 + ] + }, + "properties": { + "id": "meter-11950", + "maker": "Maker B", + "model": "Model 11950", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.447123640647305, + 18.24886730405793 + ] + }, + "properties": { + "id": "meter-11951", + "maker": "Maker G", + "model": "Model 11951", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.96908466284112, + 24.162174613880726 + ] + }, + "properties": { + "id": "meter-11952", + "maker": "Maker E", + "model": "Model 11952", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65441933575948, + 27.808335114530976 + ] + }, + "properties": { + "id": "meter-11953", + "maker": "Maker J", + "model": "Model 11953", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.077557183322874, + 24.22376015998681 + ] + }, + "properties": { + "id": "meter-11954", + "maker": "Maker G", + "model": "Model 11954", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.135051558490346, + 21.553012825428898 + ] + }, + "properties": { + "id": "meter-11955", + "maker": "Maker A", + "model": "Model 11955", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97936713772721, + 26.470922136735567 + ] + }, + "properties": { + "id": "meter-11956", + "maker": "Maker F", + "model": "Model 11956", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.164337596412395, + 26.224558431834 + ] + }, + "properties": { + "id": "meter-11957", + "maker": "Maker I", + "model": "Model 11957", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.54085269415297, + 27.252900447508917 + ] + }, + "properties": { + "id": "meter-11958", + "maker": "Maker C", + "model": "Model 11958", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.704238686947164, + 28.211670396850838 + ] + }, + "properties": { + "id": "meter-11959", + "maker": "Maker I", + "model": "Model 11959", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.804882525423956, + 24.627956637097913 + ] + }, + "properties": { + "id": "meter-11960", + "maker": "Maker G", + "model": "Model 11960", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13672419742405, + 26.09283057430297 + ] + }, + "properties": { + "id": "meter-11961", + "maker": "Maker J", + "model": "Model 11961", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.69816291359626, + 21.59291013403998 + ] + }, + "properties": { + "id": "meter-11962", + "maker": "Maker C", + "model": "Model 11962", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.16201880029463, + 17.488571455997366 + ] + }, + "properties": { + "id": "meter-11963", + "maker": "Maker G", + "model": "Model 11963", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.401072449700536, + 24.454033936082666 + ] + }, + "properties": { + "id": "meter-11964", + "maker": "Maker H", + "model": "Model 11964", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.566416406044624, + 24.872510206537154 + ] + }, + "properties": { + "id": "meter-11965", + "maker": "Maker G", + "model": "Model 11965", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.051697676710596, + 17.352662357480263 + ] + }, + "properties": { + "id": "meter-11966", + "maker": "Maker D", + "model": "Model 11966", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.49086478270684, + 19.930231947988148 + ] + }, + "properties": { + "id": "meter-11967", + "maker": "Maker I", + "model": "Model 11967", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.7847172111583, + 26.388770571035828 + ] + }, + "properties": { + "id": "meter-11968", + "maker": "Maker A", + "model": "Model 11968", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.17591449064758, + 21.38958618153485 + ] + }, + "properties": { + "id": "meter-11969", + "maker": "Maker D", + "model": "Model 11969", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.188160698817946, + 24.110012448011208 + ] + }, + "properties": { + "id": "meter-11970", + "maker": "Maker F", + "model": "Model 11970", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.62553095163395, + 24.530284877281044 + ] + }, + "properties": { + "id": "meter-11971", + "maker": "Maker G", + "model": "Model 11971", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.196743168275525, + 30.11319825251052 + ] + }, + "properties": { + "id": "meter-11972", + "maker": "Maker E", + "model": "Model 11972", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99584516165063, + 26.452709383005104 + ] + }, + "properties": { + "id": "meter-11973", + "maker": "Maker E", + "model": "Model 11973", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61923987495286, + 24.63879956806656 + ] + }, + "properties": { + "id": "meter-11974", + "maker": "Maker G", + "model": "Model 11974", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.22704889287884, + 29.96313001578407 + ] + }, + "properties": { + "id": "meter-11975", + "maker": "Maker C", + "model": "Model 11975", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.31577551079824, + 17.421609077849215 + ] + }, + "properties": { + "id": "meter-11976", + "maker": "Maker I", + "model": "Model 11976", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97081338185121, + 17.478541439802125 + ] + }, + "properties": { + "id": "meter-11977", + "maker": "Maker E", + "model": "Model 11977", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.35770205392897, + 20.23854649328078 + ] + }, + "properties": { + "id": "meter-11978", + "maker": "Maker G", + "model": "Model 11978", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.69715341264965, + 24.51575304787459 + ] + }, + "properties": { + "id": "meter-11979", + "maker": "Maker F", + "model": "Model 11979", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.667814827027044, + 27.582972251705698 + ] + }, + "properties": { + "id": "meter-11980", + "maker": "Maker G", + "model": "Model 11980", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.85888506701764, + 27.393035821970088 + ] + }, + "properties": { + "id": "meter-11981", + "maker": "Maker H", + "model": "Model 11981", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.86430222867998, + 27.59962424588059 + ] + }, + "properties": { + "id": "meter-11982", + "maker": "Maker D", + "model": "Model 11982", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.6120847157161, + 18.18209228470854 + ] + }, + "properties": { + "id": "meter-11983", + "maker": "Maker C", + "model": "Model 11983", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10708837132012, + 26.406198689798416 + ] + }, + "properties": { + "id": "meter-11984", + "maker": "Maker A", + "model": "Model 11984", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20639952773729, + 29.969212457606588 + ] + }, + "properties": { + "id": "meter-11985", + "maker": "Maker D", + "model": "Model 11985", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.84233101683, + 28.319975021766584 + ] + }, + "properties": { + "id": "meter-11986", + "maker": "Maker J", + "model": "Model 11986", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.00112001937503, + 21.46003721948728 + ] + }, + "properties": { + "id": "meter-11987", + "maker": "Maker A", + "model": "Model 11987", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.04121067597945, + 30.976678272459232 + ] + }, + "properties": { + "id": "meter-11988", + "maker": "Maker H", + "model": "Model 11988", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01376054128904, + 26.510118599583514 + ] + }, + "properties": { + "id": "meter-11989", + "maker": "Maker J", + "model": "Model 11989", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.187338126866216, + 17.508145055913417 + ] + }, + "properties": { + "id": "meter-11990", + "maker": "Maker J", + "model": "Model 11990", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.872708578280125, + 26.581473589894202 + ] + }, + "properties": { + "id": "meter-11991", + "maker": "Maker A", + "model": "Model 11991", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.943059166189556, + 26.50514853892139 + ] + }, + "properties": { + "id": "meter-11992", + "maker": "Maker F", + "model": "Model 11992", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.16620549285399, + 26.307116228115987 + ] + }, + "properties": { + "id": "meter-11993", + "maker": "Maker I", + "model": "Model 11993", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.094899372217746, + 26.387666437890786 + ] + }, + "properties": { + "id": "meter-11994", + "maker": "Maker E", + "model": "Model 11994", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.12574205603762, + 29.896483438900347 + ] + }, + "properties": { + "id": "meter-11995", + "maker": "Maker B", + "model": "Model 11995", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.2056577704313, + 29.96935754925734 + ] + }, + "properties": { + "id": "meter-11996", + "maker": "Maker D", + "model": "Model 11996", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.42849751943532, + 29.881911598833415 + ] + }, + "properties": { + "id": "meter-11997", + "maker": "Maker A", + "model": "Model 11997", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.05382599147262, + 30.070707334449438 + ] + }, + "properties": { + "id": "meter-11998", + "maker": "Maker B", + "model": "Model 11998", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.766316316803184, + 21.260056460308498 + ] + }, + "properties": { + "id": "meter-11999", + "maker": "Maker D", + "model": "Model 11999", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.80482284236896, + 24.486872557484404 + ] + }, + "properties": { + "id": "meter-12000", + "maker": "Maker E", + "model": "Model 12000", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.8032401252042, + 28.98203706499395 + ] + }, + "properties": { + "id": "meter-12001", + "maker": "Maker H", + "model": "Model 12001", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.307463041549504, + 20.2726151077096 + ] + }, + "properties": { + "id": "meter-12002", + "maker": "Maker C", + "model": "Model 12002", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.527852883148455, + 22.83649682011796 + ] + }, + "properties": { + "id": "meter-12003", + "maker": "Maker E", + "model": "Model 12003", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.98681742209692, + 22.543234724299175 + ] + }, + "properties": { + "id": "meter-12004", + "maker": "Maker A", + "model": "Model 12004", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.927596704914755, + 18.730458080599387 + ] + }, + "properties": { + "id": "meter-12005", + "maker": "Maker J", + "model": "Model 12005", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.171911038941126, + 27.49295649176695 + ] + }, + "properties": { + "id": "meter-12006", + "maker": "Maker H", + "model": "Model 12006", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.54726748339929, + 24.77540331340381 + ] + }, + "properties": { + "id": "meter-12007", + "maker": "Maker D", + "model": "Model 12007", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.50327342447145, + 24.337350288555374 + ] + }, + "properties": { + "id": "meter-12008", + "maker": "Maker H", + "model": "Model 12008", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.01871404949582, + 27.127390482025934 + ] + }, + "properties": { + "id": "meter-12009", + "maker": "Maker J", + "model": "Model 12009", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.52862892059964, + 31.21817411446341 + ] + }, + "properties": { + "id": "meter-12010", + "maker": "Maker C", + "model": "Model 12010", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.018517191936965, + 24.828625040914545 + ] + }, + "properties": { + "id": "meter-12011", + "maker": "Maker E", + "model": "Model 12011", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.169367342780156, + 22.393082836994026 + ] + }, + "properties": { + "id": "meter-12012", + "maker": "Maker I", + "model": "Model 12012", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.89570812871605, + 25.58803247187387 + ] + }, + "properties": { + "id": "meter-12013", + "maker": "Maker B", + "model": "Model 12013", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.03909578324701, + 29.59412106497468 + ] + }, + "properties": { + "id": "meter-12014", + "maker": "Maker C", + "model": "Model 12014", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.523524290804694, + 24.861315006540302 + ] + }, + "properties": { + "id": "meter-12015", + "maker": "Maker J", + "model": "Model 12015", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.94071747895633, + 20.81743871484573 + ] + }, + "properties": { + "id": "meter-12016", + "maker": "Maker A", + "model": "Model 12016", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71801148974392, + 17.33412209722216 + ] + }, + "properties": { + "id": "meter-12017", + "maker": "Maker A", + "model": "Model 12017", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.38942404762278, + 23.989325435294056 + ] + }, + "properties": { + "id": "meter-12018", + "maker": "Maker B", + "model": "Model 12018", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.6281721957713, + 20.56920145001838 + ] + }, + "properties": { + "id": "meter-12019", + "maker": "Maker J", + "model": "Model 12019", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.730786730711856, + 26.59741800640421 + ] + }, + "properties": { + "id": "meter-12020", + "maker": "Maker E", + "model": "Model 12020", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.875164612459905, + 25.950251555915138 + ] + }, + "properties": { + "id": "meter-12021", + "maker": "Maker H", + "model": "Model 12021", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.831078944410464, + 22.491111700898273 + ] + }, + "properties": { + "id": "meter-12022", + "maker": "Maker H", + "model": "Model 12022", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.92112203981907, + 19.710881460478525 + ] + }, + "properties": { + "id": "meter-12023", + "maker": "Maker F", + "model": "Model 12023", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.23431754624737, + 19.084802545165708 + ] + }, + "properties": { + "id": "meter-12024", + "maker": "Maker H", + "model": "Model 12024", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.06405339607125, + 17.15962244830665 + ] + }, + "properties": { + "id": "meter-12025", + "maker": "Maker C", + "model": "Model 12025", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.70994186881251, + 23.288762668924395 + ] + }, + "properties": { + "id": "meter-12026", + "maker": "Maker G", + "model": "Model 12026", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.981460032332485, + 22.459778920011644 + ] + }, + "properties": { + "id": "meter-12027", + "maker": "Maker C", + "model": "Model 12027", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.132421683902486, + 24.899998885778913 + ] + }, + "properties": { + "id": "meter-12028", + "maker": "Maker H", + "model": "Model 12028", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.01666933776914, + 25.54155262852393 + ] + }, + "properties": { + "id": "meter-12029", + "maker": "Maker H", + "model": "Model 12029", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.37866897705417, + 21.220179745522657 + ] + }, + "properties": { + "id": "meter-12030", + "maker": "Maker E", + "model": "Model 12030", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.52453440996996, + 21.68617948697168 + ] + }, + "properties": { + "id": "meter-12031", + "maker": "Maker J", + "model": "Model 12031", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.54828505470806, + 24.41321992979408 + ] + }, + "properties": { + "id": "meter-12032", + "maker": "Maker B", + "model": "Model 12032", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.33542184393835, + 23.057318530951207 + ] + }, + "properties": { + "id": "meter-12033", + "maker": "Maker D", + "model": "Model 12033", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67265247053271, + 24.860782650963486 + ] + }, + "properties": { + "id": "meter-12034", + "maker": "Maker J", + "model": "Model 12034", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.548226419352396, + 30.042395947660484 + ] + }, + "properties": { + "id": "meter-12035", + "maker": "Maker C", + "model": "Model 12035", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.77285467047206, + 24.386655209592327 + ] + }, + "properties": { + "id": "meter-12036", + "maker": "Maker F", + "model": "Model 12036", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.31353395945542, + 21.280985562929068 + ] + }, + "properties": { + "id": "meter-12037", + "maker": "Maker I", + "model": "Model 12037", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.0325811895359, + 22.191293641263343 + ] + }, + "properties": { + "id": "meter-12038", + "maker": "Maker I", + "model": "Model 12038", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.39253128528651, + 19.646283684987722 + ] + }, + "properties": { + "id": "meter-12039", + "maker": "Maker D", + "model": "Model 12039", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.60405824690522, + 18.640717020210456 + ] + }, + "properties": { + "id": "meter-12040", + "maker": "Maker C", + "model": "Model 12040", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.030682990049655, + 27.954729180169757 + ] + }, + "properties": { + "id": "meter-12041", + "maker": "Maker B", + "model": "Model 12041", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.71094333272835, + 26.074781681934326 + ] + }, + "properties": { + "id": "meter-12042", + "maker": "Maker G", + "model": "Model 12042", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.65381249653953, + 19.697002888400846 + ] + }, + "properties": { + "id": "meter-12043", + "maker": "Maker F", + "model": "Model 12043", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.065857599616486, + 25.61930130389543 + ] + }, + "properties": { + "id": "meter-12044", + "maker": "Maker I", + "model": "Model 12044", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.45561557070989, + 26.406393275102722 + ] + }, + "properties": { + "id": "meter-12045", + "maker": "Maker C", + "model": "Model 12045", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.07918987022299, + 17.656578421091595 + ] + }, + "properties": { + "id": "meter-12046", + "maker": "Maker F", + "model": "Model 12046", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.21259837163574, + 23.090246387349165 + ] + }, + "properties": { + "id": "meter-12047", + "maker": "Maker B", + "model": "Model 12047", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.006169846914744, + 23.650242701676937 + ] + }, + "properties": { + "id": "meter-12048", + "maker": "Maker G", + "model": "Model 12048", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.81189385765278, + 25.73332375319091 + ] + }, + "properties": { + "id": "meter-12049", + "maker": "Maker F", + "model": "Model 12049", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.16425954258929, + 20.994550841776615 + ] + }, + "properties": { + "id": "meter-12050", + "maker": "Maker I", + "model": "Model 12050", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.50892216328886, + 22.977879301637415 + ] + }, + "properties": { + "id": "meter-12051", + "maker": "Maker D", + "model": "Model 12051", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.07975123663009, + 22.07373778826944 + ] + }, + "properties": { + "id": "meter-12052", + "maker": "Maker I", + "model": "Model 12052", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.471763355688026, + 18.52746984680811 + ] + }, + "properties": { + "id": "meter-12053", + "maker": "Maker A", + "model": "Model 12053", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.516682823912184, + 24.362467527693973 + ] + }, + "properties": { + "id": "meter-12054", + "maker": "Maker F", + "model": "Model 12054", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.771425633941035, + 20.353320642714763 + ] + }, + "properties": { + "id": "meter-12055", + "maker": "Maker H", + "model": "Model 12055", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.9432293981291, + 24.688740483645148 + ] + }, + "properties": { + "id": "meter-12056", + "maker": "Maker H", + "model": "Model 12056", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.40337187486656, + 28.100920431433277 + ] + }, + "properties": { + "id": "meter-12057", + "maker": "Maker D", + "model": "Model 12057", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.96338165007048, + 21.204890854906356 + ] + }, + "properties": { + "id": "meter-12058", + "maker": "Maker E", + "model": "Model 12058", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.37999149927158, + 18.734182397301712 + ] + }, + "properties": { + "id": "meter-12059", + "maker": "Maker G", + "model": "Model 12059", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.383810415992265, + 27.009825808437235 + ] + }, + "properties": { + "id": "meter-12060", + "maker": "Maker A", + "model": "Model 12060", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.87782782438455, + 23.6863536352891 + ] + }, + "properties": { + "id": "meter-12061", + "maker": "Maker D", + "model": "Model 12061", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.22417937815442, + 22.113921884959808 + ] + }, + "properties": { + "id": "meter-12062", + "maker": "Maker B", + "model": "Model 12062", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8507418917115, + 28.248911765733144 + ] + }, + "properties": { + "id": "meter-12063", + "maker": "Maker B", + "model": "Model 12063", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.02982710868857, + 22.236781464584297 + ] + }, + "properties": { + "id": "meter-12064", + "maker": "Maker G", + "model": "Model 12064", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.48708962926273, + 20.738775456193903 + ] + }, + "properties": { + "id": "meter-12065", + "maker": "Maker I", + "model": "Model 12065", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.554922027036696, + 18.622963671904884 + ] + }, + "properties": { + "id": "meter-12066", + "maker": "Maker B", + "model": "Model 12066", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.9116428394469, + 24.560932930122227 + ] + }, + "properties": { + "id": "meter-12067", + "maker": "Maker E", + "model": "Model 12067", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.53948302293615, + 26.739302600796265 + ] + }, + "properties": { + "id": "meter-12068", + "maker": "Maker J", + "model": "Model 12068", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95660628785937, + 31.816762442959792 + ] + }, + "properties": { + "id": "meter-12069", + "maker": "Maker I", + "model": "Model 12069", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.25070862115172, + 28.784479110341188 + ] + }, + "properties": { + "id": "meter-12070", + "maker": "Maker A", + "model": "Model 12070", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.05448712911522, + 29.150122131620016 + ] + }, + "properties": { + "id": "meter-12071", + "maker": "Maker F", + "model": "Model 12071", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.95038960610699, + 29.47657494370808 + ] + }, + "properties": { + "id": "meter-12072", + "maker": "Maker C", + "model": "Model 12072", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.22149243670963, + 23.969432846254758 + ] + }, + "properties": { + "id": "meter-12073", + "maker": "Maker C", + "model": "Model 12073", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.93043493652879, + 26.867963840228796 + ] + }, + "properties": { + "id": "meter-12074", + "maker": "Maker A", + "model": "Model 12074", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.002954839623065, + 19.68873460984307 + ] + }, + "properties": { + "id": "meter-12075", + "maker": "Maker F", + "model": "Model 12075", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.84015219790922, + 30.083114006941663 + ] + }, + "properties": { + "id": "meter-12076", + "maker": "Maker I", + "model": "Model 12076", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.85928774524682, + 19.198964976581244 + ] + }, + "properties": { + "id": "meter-12077", + "maker": "Maker B", + "model": "Model 12077", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.47091035743649, + 20.9142012936083 + ] + }, + "properties": { + "id": "meter-12078", + "maker": "Maker I", + "model": "Model 12078", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98856964153078, + 29.31040501352976 + ] + }, + "properties": { + "id": "meter-12079", + "maker": "Maker H", + "model": "Model 12079", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.967391538517305, + 22.057086587722566 + ] + }, + "properties": { + "id": "meter-12080", + "maker": "Maker J", + "model": "Model 12080", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.621552149591736, + 19.11126339094947 + ] + }, + "properties": { + "id": "meter-12081", + "maker": "Maker J", + "model": "Model 12081", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.49115675544945, + 19.68807020274332 + ] + }, + "properties": { + "id": "meter-12082", + "maker": "Maker B", + "model": "Model 12082", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.43971360451249, + 28.173835834109344 + ] + }, + "properties": { + "id": "meter-12083", + "maker": "Maker F", + "model": "Model 12083", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65244929799351, + 25.355981063829304 + ] + }, + "properties": { + "id": "meter-12084", + "maker": "Maker E", + "model": "Model 12084", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.336039507258334, + 22.741693924211223 + ] + }, + "properties": { + "id": "meter-12085", + "maker": "Maker E", + "model": "Model 12085", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.88103545992515, + 24.656931270329842 + ] + }, + "properties": { + "id": "meter-12086", + "maker": "Maker G", + "model": "Model 12086", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.41934411681122, + 27.91844253081286 + ] + }, + "properties": { + "id": "meter-12087", + "maker": "Maker C", + "model": "Model 12087", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.31414947994345, + 21.117550340846098 + ] + }, + "properties": { + "id": "meter-12088", + "maker": "Maker E", + "model": "Model 12088", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.319512195214806, + 28.17843482837885 + ] + }, + "properties": { + "id": "meter-12089", + "maker": "Maker D", + "model": "Model 12089", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.70730267093552, + 23.3602008366332 + ] + }, + "properties": { + "id": "meter-12090", + "maker": "Maker J", + "model": "Model 12090", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.21056289576026, + 29.569497358838156 + ] + }, + "properties": { + "id": "meter-12091", + "maker": "Maker J", + "model": "Model 12091", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.660939987762966, + 21.964547185938063 + ] + }, + "properties": { + "id": "meter-12092", + "maker": "Maker J", + "model": "Model 12092", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93120842480984, + 23.067751370671395 + ] + }, + "properties": { + "id": "meter-12093", + "maker": "Maker A", + "model": "Model 12093", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.170051582137276, + 19.66882190890983 + ] + }, + "properties": { + "id": "meter-12094", + "maker": "Maker H", + "model": "Model 12094", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.898966013375514, + 28.302099847163376 + ] + }, + "properties": { + "id": "meter-12095", + "maker": "Maker C", + "model": "Model 12095", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.27976682674021, + 17.54589696129186 + ] + }, + "properties": { + "id": "meter-12096", + "maker": "Maker A", + "model": "Model 12096", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.72215702850409, + 24.61268601803775 + ] + }, + "properties": { + "id": "meter-12097", + "maker": "Maker J", + "model": "Model 12097", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66203237596894, + 22.412139809735734 + ] + }, + "properties": { + "id": "meter-12098", + "maker": "Maker D", + "model": "Model 12098", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.292628109996535, + 26.227607990635114 + ] + }, + "properties": { + "id": "meter-12099", + "maker": "Maker F", + "model": "Model 12099", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.415700811121944, + 18.236095840567693 + ] + }, + "properties": { + "id": "meter-12100", + "maker": "Maker I", + "model": "Model 12100", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77629787895309, + 22.74436107781483 + ] + }, + "properties": { + "id": "meter-12101", + "maker": "Maker C", + "model": "Model 12101", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.46399586960826, + 20.956668551291123 + ] + }, + "properties": { + "id": "meter-12102", + "maker": "Maker J", + "model": "Model 12102", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.14129554262588, + 24.113736415867074 + ] + }, + "properties": { + "id": "meter-12103", + "maker": "Maker A", + "model": "Model 12103", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.20931557887773, + 22.635342581767016 + ] + }, + "properties": { + "id": "meter-12104", + "maker": "Maker J", + "model": "Model 12104", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.042931466868225, + 25.902457276665416 + ] + }, + "properties": { + "id": "meter-12105", + "maker": "Maker J", + "model": "Model 12105", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.62792757870619, + 29.10485622799715 + ] + }, + "properties": { + "id": "meter-12106", + "maker": "Maker J", + "model": "Model 12106", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.67359666049052, + 27.102147355374264 + ] + }, + "properties": { + "id": "meter-12107", + "maker": "Maker E", + "model": "Model 12107", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.12888394250032, + 27.970183851699826 + ] + }, + "properties": { + "id": "meter-12108", + "maker": "Maker G", + "model": "Model 12108", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.395610617194635, + 27.941121442527727 + ] + }, + "properties": { + "id": "meter-12109", + "maker": "Maker B", + "model": "Model 12109", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.759317027174674, + 28.13416927352192 + ] + }, + "properties": { + "id": "meter-12110", + "maker": "Maker G", + "model": "Model 12110", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.63461110540259, + 24.19991126319779 + ] + }, + "properties": { + "id": "meter-12111", + "maker": "Maker G", + "model": "Model 12111", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.19770396288632, + 28.456399577180846 + ] + }, + "properties": { + "id": "meter-12112", + "maker": "Maker I", + "model": "Model 12112", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.69653909784797, + 28.134247399235825 + ] + }, + "properties": { + "id": "meter-12113", + "maker": "Maker I", + "model": "Model 12113", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.43094117143635, + 18.739980899614448 + ] + }, + "properties": { + "id": "meter-12114", + "maker": "Maker H", + "model": "Model 12114", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.74799308977334, + 27.304753995931527 + ] + }, + "properties": { + "id": "meter-12115", + "maker": "Maker D", + "model": "Model 12115", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.710144960897416, + 20.68241072926517 + ] + }, + "properties": { + "id": "meter-12116", + "maker": "Maker J", + "model": "Model 12116", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.72765803648154, + 28.93180079778392 + ] + }, + "properties": { + "id": "meter-12117", + "maker": "Maker E", + "model": "Model 12117", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.551703687538684, + 28.64475689935032 + ] + }, + "properties": { + "id": "meter-12118", + "maker": "Maker C", + "model": "Model 12118", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.55736464053261, + 27.933207073494522 + ] + }, + "properties": { + "id": "meter-12119", + "maker": "Maker B", + "model": "Model 12119", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.34220434122727, + 27.821527739170257 + ] + }, + "properties": { + "id": "meter-12120", + "maker": "Maker H", + "model": "Model 12120", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.93141486014321, + 26.595157986867047 + ] + }, + "properties": { + "id": "meter-12121", + "maker": "Maker B", + "model": "Model 12121", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.284650171891755, + 18.142956806714796 + ] + }, + "properties": { + "id": "meter-12122", + "maker": "Maker I", + "model": "Model 12122", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.082082075015336, + 24.54394533355444 + ] + }, + "properties": { + "id": "meter-12123", + "maker": "Maker C", + "model": "Model 12123", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.00826625992822, + 27.494038004058567 + ] + }, + "properties": { + "id": "meter-12124", + "maker": "Maker F", + "model": "Model 12124", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.526455049837644, + 21.23523713646695 + ] + }, + "properties": { + "id": "meter-12125", + "maker": "Maker B", + "model": "Model 12125", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.097815517815306, + 21.757456385918537 + ] + }, + "properties": { + "id": "meter-12126", + "maker": "Maker G", + "model": "Model 12126", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.10904020379559, + 23.876060157156353 + ] + }, + "properties": { + "id": "meter-12127", + "maker": "Maker B", + "model": "Model 12127", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.748413955711825, + 21.891844527489667 + ] + }, + "properties": { + "id": "meter-12128", + "maker": "Maker A", + "model": "Model 12128", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.4613350476039, + 22.117690352929948 + ] + }, + "properties": { + "id": "meter-12129", + "maker": "Maker D", + "model": "Model 12129", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.95179110721381, + 27.66695547065994 + ] + }, + "properties": { + "id": "meter-12130", + "maker": "Maker J", + "model": "Model 12130", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.22358194284688, + 28.33653194770413 + ] + }, + "properties": { + "id": "meter-12131", + "maker": "Maker D", + "model": "Model 12131", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.62341666120208, + 23.48530710075221 + ] + }, + "properties": { + "id": "meter-12132", + "maker": "Maker I", + "model": "Model 12132", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.05417491170317, + 23.941790375749424 + ] + }, + "properties": { + "id": "meter-12133", + "maker": "Maker D", + "model": "Model 12133", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.036468009366914, + 22.3124929047445 + ] + }, + "properties": { + "id": "meter-12134", + "maker": "Maker J", + "model": "Model 12134", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.20681384481849, + 20.560171184042048 + ] + }, + "properties": { + "id": "meter-12135", + "maker": "Maker I", + "model": "Model 12135", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.238172424281885, + 21.448268107862052 + ] + }, + "properties": { + "id": "meter-12136", + "maker": "Maker F", + "model": "Model 12136", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.499519061767685, + 19.527756666822157 + ] + }, + "properties": { + "id": "meter-12137", + "maker": "Maker F", + "model": "Model 12137", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.671744039970534, + 25.183741069507526 + ] + }, + "properties": { + "id": "meter-12138", + "maker": "Maker J", + "model": "Model 12138", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.98806456411305, + 23.38561022916187 + ] + }, + "properties": { + "id": "meter-12139", + "maker": "Maker B", + "model": "Model 12139", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.83111988335601, + 26.069578661508654 + ] + }, + "properties": { + "id": "meter-12140", + "maker": "Maker I", + "model": "Model 12140", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.70090074842568, + 23.250818942315544 + ] + }, + "properties": { + "id": "meter-12141", + "maker": "Maker G", + "model": "Model 12141", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.67701960487734, + 27.42557154184446 + ] + }, + "properties": { + "id": "meter-12142", + "maker": "Maker E", + "model": "Model 12142", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.09028440258922, + 23.134923468776364 + ] + }, + "properties": { + "id": "meter-12143", + "maker": "Maker D", + "model": "Model 12143", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.38530748269223, + 21.28510469632233 + ] + }, + "properties": { + "id": "meter-12144", + "maker": "Maker A", + "model": "Model 12144", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.60100150574817, + 20.423538420758543 + ] + }, + "properties": { + "id": "meter-12145", + "maker": "Maker F", + "model": "Model 12145", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.52659223512091, + 26.060110911370828 + ] + }, + "properties": { + "id": "meter-12146", + "maker": "Maker D", + "model": "Model 12146", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.334920709819755, + 20.0772956965232 + ] + }, + "properties": { + "id": "meter-12147", + "maker": "Maker I", + "model": "Model 12147", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.77301597377545, + 23.89130295027579 + ] + }, + "properties": { + "id": "meter-12148", + "maker": "Maker F", + "model": "Model 12148", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.585200272319675, + 27.773171917610902 + ] + }, + "properties": { + "id": "meter-12149", + "maker": "Maker F", + "model": "Model 12149", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.4753631765748, + 20.208068306167753 + ] + }, + "properties": { + "id": "meter-12150", + "maker": "Maker E", + "model": "Model 12150", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.42362274522489, + 20.81476680986681 + ] + }, + "properties": { + "id": "meter-12151", + "maker": "Maker I", + "model": "Model 12151", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.288855624029786, + 23.183004938336232 + ] + }, + "properties": { + "id": "meter-12152", + "maker": "Maker H", + "model": "Model 12152", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.61679403285881, + 26.739680393502617 + ] + }, + "properties": { + "id": "meter-12153", + "maker": "Maker G", + "model": "Model 12153", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.856622161575714, + 22.52989094495904 + ] + }, + "properties": { + "id": "meter-12154", + "maker": "Maker G", + "model": "Model 12154", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.71280980937284, + 22.49509346700819 + ] + }, + "properties": { + "id": "meter-12155", + "maker": "Maker B", + "model": "Model 12155", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.765926482008204, + 21.26381445898457 + ] + }, + "properties": { + "id": "meter-12156", + "maker": "Maker G", + "model": "Model 12156", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.46099752932132, + 25.55250617275714 + ] + }, + "properties": { + "id": "meter-12157", + "maker": "Maker E", + "model": "Model 12157", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.02514758642012, + 22.232575089049917 + ] + }, + "properties": { + "id": "meter-12158", + "maker": "Maker A", + "model": "Model 12158", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.45142663467779, + 27.644445875889087 + ] + }, + "properties": { + "id": "meter-12159", + "maker": "Maker D", + "model": "Model 12159", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.00670497736053, + 18.081269298423347 + ] + }, + "properties": { + "id": "meter-12160", + "maker": "Maker H", + "model": "Model 12160", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.754413372277725, + 24.607496811914864 + ] + }, + "properties": { + "id": "meter-12161", + "maker": "Maker J", + "model": "Model 12161", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.33432905864795, + 20.60066939034557 + ] + }, + "properties": { + "id": "meter-12162", + "maker": "Maker J", + "model": "Model 12162", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.4398234725246, + 26.613331196264248 + ] + }, + "properties": { + "id": "meter-12163", + "maker": "Maker E", + "model": "Model 12163", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.45556889896494, + 28.786498268957338 + ] + }, + "properties": { + "id": "meter-12164", + "maker": "Maker B", + "model": "Model 12164", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.84079609198845, + 28.940401816896582 + ] + }, + "properties": { + "id": "meter-12165", + "maker": "Maker H", + "model": "Model 12165", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.23390386025132, + 25.48908953130495 + ] + }, + "properties": { + "id": "meter-12166", + "maker": "Maker E", + "model": "Model 12166", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.440620732836436, + 18.242201039738237 + ] + }, + "properties": { + "id": "meter-12167", + "maker": "Maker I", + "model": "Model 12167", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.98462437244819, + 28.842398747281166 + ] + }, + "properties": { + "id": "meter-12168", + "maker": "Maker J", + "model": "Model 12168", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.40118589219609, + 28.24390024014157 + ] + }, + "properties": { + "id": "meter-12169", + "maker": "Maker H", + "model": "Model 12169", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.86218305838584, + 24.490987732772243 + ] + }, + "properties": { + "id": "meter-12170", + "maker": "Maker A", + "model": "Model 12170", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.99324751161734, + 28.31528356445346 + ] + }, + "properties": { + "id": "meter-12171", + "maker": "Maker J", + "model": "Model 12171", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.231148209207525, + 27.35968736431794 + ] + }, + "properties": { + "id": "meter-12172", + "maker": "Maker I", + "model": "Model 12172", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.68713637568566, + 23.940521529009853 + ] + }, + "properties": { + "id": "meter-12173", + "maker": "Maker B", + "model": "Model 12173", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.33466143697201, + 18.79382156506645 + ] + }, + "properties": { + "id": "meter-12174", + "maker": "Maker D", + "model": "Model 12174", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.2828796172665, + 29.626813381744803 + ] + }, + "properties": { + "id": "meter-12175", + "maker": "Maker C", + "model": "Model 12175", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.32818836725344, + 26.4066809455647 + ] + }, + "properties": { + "id": "meter-12176", + "maker": "Maker G", + "model": "Model 12176", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.42759928473033, + 22.998057326209633 + ] + }, + "properties": { + "id": "meter-12177", + "maker": "Maker G", + "model": "Model 12177", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.89567028432545, + 28.830233241863674 + ] + }, + "properties": { + "id": "meter-12178", + "maker": "Maker C", + "model": "Model 12178", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.763633697600554, + 21.4730747661175 + ] + }, + "properties": { + "id": "meter-12179", + "maker": "Maker D", + "model": "Model 12179", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.492784286695155, + 22.531622144582578 + ] + }, + "properties": { + "id": "meter-12180", + "maker": "Maker J", + "model": "Model 12180", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.56810108372057, + 20.219491136290017 + ] + }, + "properties": { + "id": "meter-12181", + "maker": "Maker C", + "model": "Model 12181", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.824354202666186, + 23.847264470543706 + ] + }, + "properties": { + "id": "meter-12182", + "maker": "Maker G", + "model": "Model 12182", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.612976059465126, + 20.728091627568173 + ] + }, + "properties": { + "id": "meter-12183", + "maker": "Maker E", + "model": "Model 12183", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.45817540683707, + 21.19005805003273 + ] + }, + "properties": { + "id": "meter-12184", + "maker": "Maker D", + "model": "Model 12184", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.91379607085784, + 19.50004271406646 + ] + }, + "properties": { + "id": "meter-12185", + "maker": "Maker B", + "model": "Model 12185", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.08058239366607, + 19.351895626783595 + ] + }, + "properties": { + "id": "meter-12186", + "maker": "Maker E", + "model": "Model 12186", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.019253934957376, + 20.36053967349202 + ] + }, + "properties": { + "id": "meter-12187", + "maker": "Maker J", + "model": "Model 12187", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.51994850265183, + 23.078927998017157 + ] + }, + "properties": { + "id": "meter-12188", + "maker": "Maker J", + "model": "Model 12188", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.71829771305689, + 19.799630253009568 + ] + }, + "properties": { + "id": "meter-12189", + "maker": "Maker E", + "model": "Model 12189", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.4129566543986, + 20.992010836545774 + ] + }, + "properties": { + "id": "meter-12190", + "maker": "Maker J", + "model": "Model 12190", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.5506407708492, + 27.813916047011094 + ] + }, + "properties": { + "id": "meter-12191", + "maker": "Maker B", + "model": "Model 12191", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.90361281378874, + 21.573223588415964 + ] + }, + "properties": { + "id": "meter-12192", + "maker": "Maker H", + "model": "Model 12192", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.55583480765584, + 26.234652930446238 + ] + }, + "properties": { + "id": "meter-12193", + "maker": "Maker H", + "model": "Model 12193", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.9593002285006, + 23.61861297555428 + ] + }, + "properties": { + "id": "meter-12194", + "maker": "Maker I", + "model": "Model 12194", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.19837565643675, + 18.284236911710188 + ] + }, + "properties": { + "id": "meter-12195", + "maker": "Maker C", + "model": "Model 12195", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.446759083301224, + 19.984288049303338 + ] + }, + "properties": { + "id": "meter-12196", + "maker": "Maker A", + "model": "Model 12196", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.505515657168424, + 21.868837803340064 + ] + }, + "properties": { + "id": "meter-12197", + "maker": "Maker F", + "model": "Model 12197", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.544758351535485, + 26.285552321075883 + ] + }, + "properties": { + "id": "meter-12198", + "maker": "Maker D", + "model": "Model 12198", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.64626905006551, + 18.878794228187186 + ] + }, + "properties": { + "id": "meter-12199", + "maker": "Maker B", + "model": "Model 12199", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.5507294582649, + 29.890279489421296 + ] + }, + "properties": { + "id": "meter-12200", + "maker": "Maker G", + "model": "Model 12200", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.56521885054208, + 18.386075867114283 + ] + }, + "properties": { + "id": "meter-12201", + "maker": "Maker J", + "model": "Model 12201", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.407669965181555, + 28.755269906075867 + ] + }, + "properties": { + "id": "meter-12202", + "maker": "Maker I", + "model": "Model 12202", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.7569903115875, + 25.06229818588243 + ] + }, + "properties": { + "id": "meter-12203", + "maker": "Maker A", + "model": "Model 12203", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.701643321875224, + 25.139105159809517 + ] + }, + "properties": { + "id": "meter-12204", + "maker": "Maker C", + "model": "Model 12204", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.34144847503083, + 21.99588893232017 + ] + }, + "properties": { + "id": "meter-12205", + "maker": "Maker A", + "model": "Model 12205", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.57630215907905, + 26.119131975628534 + ] + }, + "properties": { + "id": "meter-12206", + "maker": "Maker B", + "model": "Model 12206", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.77705088670946, + 20.60648505095163 + ] + }, + "properties": { + "id": "meter-12207", + "maker": "Maker C", + "model": "Model 12207", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.050917311935656, + 29.356029175561346 + ] + }, + "properties": { + "id": "meter-12208", + "maker": "Maker C", + "model": "Model 12208", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.862770357683004, + 19.68616218227152 + ] + }, + "properties": { + "id": "meter-12209", + "maker": "Maker H", + "model": "Model 12209", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.41451709450582, + 30.375985107809285 + ] + }, + "properties": { + "id": "meter-12210", + "maker": "Maker J", + "model": "Model 12210", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.459573869443, + 27.648753174388297 + ] + }, + "properties": { + "id": "meter-12211", + "maker": "Maker E", + "model": "Model 12211", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.484021106248875, + 20.2954487893931 + ] + }, + "properties": { + "id": "meter-12212", + "maker": "Maker H", + "model": "Model 12212", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.176720700086015, + 24.68035118961045 + ] + }, + "properties": { + "id": "meter-12213", + "maker": "Maker B", + "model": "Model 12213", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.85652146791367, + 21.812157504751777 + ] + }, + "properties": { + "id": "meter-12214", + "maker": "Maker E", + "model": "Model 12214", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.86056753779896, + 20.678731321741637 + ] + }, + "properties": { + "id": "meter-12215", + "maker": "Maker J", + "model": "Model 12215", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.35337075578979, + 22.906351858969302 + ] + }, + "properties": { + "id": "meter-12216", + "maker": "Maker I", + "model": "Model 12216", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.001691216318534, + 20.422118165713446 + ] + }, + "properties": { + "id": "meter-12217", + "maker": "Maker B", + "model": "Model 12217", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.20080048549756, + 20.898481121058172 + ] + }, + "properties": { + "id": "meter-12218", + "maker": "Maker F", + "model": "Model 12218", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.688488668539776, + 25.088276952351205 + ] + }, + "properties": { + "id": "meter-12219", + "maker": "Maker F", + "model": "Model 12219", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.215485463845056, + 21.18783905107187 + ] + }, + "properties": { + "id": "meter-12220", + "maker": "Maker D", + "model": "Model 12220", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.38408550794909, + 25.873753327786947 + ] + }, + "properties": { + "id": "meter-12221", + "maker": "Maker H", + "model": "Model 12221", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.007522220730614, + 23.298606224443013 + ] + }, + "properties": { + "id": "meter-12222", + "maker": "Maker A", + "model": "Model 12222", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.733952328127465, + 20.941254821622437 + ] + }, + "properties": { + "id": "meter-12223", + "maker": "Maker A", + "model": "Model 12223", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.419470763475246, + 28.77810858104336 + ] + }, + "properties": { + "id": "meter-12224", + "maker": "Maker J", + "model": "Model 12224", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.34334776345994, + 30.706134853695588 + ] + }, + "properties": { + "id": "meter-12225", + "maker": "Maker A", + "model": "Model 12225", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.892517843955304, + 24.860632819460456 + ] + }, + "properties": { + "id": "meter-12226", + "maker": "Maker I", + "model": "Model 12226", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.224180578602, + 24.193126497003988 + ] + }, + "properties": { + "id": "meter-12227", + "maker": "Maker F", + "model": "Model 12227", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.92317273445229, + 21.655786528666376 + ] + }, + "properties": { + "id": "meter-12228", + "maker": "Maker B", + "model": "Model 12228", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.40089342542319, + 29.91962646835836 + ] + }, + "properties": { + "id": "meter-12229", + "maker": "Maker J", + "model": "Model 12229", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.702798078089614, + 18.444547860359304 + ] + }, + "properties": { + "id": "meter-12230", + "maker": "Maker F", + "model": "Model 12230", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.52194468453539, + 23.326626611067113 + ] + }, + "properties": { + "id": "meter-12231", + "maker": "Maker G", + "model": "Model 12231", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.01812160806571, + 24.75255549106028 + ] + }, + "properties": { + "id": "meter-12232", + "maker": "Maker B", + "model": "Model 12232", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.406347292190404, + 28.47700945994316 + ] + }, + "properties": { + "id": "meter-12233", + "maker": "Maker D", + "model": "Model 12233", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.006658226275206, + 25.58757756003225 + ] + }, + "properties": { + "id": "meter-12234", + "maker": "Maker H", + "model": "Model 12234", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.416411476765475, + 22.98468293584036 + ] + }, + "properties": { + "id": "meter-12235", + "maker": "Maker I", + "model": "Model 12235", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.449633456300845, + 17.550510747110458 + ] + }, + "properties": { + "id": "meter-12236", + "maker": "Maker I", + "model": "Model 12236", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.20526181691659, + 29.56593544146513 + ] + }, + "properties": { + "id": "meter-12237", + "maker": "Maker H", + "model": "Model 12237", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.12833235355493, + 28.35249728971971 + ] + }, + "properties": { + "id": "meter-12238", + "maker": "Maker A", + "model": "Model 12238", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.35255377341386, + 29.363248245600204 + ] + }, + "properties": { + "id": "meter-12239", + "maker": "Maker A", + "model": "Model 12239", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.748158267957756, + 19.337816977565257 + ] + }, + "properties": { + "id": "meter-12240", + "maker": "Maker D", + "model": "Model 12240", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.620131090546984, + 29.8283951326974 + ] + }, + "properties": { + "id": "meter-12241", + "maker": "Maker I", + "model": "Model 12241", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.343152531876974, + 23.115752616906025 + ] + }, + "properties": { + "id": "meter-12242", + "maker": "Maker J", + "model": "Model 12242", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.02436827252073, + 19.975516979256177 + ] + }, + "properties": { + "id": "meter-12243", + "maker": "Maker A", + "model": "Model 12243", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.27783478648481, + 26.59374570205494 + ] + }, + "properties": { + "id": "meter-12244", + "maker": "Maker D", + "model": "Model 12244", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.60256092853686, + 22.437158089942862 + ] + }, + "properties": { + "id": "meter-12245", + "maker": "Maker D", + "model": "Model 12245", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.48216826484786, + 26.575970714732534 + ] + }, + "properties": { + "id": "meter-12246", + "maker": "Maker D", + "model": "Model 12246", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.22278340367536, + 27.393893053626357 + ] + }, + "properties": { + "id": "meter-12247", + "maker": "Maker C", + "model": "Model 12247", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66971445236125, + 22.64821546042772 + ] + }, + "properties": { + "id": "meter-12248", + "maker": "Maker H", + "model": "Model 12248", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.95308753584121, + 17.978365650507765 + ] + }, + "properties": { + "id": "meter-12249", + "maker": "Maker B", + "model": "Model 12249", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.91794435269878, + 27.247162930086983 + ] + }, + "properties": { + "id": "meter-12250", + "maker": "Maker I", + "model": "Model 12250", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.05173863561261, + 24.295506353041752 + ] + }, + "properties": { + "id": "meter-12251", + "maker": "Maker F", + "model": "Model 12251", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.41766117302999, + 24.371049818339472 + ] + }, + "properties": { + "id": "meter-12252", + "maker": "Maker A", + "model": "Model 12252", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.58273679728854, + 23.1515710794066 + ] + }, + "properties": { + "id": "meter-12253", + "maker": "Maker A", + "model": "Model 12253", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.00849894187002, + 19.300712193130092 + ] + }, + "properties": { + "id": "meter-12254", + "maker": "Maker F", + "model": "Model 12254", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.175367424098376, + 29.041463303748557 + ] + }, + "properties": { + "id": "meter-12255", + "maker": "Maker A", + "model": "Model 12255", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.51589562521466, + 19.903002881424616 + ] + }, + "properties": { + "id": "meter-12256", + "maker": "Maker J", + "model": "Model 12256", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.85287833025733, + 19.404373665466018 + ] + }, + "properties": { + "id": "meter-12257", + "maker": "Maker F", + "model": "Model 12257", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.67769858323959, + 27.732278432676523 + ] + }, + "properties": { + "id": "meter-12258", + "maker": "Maker J", + "model": "Model 12258", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.71024757677946, + 20.416116678822732 + ] + }, + "properties": { + "id": "meter-12259", + "maker": "Maker B", + "model": "Model 12259", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.84632293055853, + 22.415527236634183 + ] + }, + "properties": { + "id": "meter-12260", + "maker": "Maker D", + "model": "Model 12260", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.28024276169287, + 25.432877280892136 + ] + }, + "properties": { + "id": "meter-12261", + "maker": "Maker A", + "model": "Model 12261", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.64099597789158, + 20.348885471289357 + ] + }, + "properties": { + "id": "meter-12262", + "maker": "Maker I", + "model": "Model 12262", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.573077112688566, + 21.262049203193172 + ] + }, + "properties": { + "id": "meter-12263", + "maker": "Maker I", + "model": "Model 12263", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.01914345280822, + 17.99480896565197 + ] + }, + "properties": { + "id": "meter-12264", + "maker": "Maker B", + "model": "Model 12264", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.06243186932591, + 28.727166403136557 + ] + }, + "properties": { + "id": "meter-12265", + "maker": "Maker J", + "model": "Model 12265", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.20448961223018, + 18.60163441872352 + ] + }, + "properties": { + "id": "meter-12266", + "maker": "Maker C", + "model": "Model 12266", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.705475321089125, + 30.319554161689112 + ] + }, + "properties": { + "id": "meter-12267", + "maker": "Maker J", + "model": "Model 12267", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.69878749553409, + 17.814461026509534 + ] + }, + "properties": { + "id": "meter-12268", + "maker": "Maker I", + "model": "Model 12268", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.930762334635645, + 26.0940520110507 + ] + }, + "properties": { + "id": "meter-12269", + "maker": "Maker E", + "model": "Model 12269", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.065880558090335, + 26.435752588048747 + ] + }, + "properties": { + "id": "meter-12270", + "maker": "Maker A", + "model": "Model 12270", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.87789402917906, + 25.347515135111085 + ] + }, + "properties": { + "id": "meter-12271", + "maker": "Maker A", + "model": "Model 12271", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.994355660056954, + 24.028410903129227 + ] + }, + "properties": { + "id": "meter-12272", + "maker": "Maker C", + "model": "Model 12272", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.30769636096768, + 26.798823389636876 + ] + }, + "properties": { + "id": "meter-12273", + "maker": "Maker A", + "model": "Model 12273", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.60886605479314, + 25.659231213716584 + ] + }, + "properties": { + "id": "meter-12274", + "maker": "Maker C", + "model": "Model 12274", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.280431809277886, + 23.5774194614963 + ] + }, + "properties": { + "id": "meter-12275", + "maker": "Maker D", + "model": "Model 12275", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.88906380705193, + 20.429491494624386 + ] + }, + "properties": { + "id": "meter-12276", + "maker": "Maker I", + "model": "Model 12276", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.10428565107231, + 31.286846128638224 + ] + }, + "properties": { + "id": "meter-12277", + "maker": "Maker D", + "model": "Model 12277", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.19820873656223, + 21.698757021923836 + ] + }, + "properties": { + "id": "meter-12278", + "maker": "Maker G", + "model": "Model 12278", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.63516262407789, + 25.63741696954277 + ] + }, + "properties": { + "id": "meter-12279", + "maker": "Maker D", + "model": "Model 12279", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.39360323460914, + 31.035190989337266 + ] + }, + "properties": { + "id": "meter-12280", + "maker": "Maker F", + "model": "Model 12280", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.61160103370375, + 22.132259294042075 + ] + }, + "properties": { + "id": "meter-12281", + "maker": "Maker F", + "model": "Model 12281", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.92357999566413, + 26.212312221190615 + ] + }, + "properties": { + "id": "meter-12282", + "maker": "Maker D", + "model": "Model 12282", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.69097147507149, + 25.44478544600458 + ] + }, + "properties": { + "id": "meter-12283", + "maker": "Maker D", + "model": "Model 12283", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88416967730115, + 24.552115190732103 + ] + }, + "properties": { + "id": "meter-12284", + "maker": "Maker E", + "model": "Model 12284", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.23059581484493, + 23.801642973558018 + ] + }, + "properties": { + "id": "meter-12285", + "maker": "Maker B", + "model": "Model 12285", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.003177007673195, + 24.972093671195168 + ] + }, + "properties": { + "id": "meter-12286", + "maker": "Maker C", + "model": "Model 12286", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.42700192940377, + 23.73922269850486 + ] + }, + "properties": { + "id": "meter-12287", + "maker": "Maker D", + "model": "Model 12287", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.86922061909836, + 24.30280618502458 + ] + }, + "properties": { + "id": "meter-12288", + "maker": "Maker E", + "model": "Model 12288", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.36491071926987, + 30.881743949922928 + ] + }, + "properties": { + "id": "meter-12289", + "maker": "Maker C", + "model": "Model 12289", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.01016713438316, + 23.469536238369244 + ] + }, + "properties": { + "id": "meter-12290", + "maker": "Maker H", + "model": "Model 12290", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.30091478512554, + 24.39773317700256 + ] + }, + "properties": { + "id": "meter-12291", + "maker": "Maker J", + "model": "Model 12291", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.36040880553067, + 26.269665967135733 + ] + }, + "properties": { + "id": "meter-12292", + "maker": "Maker E", + "model": "Model 12292", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.95215470457632, + 27.664829002573818 + ] + }, + "properties": { + "id": "meter-12293", + "maker": "Maker J", + "model": "Model 12293", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.750694061247884, + 30.991754205576147 + ] + }, + "properties": { + "id": "meter-12294", + "maker": "Maker J", + "model": "Model 12294", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.02151089508783, + 29.205076453729202 + ] + }, + "properties": { + "id": "meter-12295", + "maker": "Maker B", + "model": "Model 12295", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.00292410618736, + 17.66259660583785 + ] + }, + "properties": { + "id": "meter-12296", + "maker": "Maker H", + "model": "Model 12296", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17026084352793, + 28.444039464852814 + ] + }, + "properties": { + "id": "meter-12297", + "maker": "Maker J", + "model": "Model 12297", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.19097047800934, + 19.85832854141318 + ] + }, + "properties": { + "id": "meter-12298", + "maker": "Maker F", + "model": "Model 12298", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.92389191126791, + 20.56458064973555 + ] + }, + "properties": { + "id": "meter-12299", + "maker": "Maker D", + "model": "Model 12299", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.438322918106095, + 21.29874182745587 + ] + }, + "properties": { + "id": "meter-12300", + "maker": "Maker C", + "model": "Model 12300", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.7322081294916, + 24.48339906418905 + ] + }, + "properties": { + "id": "meter-12301", + "maker": "Maker G", + "model": "Model 12301", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.22240384741092, + 28.511065950255844 + ] + }, + "properties": { + "id": "meter-12302", + "maker": "Maker G", + "model": "Model 12302", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.35345686396249, + 19.756638376513052 + ] + }, + "properties": { + "id": "meter-12303", + "maker": "Maker F", + "model": "Model 12303", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.675019844739815, + 17.404050362701707 + ] + }, + "properties": { + "id": "meter-12304", + "maker": "Maker J", + "model": "Model 12304", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.55434986859146, + 22.17426457677535 + ] + }, + "properties": { + "id": "meter-12305", + "maker": "Maker J", + "model": "Model 12305", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.842601152928715, + 20.861890702133586 + ] + }, + "properties": { + "id": "meter-12306", + "maker": "Maker J", + "model": "Model 12306", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.84906827864778, + 28.448528889872453 + ] + }, + "properties": { + "id": "meter-12307", + "maker": "Maker D", + "model": "Model 12307", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.606686141403536, + 24.324095368647363 + ] + }, + "properties": { + "id": "meter-12308", + "maker": "Maker A", + "model": "Model 12308", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.68247819044305, + 30.148164918877058 + ] + }, + "properties": { + "id": "meter-12309", + "maker": "Maker H", + "model": "Model 12309", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94414895204544, + 20.189956841174173 + ] + }, + "properties": { + "id": "meter-12310", + "maker": "Maker H", + "model": "Model 12310", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.94449583553177, + 17.25854738415181 + ] + }, + "properties": { + "id": "meter-12311", + "maker": "Maker H", + "model": "Model 12311", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.518482209666104, + 19.222864066750695 + ] + }, + "properties": { + "id": "meter-12312", + "maker": "Maker C", + "model": "Model 12312", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.495224601378325, + 27.229071017967616 + ] + }, + "properties": { + "id": "meter-12313", + "maker": "Maker C", + "model": "Model 12313", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.09765933036815, + 31.1435096002581 + ] + }, + "properties": { + "id": "meter-12314", + "maker": "Maker B", + "model": "Model 12314", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.38853668479059, + 29.59482162886176 + ] + }, + "properties": { + "id": "meter-12315", + "maker": "Maker F", + "model": "Model 12315", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.115038992721196, + 29.021672018051753 + ] + }, + "properties": { + "id": "meter-12316", + "maker": "Maker F", + "model": "Model 12316", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.751149852765764, + 29.826939327608407 + ] + }, + "properties": { + "id": "meter-12317", + "maker": "Maker J", + "model": "Model 12317", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.28343077561917, + 23.002305198147084 + ] + }, + "properties": { + "id": "meter-12318", + "maker": "Maker G", + "model": "Model 12318", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.845518244759006, + 19.741621289315397 + ] + }, + "properties": { + "id": "meter-12319", + "maker": "Maker B", + "model": "Model 12319", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.540014079107394, + 20.475297695028956 + ] + }, + "properties": { + "id": "meter-12320", + "maker": "Maker B", + "model": "Model 12320", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.73825105123181, + 20.266759836340615 + ] + }, + "properties": { + "id": "meter-12321", + "maker": "Maker C", + "model": "Model 12321", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87501452893916, + 19.75214103025257 + ] + }, + "properties": { + "id": "meter-12322", + "maker": "Maker F", + "model": "Model 12322", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.11679576331763, + 19.41692722862028 + ] + }, + "properties": { + "id": "meter-12323", + "maker": "Maker B", + "model": "Model 12323", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.79379378074961, + 27.693826435545972 + ] + }, + "properties": { + "id": "meter-12324", + "maker": "Maker C", + "model": "Model 12324", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.53791765639094, + 24.356515250752558 + ] + }, + "properties": { + "id": "meter-12325", + "maker": "Maker D", + "model": "Model 12325", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.159717714817766, + 30.822306312261347 + ] + }, + "properties": { + "id": "meter-12326", + "maker": "Maker G", + "model": "Model 12326", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.761837573034114, + 29.70902912065118 + ] + }, + "properties": { + "id": "meter-12327", + "maker": "Maker D", + "model": "Model 12327", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66143831785372, + 28.161566726954426 + ] + }, + "properties": { + "id": "meter-12328", + "maker": "Maker A", + "model": "Model 12328", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.12202764608678, + 20.01382659599756 + ] + }, + "properties": { + "id": "meter-12329", + "maker": "Maker G", + "model": "Model 12329", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.12136179540583, + 19.289433859612885 + ] + }, + "properties": { + "id": "meter-12330", + "maker": "Maker D", + "model": "Model 12330", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.733110145241454, + 30.90842268116353 + ] + }, + "properties": { + "id": "meter-12331", + "maker": "Maker E", + "model": "Model 12331", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11602678494044, + 24.35509347400221 + ] + }, + "properties": { + "id": "meter-12332", + "maker": "Maker C", + "model": "Model 12332", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.124163751508085, + 23.587492981253348 + ] + }, + "properties": { + "id": "meter-12333", + "maker": "Maker A", + "model": "Model 12333", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.96756645408651, + 20.567855682947556 + ] + }, + "properties": { + "id": "meter-12334", + "maker": "Maker H", + "model": "Model 12334", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.368822183545134, + 21.078327365866592 + ] + }, + "properties": { + "id": "meter-12335", + "maker": "Maker G", + "model": "Model 12335", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.455406917195944, + 28.403514918530803 + ] + }, + "properties": { + "id": "meter-12336", + "maker": "Maker J", + "model": "Model 12336", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.145127644174586, + 19.257055949418245 + ] + }, + "properties": { + "id": "meter-12337", + "maker": "Maker A", + "model": "Model 12337", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.74200816790069, + 21.81778500166586 + ] + }, + "properties": { + "id": "meter-12338", + "maker": "Maker H", + "model": "Model 12338", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.59829912886667, + 29.790993614412105 + ] + }, + "properties": { + "id": "meter-12339", + "maker": "Maker I", + "model": "Model 12339", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.435234962740836, + 20.39640854163277 + ] + }, + "properties": { + "id": "meter-12340", + "maker": "Maker H", + "model": "Model 12340", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.20717286172063, + 19.055908465337545 + ] + }, + "properties": { + "id": "meter-12341", + "maker": "Maker H", + "model": "Model 12341", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.071172291084025, + 21.924050067844192 + ] + }, + "properties": { + "id": "meter-12342", + "maker": "Maker G", + "model": "Model 12342", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.094815239399225, + 19.589429863415564 + ] + }, + "properties": { + "id": "meter-12343", + "maker": "Maker A", + "model": "Model 12343", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.498646180021844, + 21.0150875540691 + ] + }, + "properties": { + "id": "meter-12344", + "maker": "Maker E", + "model": "Model 12344", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.2037618619312, + 17.14771222285616 + ] + }, + "properties": { + "id": "meter-12345", + "maker": "Maker H", + "model": "Model 12345", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.282730620829554, + 19.202113746181524 + ] + }, + "properties": { + "id": "meter-12346", + "maker": "Maker C", + "model": "Model 12346", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.030196287819614, + 19.26819533325002 + ] + }, + "properties": { + "id": "meter-12347", + "maker": "Maker G", + "model": "Model 12347", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.57935031219313, + 23.932651970928656 + ] + }, + "properties": { + "id": "meter-12348", + "maker": "Maker B", + "model": "Model 12348", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.168841103002194, + 21.935230146091012 + ] + }, + "properties": { + "id": "meter-12349", + "maker": "Maker F", + "model": "Model 12349", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.0036658945991, + 23.73296356130318 + ] + }, + "properties": { + "id": "meter-12350", + "maker": "Maker B", + "model": "Model 12350", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.32368125184224, + 24.08358454663139 + ] + }, + "properties": { + "id": "meter-12351", + "maker": "Maker F", + "model": "Model 12351", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.60023047771449, + 23.43310091812228 + ] + }, + "properties": { + "id": "meter-12352", + "maker": "Maker I", + "model": "Model 12352", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.66806874233604, + 23.798301250434573 + ] + }, + "properties": { + "id": "meter-12353", + "maker": "Maker G", + "model": "Model 12353", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.4767480842694, + 23.077464969046975 + ] + }, + "properties": { + "id": "meter-12354", + "maker": "Maker B", + "model": "Model 12354", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.35193273102131, + 27.295548633434624 + ] + }, + "properties": { + "id": "meter-12355", + "maker": "Maker C", + "model": "Model 12355", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.06461380386649, + 17.919513897409683 + ] + }, + "properties": { + "id": "meter-12356", + "maker": "Maker I", + "model": "Model 12356", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.71003615691798, + 24.43923864198714 + ] + }, + "properties": { + "id": "meter-12357", + "maker": "Maker A", + "model": "Model 12357", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.08416631511018, + 20.78735014884444 + ] + }, + "properties": { + "id": "meter-12358", + "maker": "Maker H", + "model": "Model 12358", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.375987029635844, + 23.08471636711419 + ] + }, + "properties": { + "id": "meter-12359", + "maker": "Maker F", + "model": "Model 12359", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.61528985245229, + 27.072699243409772 + ] + }, + "properties": { + "id": "meter-12360", + "maker": "Maker C", + "model": "Model 12360", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.539357756278555, + 24.10805793137785 + ] + }, + "properties": { + "id": "meter-12361", + "maker": "Maker H", + "model": "Model 12361", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.319917671082436, + 25.137662375070356 + ] + }, + "properties": { + "id": "meter-12362", + "maker": "Maker I", + "model": "Model 12362", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.41618055517992, + 22.159254926686593 + ] + }, + "properties": { + "id": "meter-12363", + "maker": "Maker D", + "model": "Model 12363", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.94877286558449, + 20.721221568026614 + ] + }, + "properties": { + "id": "meter-12364", + "maker": "Maker B", + "model": "Model 12364", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.191811768173764, + 21.934628696657594 + ] + }, + "properties": { + "id": "meter-12365", + "maker": "Maker I", + "model": "Model 12365", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.97319335811621, + 30.101702958563656 + ] + }, + "properties": { + "id": "meter-12366", + "maker": "Maker H", + "model": "Model 12366", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.68442354530214, + 22.26479007324462 + ] + }, + "properties": { + "id": "meter-12367", + "maker": "Maker I", + "model": "Model 12367", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.63293146338212, + 25.078857706212883 + ] + }, + "properties": { + "id": "meter-12368", + "maker": "Maker J", + "model": "Model 12368", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.90342955762764, + 25.260129677070786 + ] + }, + "properties": { + "id": "meter-12369", + "maker": "Maker B", + "model": "Model 12369", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.99276547077393, + 23.152082653072398 + ] + }, + "properties": { + "id": "meter-12370", + "maker": "Maker J", + "model": "Model 12370", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.463173488047104, + 20.200434226020782 + ] + }, + "properties": { + "id": "meter-12371", + "maker": "Maker H", + "model": "Model 12371", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.27987843760214, + 18.07686017977545 + ] + }, + "properties": { + "id": "meter-12372", + "maker": "Maker F", + "model": "Model 12372", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.40296743588519, + 20.577311246537096 + ] + }, + "properties": { + "id": "meter-12373", + "maker": "Maker D", + "model": "Model 12373", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.57239715593598, + 27.35509141166942 + ] + }, + "properties": { + "id": "meter-12374", + "maker": "Maker E", + "model": "Model 12374", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.654025275935375, + 22.92042475356279 + ] + }, + "properties": { + "id": "meter-12375", + "maker": "Maker D", + "model": "Model 12375", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.962680534944525, + 28.40279351110748 + ] + }, + "properties": { + "id": "meter-12376", + "maker": "Maker D", + "model": "Model 12376", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.864207451768806, + 22.409623853634287 + ] + }, + "properties": { + "id": "meter-12377", + "maker": "Maker I", + "model": "Model 12377", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.070781508959485, + 23.53701159823047 + ] + }, + "properties": { + "id": "meter-12378", + "maker": "Maker G", + "model": "Model 12378", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.980881659846474, + 27.29250022351594 + ] + }, + "properties": { + "id": "meter-12379", + "maker": "Maker G", + "model": "Model 12379", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.32260545447122, + 21.260489279793394 + ] + }, + "properties": { + "id": "meter-12380", + "maker": "Maker B", + "model": "Model 12380", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.88408212492884, + 21.09584896252221 + ] + }, + "properties": { + "id": "meter-12381", + "maker": "Maker C", + "model": "Model 12381", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.089963185892856, + 18.370512348316527 + ] + }, + "properties": { + "id": "meter-12382", + "maker": "Maker C", + "model": "Model 12382", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1922597607351, + 26.607975020789684 + ] + }, + "properties": { + "id": "meter-12383", + "maker": "Maker F", + "model": "Model 12383", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.48644237201679, + 21.24671691743879 + ] + }, + "properties": { + "id": "meter-12384", + "maker": "Maker J", + "model": "Model 12384", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.068183292495405, + 24.331730707352644 + ] + }, + "properties": { + "id": "meter-12385", + "maker": "Maker D", + "model": "Model 12385", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.32159109934923, + 20.1252689413448 + ] + }, + "properties": { + "id": "meter-12386", + "maker": "Maker E", + "model": "Model 12386", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.949609618093106, + 21.97209948826471 + ] + }, + "properties": { + "id": "meter-12387", + "maker": "Maker H", + "model": "Model 12387", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.572732317657895, + 25.863577939091055 + ] + }, + "properties": { + "id": "meter-12388", + "maker": "Maker F", + "model": "Model 12388", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.7652057548086, + 19.277260230644472 + ] + }, + "properties": { + "id": "meter-12389", + "maker": "Maker A", + "model": "Model 12389", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.11214758985897, + 27.14754992716348 + ] + }, + "properties": { + "id": "meter-12390", + "maker": "Maker G", + "model": "Model 12390", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.42757558180394, + 23.100241548675214 + ] + }, + "properties": { + "id": "meter-12391", + "maker": "Maker F", + "model": "Model 12391", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.61214459116168, + 24.01765728189632 + ] + }, + "properties": { + "id": "meter-12392", + "maker": "Maker H", + "model": "Model 12392", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.21212340897369, + 25.49617025285464 + ] + }, + "properties": { + "id": "meter-12393", + "maker": "Maker G", + "model": "Model 12393", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.43449912711143, + 17.845235945859276 + ] + }, + "properties": { + "id": "meter-12394", + "maker": "Maker G", + "model": "Model 12394", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.4516131666666, + 24.85235294290887 + ] + }, + "properties": { + "id": "meter-12395", + "maker": "Maker I", + "model": "Model 12395", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.67515316364447, + 25.991456221736158 + ] + }, + "properties": { + "id": "meter-12396", + "maker": "Maker B", + "model": "Model 12396", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.19173701393921, + 28.340040810530724 + ] + }, + "properties": { + "id": "meter-12397", + "maker": "Maker B", + "model": "Model 12397", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.38689665150155, + 20.526194643146667 + ] + }, + "properties": { + "id": "meter-12398", + "maker": "Maker J", + "model": "Model 12398", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.16337026251668, + 25.163841824139528 + ] + }, + "properties": { + "id": "meter-12399", + "maker": "Maker H", + "model": "Model 12399", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.56640846200539, + 30.395362427773 + ] + }, + "properties": { + "id": "meter-12400", + "maker": "Maker F", + "model": "Model 12400", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.59267125865111, + 30.354513286424456 + ] + }, + "properties": { + "id": "meter-12401", + "maker": "Maker A", + "model": "Model 12401", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02991520286062, + 24.608749588704214 + ] + }, + "properties": { + "id": "meter-12402", + "maker": "Maker C", + "model": "Model 12402", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.97774002664095, + 21.067751826344775 + ] + }, + "properties": { + "id": "meter-12403", + "maker": "Maker G", + "model": "Model 12403", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.58545871706567, + 29.476275080681326 + ] + }, + "properties": { + "id": "meter-12404", + "maker": "Maker B", + "model": "Model 12404", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.81054510599122, + 17.732267021783592 + ] + }, + "properties": { + "id": "meter-12405", + "maker": "Maker F", + "model": "Model 12405", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.72404501139248, + 21.66514368477577 + ] + }, + "properties": { + "id": "meter-12406", + "maker": "Maker A", + "model": "Model 12406", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.68477426523997, + 30.153811731037987 + ] + }, + "properties": { + "id": "meter-12407", + "maker": "Maker D", + "model": "Model 12407", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99741199364837, + 25.800760551209095 + ] + }, + "properties": { + "id": "meter-12408", + "maker": "Maker H", + "model": "Model 12408", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.81304205384911, + 24.082940607138262 + ] + }, + "properties": { + "id": "meter-12409", + "maker": "Maker B", + "model": "Model 12409", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.442181597883575, + 21.88541842994506 + ] + }, + "properties": { + "id": "meter-12410", + "maker": "Maker F", + "model": "Model 12410", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.31672039069119, + 23.285453934513665 + ] + }, + "properties": { + "id": "meter-12411", + "maker": "Maker J", + "model": "Model 12411", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.12802143885962, + 28.7853924852078 + ] + }, + "properties": { + "id": "meter-12412", + "maker": "Maker I", + "model": "Model 12412", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.627049032162475, + 21.522794797257006 + ] + }, + "properties": { + "id": "meter-12413", + "maker": "Maker A", + "model": "Model 12413", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.20069262300948, + 26.41963357812535 + ] + }, + "properties": { + "id": "meter-12414", + "maker": "Maker D", + "model": "Model 12414", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.81546754158063, + 26.004064868886356 + ] + }, + "properties": { + "id": "meter-12415", + "maker": "Maker B", + "model": "Model 12415", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.50415894730571, + 29.995791851816676 + ] + }, + "properties": { + "id": "meter-12416", + "maker": "Maker B", + "model": "Model 12416", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.880654064474186, + 24.563750382666598 + ] + }, + "properties": { + "id": "meter-12417", + "maker": "Maker A", + "model": "Model 12417", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.62207969625186, + 17.8212733791262 + ] + }, + "properties": { + "id": "meter-12418", + "maker": "Maker I", + "model": "Model 12418", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.38961543701006, + 19.197682553664976 + ] + }, + "properties": { + "id": "meter-12419", + "maker": "Maker H", + "model": "Model 12419", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.08337716714965, + 17.836549131987343 + ] + }, + "properties": { + "id": "meter-12420", + "maker": "Maker J", + "model": "Model 12420", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.906064709265905, + 20.487120695270235 + ] + }, + "properties": { + "id": "meter-12421", + "maker": "Maker I", + "model": "Model 12421", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.05553250502087, + 21.78800392917214 + ] + }, + "properties": { + "id": "meter-12422", + "maker": "Maker I", + "model": "Model 12422", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.16136503456345, + 22.21165562640158 + ] + }, + "properties": { + "id": "meter-12423", + "maker": "Maker J", + "model": "Model 12423", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.4428438852112, + 21.530690075831416 + ] + }, + "properties": { + "id": "meter-12424", + "maker": "Maker A", + "model": "Model 12424", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.983800966342564, + 18.788578765914114 + ] + }, + "properties": { + "id": "meter-12425", + "maker": "Maker J", + "model": "Model 12425", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.82309387266001, + 19.12032920731534 + ] + }, + "properties": { + "id": "meter-12426", + "maker": "Maker J", + "model": "Model 12426", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.40903378331308, + 17.52768423282982 + ] + }, + "properties": { + "id": "meter-12427", + "maker": "Maker H", + "model": "Model 12427", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.7448964039859, + 26.257648967449477 + ] + }, + "properties": { + "id": "meter-12428", + "maker": "Maker J", + "model": "Model 12428", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.32953927846427, + 22.289937541611703 + ] + }, + "properties": { + "id": "meter-12429", + "maker": "Maker B", + "model": "Model 12429", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.455368544537166, + 22.898830337626215 + ] + }, + "properties": { + "id": "meter-12430", + "maker": "Maker H", + "model": "Model 12430", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.73149325249818, + 26.982929356836895 + ] + }, + "properties": { + "id": "meter-12431", + "maker": "Maker D", + "model": "Model 12431", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.16461898008184, + 17.857966576360944 + ] + }, + "properties": { + "id": "meter-12432", + "maker": "Maker B", + "model": "Model 12432", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.007519894503524, + 24.546364561347026 + ] + }, + "properties": { + "id": "meter-12433", + "maker": "Maker C", + "model": "Model 12433", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.670968847023374, + 26.65964707749434 + ] + }, + "properties": { + "id": "meter-12434", + "maker": "Maker G", + "model": "Model 12434", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.68429156520494, + 21.994368353849186 + ] + }, + "properties": { + "id": "meter-12435", + "maker": "Maker J", + "model": "Model 12435", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04392541436051, + 29.799230062169038 + ] + }, + "properties": { + "id": "meter-12436", + "maker": "Maker C", + "model": "Model 12436", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.80679306114655, + 21.616429823467854 + ] + }, + "properties": { + "id": "meter-12437", + "maker": "Maker A", + "model": "Model 12437", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.385131255209366, + 20.41376020943177 + ] + }, + "properties": { + "id": "meter-12438", + "maker": "Maker C", + "model": "Model 12438", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.178471597610915, + 21.591812352186682 + ] + }, + "properties": { + "id": "meter-12439", + "maker": "Maker A", + "model": "Model 12439", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.62292435922156, + 23.865653516778913 + ] + }, + "properties": { + "id": "meter-12440", + "maker": "Maker F", + "model": "Model 12440", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.46474683856366, + 30.12788581726687 + ] + }, + "properties": { + "id": "meter-12441", + "maker": "Maker J", + "model": "Model 12441", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.11869716315729, + 24.069228028433454 + ] + }, + "properties": { + "id": "meter-12442", + "maker": "Maker C", + "model": "Model 12442", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.503089234195166, + 31.728684919110403 + ] + }, + "properties": { + "id": "meter-12443", + "maker": "Maker A", + "model": "Model 12443", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.31931265678612, + 22.393953127150198 + ] + }, + "properties": { + "id": "meter-12444", + "maker": "Maker I", + "model": "Model 12444", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.248990172950116, + 27.809285285626743 + ] + }, + "properties": { + "id": "meter-12445", + "maker": "Maker B", + "model": "Model 12445", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.5713919645225, + 22.29440256207231 + ] + }, + "properties": { + "id": "meter-12446", + "maker": "Maker B", + "model": "Model 12446", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.55033092059867, + 21.796035618238122 + ] + }, + "properties": { + "id": "meter-12447", + "maker": "Maker G", + "model": "Model 12447", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.70958122417582, + 20.522614694869244 + ] + }, + "properties": { + "id": "meter-12448", + "maker": "Maker H", + "model": "Model 12448", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.22333964520653, + 29.442635718736145 + ] + }, + "properties": { + "id": "meter-12449", + "maker": "Maker E", + "model": "Model 12449", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.388838947006775, + 22.800950801099496 + ] + }, + "properties": { + "id": "meter-12450", + "maker": "Maker H", + "model": "Model 12450", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.744794633315045, + 26.389100349530146 + ] + }, + "properties": { + "id": "meter-12451", + "maker": "Maker F", + "model": "Model 12451", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.55931857888065, + 20.87338704711707 + ] + }, + "properties": { + "id": "meter-12452", + "maker": "Maker J", + "model": "Model 12452", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.26590728589696, + 27.843446884674762 + ] + }, + "properties": { + "id": "meter-12453", + "maker": "Maker J", + "model": "Model 12453", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.31815427006552, + 28.072539713968045 + ] + }, + "properties": { + "id": "meter-12454", + "maker": "Maker B", + "model": "Model 12454", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.05448065917024, + 25.46694372211009 + ] + }, + "properties": { + "id": "meter-12455", + "maker": "Maker A", + "model": "Model 12455", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.82919375129687, + 23.575636095176108 + ] + }, + "properties": { + "id": "meter-12456", + "maker": "Maker F", + "model": "Model 12456", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.018955129448834, + 18.301439484717616 + ] + }, + "properties": { + "id": "meter-12457", + "maker": "Maker E", + "model": "Model 12457", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.91597266686455, + 29.14780702199222 + ] + }, + "properties": { + "id": "meter-12458", + "maker": "Maker J", + "model": "Model 12458", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.97542342780307, + 26.879787137496027 + ] + }, + "properties": { + "id": "meter-12459", + "maker": "Maker C", + "model": "Model 12459", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.67483037438977, + 23.526639176461714 + ] + }, + "properties": { + "id": "meter-12460", + "maker": "Maker J", + "model": "Model 12460", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.04156668095891, + 20.181701249994227 + ] + }, + "properties": { + "id": "meter-12461", + "maker": "Maker J", + "model": "Model 12461", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.893682424602424, + 23.33062795654821 + ] + }, + "properties": { + "id": "meter-12462", + "maker": "Maker B", + "model": "Model 12462", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93760068573109, + 29.889759215031177 + ] + }, + "properties": { + "id": "meter-12463", + "maker": "Maker E", + "model": "Model 12463", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.79857492111301, + 28.3422991431625 + ] + }, + "properties": { + "id": "meter-12464", + "maker": "Maker J", + "model": "Model 12464", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.8702750180094, + 26.84095864142465 + ] + }, + "properties": { + "id": "meter-12465", + "maker": "Maker H", + "model": "Model 12465", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.11987961219049, + 22.224399137597537 + ] + }, + "properties": { + "id": "meter-12466", + "maker": "Maker C", + "model": "Model 12466", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.6397620426158, + 30.01370956492735 + ] + }, + "properties": { + "id": "meter-12467", + "maker": "Maker G", + "model": "Model 12467", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.022134529080894, + 24.279479308005698 + ] + }, + "properties": { + "id": "meter-12468", + "maker": "Maker H", + "model": "Model 12468", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.42600728101565, + 24.92362311332787 + ] + }, + "properties": { + "id": "meter-12469", + "maker": "Maker A", + "model": "Model 12469", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.46460584918254, + 29.719562476589275 + ] + }, + "properties": { + "id": "meter-12470", + "maker": "Maker C", + "model": "Model 12470", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.01609818119819, + 21.283956820250417 + ] + }, + "properties": { + "id": "meter-12471", + "maker": "Maker G", + "model": "Model 12471", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25549446807596, + 22.611674775759532 + ] + }, + "properties": { + "id": "meter-12472", + "maker": "Maker B", + "model": "Model 12472", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.365945622222064, + 28.675326306916766 + ] + }, + "properties": { + "id": "meter-12473", + "maker": "Maker E", + "model": "Model 12473", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.35374170180968, + 24.245709584940663 + ] + }, + "properties": { + "id": "meter-12474", + "maker": "Maker G", + "model": "Model 12474", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.2179440522555, + 21.104323554703015 + ] + }, + "properties": { + "id": "meter-12475", + "maker": "Maker F", + "model": "Model 12475", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.79169175576415, + 23.465347545022304 + ] + }, + "properties": { + "id": "meter-12476", + "maker": "Maker D", + "model": "Model 12476", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.50760088701068, + 29.389539577728208 + ] + }, + "properties": { + "id": "meter-12477", + "maker": "Maker I", + "model": "Model 12477", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.69065451184086, + 28.57450456865257 + ] + }, + "properties": { + "id": "meter-12478", + "maker": "Maker D", + "model": "Model 12478", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.51664334983751, + 20.342070506661422 + ] + }, + "properties": { + "id": "meter-12479", + "maker": "Maker J", + "model": "Model 12479", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.06930840604027, + 21.78253848954996 + ] + }, + "properties": { + "id": "meter-12480", + "maker": "Maker D", + "model": "Model 12480", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.16823645217576, + 27.417680745907912 + ] + }, + "properties": { + "id": "meter-12481", + "maker": "Maker B", + "model": "Model 12481", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.47052137809251, + 25.29009435152075 + ] + }, + "properties": { + "id": "meter-12482", + "maker": "Maker G", + "model": "Model 12482", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.554612156843035, + 22.032098224402628 + ] + }, + "properties": { + "id": "meter-12483", + "maker": "Maker I", + "model": "Model 12483", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.19619002551175, + 18.676599285526972 + ] + }, + "properties": { + "id": "meter-12484", + "maker": "Maker J", + "model": "Model 12484", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.02448235211003, + 27.920840644404176 + ] + }, + "properties": { + "id": "meter-12485", + "maker": "Maker H", + "model": "Model 12485", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.55387052527881, + 20.184289885181514 + ] + }, + "properties": { + "id": "meter-12486", + "maker": "Maker D", + "model": "Model 12486", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.23015790700255, + 25.480566308428806 + ] + }, + "properties": { + "id": "meter-12487", + "maker": "Maker A", + "model": "Model 12487", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7007200157426, + 26.17626145463443 + ] + }, + "properties": { + "id": "meter-12488", + "maker": "Maker C", + "model": "Model 12488", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.390805549269565, + 27.986989402729733 + ] + }, + "properties": { + "id": "meter-12489", + "maker": "Maker I", + "model": "Model 12489", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.26101045839686, + 19.57841549180451 + ] + }, + "properties": { + "id": "meter-12490", + "maker": "Maker B", + "model": "Model 12490", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.261437028829675, + 26.220248785593242 + ] + }, + "properties": { + "id": "meter-12491", + "maker": "Maker C", + "model": "Model 12491", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.027188226693724, + 26.6799449786348 + ] + }, + "properties": { + "id": "meter-12492", + "maker": "Maker J", + "model": "Model 12492", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.67063777340216, + 25.13847422776378 + ] + }, + "properties": { + "id": "meter-12493", + "maker": "Maker G", + "model": "Model 12493", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.23899394046356, + 20.06369968033146 + ] + }, + "properties": { + "id": "meter-12494", + "maker": "Maker C", + "model": "Model 12494", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.55349973392014, + 24.873591729718697 + ] + }, + "properties": { + "id": "meter-12495", + "maker": "Maker D", + "model": "Model 12495", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.579061982670716, + 29.4169595822478 + ] + }, + "properties": { + "id": "meter-12496", + "maker": "Maker D", + "model": "Model 12496", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.21226535360129, + 21.607613720327368 + ] + }, + "properties": { + "id": "meter-12497", + "maker": "Maker G", + "model": "Model 12497", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.17682157702376, + 19.60802430652252 + ] + }, + "properties": { + "id": "meter-12498", + "maker": "Maker J", + "model": "Model 12498", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.91966464615008, + 21.20291778792856 + ] + }, + "properties": { + "id": "meter-12499", + "maker": "Maker J", + "model": "Model 12499", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.55671907141327, + 22.438456604887637 + ] + }, + "properties": { + "id": "meter-12500", + "maker": "Maker G", + "model": "Model 12500", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.175168878157955, + 25.229306369939604 + ] + }, + "properties": { + "id": "meter-12501", + "maker": "Maker D", + "model": "Model 12501", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.764542465669834, + 25.339570026738876 + ] + }, + "properties": { + "id": "meter-12502", + "maker": "Maker H", + "model": "Model 12502", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.46066676239716, + 21.30196619340706 + ] + }, + "properties": { + "id": "meter-12503", + "maker": "Maker F", + "model": "Model 12503", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.15211912492191, + 22.698973036606883 + ] + }, + "properties": { + "id": "meter-12504", + "maker": "Maker A", + "model": "Model 12504", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.340761474348554, + 23.619652359599975 + ] + }, + "properties": { + "id": "meter-12505", + "maker": "Maker H", + "model": "Model 12505", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.30084027620066, + 27.38034656701442 + ] + }, + "properties": { + "id": "meter-12506", + "maker": "Maker H", + "model": "Model 12506", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.04068535847533, + 21.221653830783687 + ] + }, + "properties": { + "id": "meter-12507", + "maker": "Maker E", + "model": "Model 12507", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.59325718335663, + 28.491793558242527 + ] + }, + "properties": { + "id": "meter-12508", + "maker": "Maker F", + "model": "Model 12508", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.85583286118725, + 21.783473303342838 + ] + }, + "properties": { + "id": "meter-12509", + "maker": "Maker G", + "model": "Model 12509", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.48639351824468, + 27.181262026444553 + ] + }, + "properties": { + "id": "meter-12510", + "maker": "Maker G", + "model": "Model 12510", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.56126522458236, + 22.722699699297557 + ] + }, + "properties": { + "id": "meter-12511", + "maker": "Maker C", + "model": "Model 12511", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.23506840433561, + 29.789363928141405 + ] + }, + "properties": { + "id": "meter-12512", + "maker": "Maker A", + "model": "Model 12512", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.14932807650204, + 28.746908833563367 + ] + }, + "properties": { + "id": "meter-12513", + "maker": "Maker B", + "model": "Model 12513", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.34736711139518, + 19.966631665534692 + ] + }, + "properties": { + "id": "meter-12514", + "maker": "Maker D", + "model": "Model 12514", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.32221114992237, + 28.821759910140003 + ] + }, + "properties": { + "id": "meter-12515", + "maker": "Maker E", + "model": "Model 12515", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.384097382422915, + 21.035474372309785 + ] + }, + "properties": { + "id": "meter-12516", + "maker": "Maker A", + "model": "Model 12516", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.43749886246407, + 19.352268414361887 + ] + }, + "properties": { + "id": "meter-12517", + "maker": "Maker J", + "model": "Model 12517", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.44473249272949, + 18.487335442284937 + ] + }, + "properties": { + "id": "meter-12518", + "maker": "Maker I", + "model": "Model 12518", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.44306147705634, + 30.056372286327424 + ] + }, + "properties": { + "id": "meter-12519", + "maker": "Maker C", + "model": "Model 12519", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.48588108365303, + 28.626760977421128 + ] + }, + "properties": { + "id": "meter-12520", + "maker": "Maker A", + "model": "Model 12520", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.89513280577991, + 21.911759477156195 + ] + }, + "properties": { + "id": "meter-12521", + "maker": "Maker E", + "model": "Model 12521", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.303744173496256, + 20.830696513059088 + ] + }, + "properties": { + "id": "meter-12522", + "maker": "Maker D", + "model": "Model 12522", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.40752422920374, + 24.722452869092443 + ] + }, + "properties": { + "id": "meter-12523", + "maker": "Maker D", + "model": "Model 12523", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.32285118009792, + 24.144491116643028 + ] + }, + "properties": { + "id": "meter-12524", + "maker": "Maker J", + "model": "Model 12524", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.90339872865783, + 21.809196148687874 + ] + }, + "properties": { + "id": "meter-12525", + "maker": "Maker F", + "model": "Model 12525", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03888338417673, + 20.591105673822735 + ] + }, + "properties": { + "id": "meter-12526", + "maker": "Maker F", + "model": "Model 12526", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.740835067281324, + 25.291109162406464 + ] + }, + "properties": { + "id": "meter-12527", + "maker": "Maker B", + "model": "Model 12527", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.39353674635061, + 21.262347649981862 + ] + }, + "properties": { + "id": "meter-12528", + "maker": "Maker A", + "model": "Model 12528", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.459684415431795, + 23.139355906335943 + ] + }, + "properties": { + "id": "meter-12529", + "maker": "Maker D", + "model": "Model 12529", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.81311612776297, + 19.224593474945443 + ] + }, + "properties": { + "id": "meter-12530", + "maker": "Maker F", + "model": "Model 12530", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.13948194220399, + 22.454457600642055 + ] + }, + "properties": { + "id": "meter-12531", + "maker": "Maker D", + "model": "Model 12531", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.55374496659538, + 22.590932145594177 + ] + }, + "properties": { + "id": "meter-12532", + "maker": "Maker G", + "model": "Model 12532", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.58599429609745, + 19.811447126191712 + ] + }, + "properties": { + "id": "meter-12533", + "maker": "Maker B", + "model": "Model 12533", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.45157436719126, + 21.392436571976774 + ] + }, + "properties": { + "id": "meter-12534", + "maker": "Maker A", + "model": "Model 12534", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.67987713905623, + 24.802435218080724 + ] + }, + "properties": { + "id": "meter-12535", + "maker": "Maker J", + "model": "Model 12535", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.50948934082744, + 17.64149404452469 + ] + }, + "properties": { + "id": "meter-12536", + "maker": "Maker F", + "model": "Model 12536", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.95116226440646, + 21.335230702217558 + ] + }, + "properties": { + "id": "meter-12537", + "maker": "Maker D", + "model": "Model 12537", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.14341525099587, + 23.47641473772646 + ] + }, + "properties": { + "id": "meter-12538", + "maker": "Maker G", + "model": "Model 12538", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.6057080209051, + 25.271627191525525 + ] + }, + "properties": { + "id": "meter-12539", + "maker": "Maker B", + "model": "Model 12539", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.31649684336491, + 28.980117540317362 + ] + }, + "properties": { + "id": "meter-12540", + "maker": "Maker H", + "model": "Model 12540", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.720340501781784, + 31.162462591103292 + ] + }, + "properties": { + "id": "meter-12541", + "maker": "Maker D", + "model": "Model 12541", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.99214344393338, + 25.424842423324783 + ] + }, + "properties": { + "id": "meter-12542", + "maker": "Maker H", + "model": "Model 12542", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.10880891158669, + 29.30716251278016 + ] + }, + "properties": { + "id": "meter-12543", + "maker": "Maker C", + "model": "Model 12543", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.63367381482872, + 24.557889004717833 + ] + }, + "properties": { + "id": "meter-12544", + "maker": "Maker B", + "model": "Model 12544", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.328644068296626, + 17.379799768487942 + ] + }, + "properties": { + "id": "meter-12545", + "maker": "Maker I", + "model": "Model 12545", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.87342918246578, + 26.947753022021562 + ] + }, + "properties": { + "id": "meter-12546", + "maker": "Maker G", + "model": "Model 12546", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.296434715722285, + 27.045223937645154 + ] + }, + "properties": { + "id": "meter-12547", + "maker": "Maker H", + "model": "Model 12547", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.82384830475856, + 20.53565949533555 + ] + }, + "properties": { + "id": "meter-12548", + "maker": "Maker C", + "model": "Model 12548", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.36025612754969, + 26.910997863802432 + ] + }, + "properties": { + "id": "meter-12549", + "maker": "Maker B", + "model": "Model 12549", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57422549162468, + 22.364285994709597 + ] + }, + "properties": { + "id": "meter-12550", + "maker": "Maker F", + "model": "Model 12550", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.044311428627665, + 25.79934725871486 + ] + }, + "properties": { + "id": "meter-12551", + "maker": "Maker G", + "model": "Model 12551", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.97215592858112, + 22.60263518900832 + ] + }, + "properties": { + "id": "meter-12552", + "maker": "Maker C", + "model": "Model 12552", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.07061177364398, + 21.601777751286598 + ] + }, + "properties": { + "id": "meter-12553", + "maker": "Maker G", + "model": "Model 12553", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.06621799517619, + 23.3623886267616 + ] + }, + "properties": { + "id": "meter-12554", + "maker": "Maker F", + "model": "Model 12554", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.224252427408146, + 22.66341064460888 + ] + }, + "properties": { + "id": "meter-12555", + "maker": "Maker E", + "model": "Model 12555", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07834967652175, + 22.792238957558517 + ] + }, + "properties": { + "id": "meter-12556", + "maker": "Maker C", + "model": "Model 12556", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.750900225928106, + 20.069516045959734 + ] + }, + "properties": { + "id": "meter-12557", + "maker": "Maker F", + "model": "Model 12557", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.86004990012446, + 22.78703587507357 + ] + }, + "properties": { + "id": "meter-12558", + "maker": "Maker G", + "model": "Model 12558", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.7800037104926, + 17.45691954888318 + ] + }, + "properties": { + "id": "meter-12559", + "maker": "Maker B", + "model": "Model 12559", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.91506555409484, + 27.308480573217693 + ] + }, + "properties": { + "id": "meter-12560", + "maker": "Maker D", + "model": "Model 12560", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.25414003366097, + 27.598649965099927 + ] + }, + "properties": { + "id": "meter-12561", + "maker": "Maker G", + "model": "Model 12561", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.22909939135857, + 20.175431460393686 + ] + }, + "properties": { + "id": "meter-12562", + "maker": "Maker J", + "model": "Model 12562", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.5057171192879, + 25.437609258108246 + ] + }, + "properties": { + "id": "meter-12563", + "maker": "Maker I", + "model": "Model 12563", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.337309322333766, + 23.35328671569684 + ] + }, + "properties": { + "id": "meter-12564", + "maker": "Maker G", + "model": "Model 12564", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.1038276448121, + 22.07138566476656 + ] + }, + "properties": { + "id": "meter-12565", + "maker": "Maker C", + "model": "Model 12565", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.1957376141783, + 21.285357369176925 + ] + }, + "properties": { + "id": "meter-12566", + "maker": "Maker F", + "model": "Model 12566", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.523403398598305, + 21.516531310766666 + ] + }, + "properties": { + "id": "meter-12567", + "maker": "Maker F", + "model": "Model 12567", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.4590236448517, + 20.340521084195856 + ] + }, + "properties": { + "id": "meter-12568", + "maker": "Maker I", + "model": "Model 12568", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.15778050297794, + 22.91204379532781 + ] + }, + "properties": { + "id": "meter-12569", + "maker": "Maker F", + "model": "Model 12569", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.33304917221616, + 22.11894461377479 + ] + }, + "properties": { + "id": "meter-12570", + "maker": "Maker H", + "model": "Model 12570", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.90243217113487, + 28.268397274171456 + ] + }, + "properties": { + "id": "meter-12571", + "maker": "Maker H", + "model": "Model 12571", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.397903161498704, + 28.923669356004872 + ] + }, + "properties": { + "id": "meter-12572", + "maker": "Maker B", + "model": "Model 12572", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.410967557375386, + 27.73164315889656 + ] + }, + "properties": { + "id": "meter-12573", + "maker": "Maker E", + "model": "Model 12573", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.21681152738128, + 17.78217799068731 + ] + }, + "properties": { + "id": "meter-12574", + "maker": "Maker G", + "model": "Model 12574", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.27944526265932, + 22.82123066081509 + ] + }, + "properties": { + "id": "meter-12575", + "maker": "Maker E", + "model": "Model 12575", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.69149703514691, + 31.422543030461746 + ] + }, + "properties": { + "id": "meter-12576", + "maker": "Maker I", + "model": "Model 12576", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.001798875512975, + 27.012598972967936 + ] + }, + "properties": { + "id": "meter-12577", + "maker": "Maker G", + "model": "Model 12577", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.66807684683585, + 29.98819363954231 + ] + }, + "properties": { + "id": "meter-12578", + "maker": "Maker F", + "model": "Model 12578", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.658416726817165, + 27.892517100319708 + ] + }, + "properties": { + "id": "meter-12579", + "maker": "Maker E", + "model": "Model 12579", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.29547845263443, + 26.330473417821967 + ] + }, + "properties": { + "id": "meter-12580", + "maker": "Maker J", + "model": "Model 12580", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.808937180532524, + 21.19448579288957 + ] + }, + "properties": { + "id": "meter-12581", + "maker": "Maker E", + "model": "Model 12581", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.25965540769592, + 24.20704998127122 + ] + }, + "properties": { + "id": "meter-12582", + "maker": "Maker G", + "model": "Model 12582", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.001506764847704, + 23.91302486886793 + ] + }, + "properties": { + "id": "meter-12583", + "maker": "Maker D", + "model": "Model 12583", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.435515677936024, + 20.979983099695307 + ] + }, + "properties": { + "id": "meter-12584", + "maker": "Maker E", + "model": "Model 12584", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.633472519146125, + 20.214680208160345 + ] + }, + "properties": { + "id": "meter-12585", + "maker": "Maker D", + "model": "Model 12585", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.24899770409468, + 20.07486882981687 + ] + }, + "properties": { + "id": "meter-12586", + "maker": "Maker F", + "model": "Model 12586", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.887394065844155, + 27.979777304224775 + ] + }, + "properties": { + "id": "meter-12587", + "maker": "Maker B", + "model": "Model 12587", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.66635493416089, + 27.802264065073793 + ] + }, + "properties": { + "id": "meter-12588", + "maker": "Maker F", + "model": "Model 12588", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.899754533031654, + 19.85693968358892 + ] + }, + "properties": { + "id": "meter-12589", + "maker": "Maker H", + "model": "Model 12589", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.85574058656536, + 24.43837051477059 + ] + }, + "properties": { + "id": "meter-12590", + "maker": "Maker F", + "model": "Model 12590", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.314394131024834, + 25.594356431937072 + ] + }, + "properties": { + "id": "meter-12591", + "maker": "Maker H", + "model": "Model 12591", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94299740544033, + 26.40863448142202 + ] + }, + "properties": { + "id": "meter-12592", + "maker": "Maker C", + "model": "Model 12592", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.45134175143879, + 18.77392323940105 + ] + }, + "properties": { + "id": "meter-12593", + "maker": "Maker B", + "model": "Model 12593", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.13722279617225, + 26.55262163136775 + ] + }, + "properties": { + "id": "meter-12594", + "maker": "Maker E", + "model": "Model 12594", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.231217519935285, + 22.497691328293797 + ] + }, + "properties": { + "id": "meter-12595", + "maker": "Maker C", + "model": "Model 12595", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.06912572063163, + 28.35833538059308 + ] + }, + "properties": { + "id": "meter-12596", + "maker": "Maker H", + "model": "Model 12596", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.7094156503665, + 22.09325470522498 + ] + }, + "properties": { + "id": "meter-12597", + "maker": "Maker I", + "model": "Model 12597", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.617979845710686, + 29.684688871193657 + ] + }, + "properties": { + "id": "meter-12598", + "maker": "Maker A", + "model": "Model 12598", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.74603545088934, + 24.36576780254563 + ] + }, + "properties": { + "id": "meter-12599", + "maker": "Maker B", + "model": "Model 12599", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23507667729402, + 27.680891845194132 + ] + }, + "properties": { + "id": "meter-12600", + "maker": "Maker H", + "model": "Model 12600", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.77437418275759, + 19.480735410772134 + ] + }, + "properties": { + "id": "meter-12601", + "maker": "Maker B", + "model": "Model 12601", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.61560073465055, + 18.987727480866322 + ] + }, + "properties": { + "id": "meter-12602", + "maker": "Maker I", + "model": "Model 12602", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.87750678720976, + 30.661860478460703 + ] + }, + "properties": { + "id": "meter-12603", + "maker": "Maker F", + "model": "Model 12603", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.770040848446705, + 29.193615997574053 + ] + }, + "properties": { + "id": "meter-12604", + "maker": "Maker C", + "model": "Model 12604", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.801733383165946, + 23.28314463346512 + ] + }, + "properties": { + "id": "meter-12605", + "maker": "Maker D", + "model": "Model 12605", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.9821022675206, + 22.87655961129576 + ] + }, + "properties": { + "id": "meter-12606", + "maker": "Maker J", + "model": "Model 12606", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.649163060220076, + 18.12093012166502 + ] + }, + "properties": { + "id": "meter-12607", + "maker": "Maker A", + "model": "Model 12607", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.49205554471099, + 22.796020345497844 + ] + }, + "properties": { + "id": "meter-12608", + "maker": "Maker G", + "model": "Model 12608", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.421608527678764, + 29.551325772258945 + ] + }, + "properties": { + "id": "meter-12609", + "maker": "Maker D", + "model": "Model 12609", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.828277746755816, + 28.05111897715185 + ] + }, + "properties": { + "id": "meter-12610", + "maker": "Maker B", + "model": "Model 12610", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.38761822834578, + 22.658200590342926 + ] + }, + "properties": { + "id": "meter-12611", + "maker": "Maker G", + "model": "Model 12611", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.38620247188881, + 26.653389119403613 + ] + }, + "properties": { + "id": "meter-12612", + "maker": "Maker J", + "model": "Model 12612", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.819864573245596, + 21.652317934497262 + ] + }, + "properties": { + "id": "meter-12613", + "maker": "Maker F", + "model": "Model 12613", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.130460529248936, + 21.107881856145678 + ] + }, + "properties": { + "id": "meter-12614", + "maker": "Maker E", + "model": "Model 12614", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.5234815300797, + 29.753998429803808 + ] + }, + "properties": { + "id": "meter-12615", + "maker": "Maker B", + "model": "Model 12615", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65938656536287, + 24.31062121613509 + ] + }, + "properties": { + "id": "meter-12616", + "maker": "Maker E", + "model": "Model 12616", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.217573269729264, + 19.87658685272156 + ] + }, + "properties": { + "id": "meter-12617", + "maker": "Maker J", + "model": "Model 12617", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.42739883056587, + 20.25032537891433 + ] + }, + "properties": { + "id": "meter-12618", + "maker": "Maker B", + "model": "Model 12618", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.334211811292775, + 25.292939932140463 + ] + }, + "properties": { + "id": "meter-12619", + "maker": "Maker I", + "model": "Model 12619", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.80702786120201, + 26.945146940152643 + ] + }, + "properties": { + "id": "meter-12620", + "maker": "Maker H", + "model": "Model 12620", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.539047871847956, + 23.04093887518951 + ] + }, + "properties": { + "id": "meter-12621", + "maker": "Maker G", + "model": "Model 12621", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97529223840448, + 21.046404008880735 + ] + }, + "properties": { + "id": "meter-12622", + "maker": "Maker E", + "model": "Model 12622", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.31114051391651, + 24.650148537688167 + ] + }, + "properties": { + "id": "meter-12623", + "maker": "Maker G", + "model": "Model 12623", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.92604653873886, + 19.511605912904642 + ] + }, + "properties": { + "id": "meter-12624", + "maker": "Maker C", + "model": "Model 12624", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.38881767290331, + 28.205499619921092 + ] + }, + "properties": { + "id": "meter-12625", + "maker": "Maker I", + "model": "Model 12625", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.173190169784014, + 23.571289093259317 + ] + }, + "properties": { + "id": "meter-12626", + "maker": "Maker H", + "model": "Model 12626", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.63912117442862, + 24.408805384906426 + ] + }, + "properties": { + "id": "meter-12627", + "maker": "Maker J", + "model": "Model 12627", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.870531768072254, + 17.282914172307315 + ] + }, + "properties": { + "id": "meter-12628", + "maker": "Maker H", + "model": "Model 12628", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.22419611305177, + 23.882780819475514 + ] + }, + "properties": { + "id": "meter-12629", + "maker": "Maker D", + "model": "Model 12629", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.11890313523383, + 22.71256925563968 + ] + }, + "properties": { + "id": "meter-12630", + "maker": "Maker F", + "model": "Model 12630", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.672127682482554, + 24.194872492306047 + ] + }, + "properties": { + "id": "meter-12631", + "maker": "Maker A", + "model": "Model 12631", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.65860589436265, + 26.55853466636261 + ] + }, + "properties": { + "id": "meter-12632", + "maker": "Maker C", + "model": "Model 12632", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.37413175918489, + 31.467774058911395 + ] + }, + "properties": { + "id": "meter-12633", + "maker": "Maker F", + "model": "Model 12633", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.73029166909188, + 26.367350588965817 + ] + }, + "properties": { + "id": "meter-12634", + "maker": "Maker G", + "model": "Model 12634", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.96720101286344, + 26.53995347450531 + ] + }, + "properties": { + "id": "meter-12635", + "maker": "Maker I", + "model": "Model 12635", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.78416732484777, + 23.42182317774445 + ] + }, + "properties": { + "id": "meter-12636", + "maker": "Maker H", + "model": "Model 12636", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.37937941133933, + 20.09679056871625 + ] + }, + "properties": { + "id": "meter-12637", + "maker": "Maker I", + "model": "Model 12637", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.660571896450904, + 25.694383700527712 + ] + }, + "properties": { + "id": "meter-12638", + "maker": "Maker H", + "model": "Model 12638", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.98442540891767, + 24.43302363521851 + ] + }, + "properties": { + "id": "meter-12639", + "maker": "Maker C", + "model": "Model 12639", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.41180368830436, + 18.30686975303562 + ] + }, + "properties": { + "id": "meter-12640", + "maker": "Maker D", + "model": "Model 12640", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.71519901816471, + 23.801261517792646 + ] + }, + "properties": { + "id": "meter-12641", + "maker": "Maker E", + "model": "Model 12641", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.40440002178436, + 20.02004410734471 + ] + }, + "properties": { + "id": "meter-12642", + "maker": "Maker E", + "model": "Model 12642", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.34216661353277, + 25.315982706570985 + ] + }, + "properties": { + "id": "meter-12643", + "maker": "Maker G", + "model": "Model 12643", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.14705420409521, + 19.330737311418662 + ] + }, + "properties": { + "id": "meter-12644", + "maker": "Maker D", + "model": "Model 12644", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.34780802190065, + 19.176192654450478 + ] + }, + "properties": { + "id": "meter-12645", + "maker": "Maker D", + "model": "Model 12645", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.996420623487126, + 24.609420803401953 + ] + }, + "properties": { + "id": "meter-12646", + "maker": "Maker I", + "model": "Model 12646", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.469912997170645, + 25.156641897219593 + ] + }, + "properties": { + "id": "meter-12647", + "maker": "Maker E", + "model": "Model 12647", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.74752334473415, + 20.688342572536353 + ] + }, + "properties": { + "id": "meter-12648", + "maker": "Maker F", + "model": "Model 12648", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.517221685004664, + 26.96140366657064 + ] + }, + "properties": { + "id": "meter-12649", + "maker": "Maker A", + "model": "Model 12649", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.642159854119875, + 29.315975801453007 + ] + }, + "properties": { + "id": "meter-12650", + "maker": "Maker H", + "model": "Model 12650", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.36323408675934, + 26.12429064545546 + ] + }, + "properties": { + "id": "meter-12651", + "maker": "Maker J", + "model": "Model 12651", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.719612806805486, + 24.57189374952941 + ] + }, + "properties": { + "id": "meter-12652", + "maker": "Maker B", + "model": "Model 12652", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.28820599311827, + 25.41990537946802 + ] + }, + "properties": { + "id": "meter-12653", + "maker": "Maker B", + "model": "Model 12653", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.1755014169317, + 23.634444032906952 + ] + }, + "properties": { + "id": "meter-12654", + "maker": "Maker G", + "model": "Model 12654", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.64579588486911, + 25.575840336312275 + ] + }, + "properties": { + "id": "meter-12655", + "maker": "Maker F", + "model": "Model 12655", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.36027552320234, + 19.59080965154342 + ] + }, + "properties": { + "id": "meter-12656", + "maker": "Maker H", + "model": "Model 12656", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.3506503654713, + 27.038833731820166 + ] + }, + "properties": { + "id": "meter-12657", + "maker": "Maker C", + "model": "Model 12657", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.840006026928656, + 20.121477173311625 + ] + }, + "properties": { + "id": "meter-12658", + "maker": "Maker E", + "model": "Model 12658", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.94949202910989, + 25.005487312358092 + ] + }, + "properties": { + "id": "meter-12659", + "maker": "Maker H", + "model": "Model 12659", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.77670414255843, + 17.346137141345853 + ] + }, + "properties": { + "id": "meter-12660", + "maker": "Maker B", + "model": "Model 12660", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.47831822466329, + 28.765941807799386 + ] + }, + "properties": { + "id": "meter-12661", + "maker": "Maker A", + "model": "Model 12661", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.35884691339151, + 19.896742761378547 + ] + }, + "properties": { + "id": "meter-12662", + "maker": "Maker C", + "model": "Model 12662", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.61714730643981, + 24.671817185528603 + ] + }, + "properties": { + "id": "meter-12663", + "maker": "Maker A", + "model": "Model 12663", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.99834063554859, + 24.81700097158469 + ] + }, + "properties": { + "id": "meter-12664", + "maker": "Maker I", + "model": "Model 12664", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.830402886711354, + 26.04213974910942 + ] + }, + "properties": { + "id": "meter-12665", + "maker": "Maker C", + "model": "Model 12665", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.486969331958285, + 20.832160189574413 + ] + }, + "properties": { + "id": "meter-12666", + "maker": "Maker H", + "model": "Model 12666", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.94350305599759, + 28.564818823574974 + ] + }, + "properties": { + "id": "meter-12667", + "maker": "Maker G", + "model": "Model 12667", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.63882675147539, + 26.604572918006987 + ] + }, + "properties": { + "id": "meter-12668", + "maker": "Maker A", + "model": "Model 12668", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.65714560234886, + 27.302178635433435 + ] + }, + "properties": { + "id": "meter-12669", + "maker": "Maker E", + "model": "Model 12669", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96520270560017, + 25.38188574383453 + ] + }, + "properties": { + "id": "meter-12670", + "maker": "Maker J", + "model": "Model 12670", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.88246112775286, + 21.054082704309387 + ] + }, + "properties": { + "id": "meter-12671", + "maker": "Maker F", + "model": "Model 12671", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.1501861303348, + 22.889733823649536 + ] + }, + "properties": { + "id": "meter-12672", + "maker": "Maker G", + "model": "Model 12672", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.29131258142893, + 28.501270984633255 + ] + }, + "properties": { + "id": "meter-12673", + "maker": "Maker C", + "model": "Model 12673", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13857492463559, + 23.05455142369296 + ] + }, + "properties": { + "id": "meter-12674", + "maker": "Maker D", + "model": "Model 12674", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.862343046720554, + 26.19155398685713 + ] + }, + "properties": { + "id": "meter-12675", + "maker": "Maker E", + "model": "Model 12675", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.000029694266914, + 23.972895370141046 + ] + }, + "properties": { + "id": "meter-12676", + "maker": "Maker J", + "model": "Model 12676", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.666512833835725, + 24.481821798465234 + ] + }, + "properties": { + "id": "meter-12677", + "maker": "Maker F", + "model": "Model 12677", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.39499714062204, + 19.735297617012094 + ] + }, + "properties": { + "id": "meter-12678", + "maker": "Maker G", + "model": "Model 12678", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.31698681092749, + 26.468679764638374 + ] + }, + "properties": { + "id": "meter-12679", + "maker": "Maker G", + "model": "Model 12679", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.748068348537174, + 21.009186339609425 + ] + }, + "properties": { + "id": "meter-12680", + "maker": "Maker A", + "model": "Model 12680", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.112411432879505, + 21.145831149413965 + ] + }, + "properties": { + "id": "meter-12681", + "maker": "Maker H", + "model": "Model 12681", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.91627092078657, + 26.538746601208253 + ] + }, + "properties": { + "id": "meter-12682", + "maker": "Maker E", + "model": "Model 12682", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85462856040646, + 26.056132710317563 + ] + }, + "properties": { + "id": "meter-12683", + "maker": "Maker E", + "model": "Model 12683", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.76495198693305, + 22.697357991926935 + ] + }, + "properties": { + "id": "meter-12684", + "maker": "Maker G", + "model": "Model 12684", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.561636939405226, + 20.170924265927876 + ] + }, + "properties": { + "id": "meter-12685", + "maker": "Maker H", + "model": "Model 12685", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.006128779218166, + 22.01501209064619 + ] + }, + "properties": { + "id": "meter-12686", + "maker": "Maker E", + "model": "Model 12686", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.995944849878065, + 18.971437832794606 + ] + }, + "properties": { + "id": "meter-12687", + "maker": "Maker F", + "model": "Model 12687", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.88355365789729, + 20.69501712860214 + ] + }, + "properties": { + "id": "meter-12688", + "maker": "Maker J", + "model": "Model 12688", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.04314292042143, + 22.183955704911064 + ] + }, + "properties": { + "id": "meter-12689", + "maker": "Maker C", + "model": "Model 12689", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.76306619121509, + 30.95958307551322 + ] + }, + "properties": { + "id": "meter-12690", + "maker": "Maker I", + "model": "Model 12690", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.20989562337196, + 27.999776655462792 + ] + }, + "properties": { + "id": "meter-12691", + "maker": "Maker I", + "model": "Model 12691", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.610764435838234, + 28.612171832805103 + ] + }, + "properties": { + "id": "meter-12692", + "maker": "Maker I", + "model": "Model 12692", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.10700687046893, + 21.34503785726549 + ] + }, + "properties": { + "id": "meter-12693", + "maker": "Maker G", + "model": "Model 12693", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.13270074272429, + 24.04767034460172 + ] + }, + "properties": { + "id": "meter-12694", + "maker": "Maker D", + "model": "Model 12694", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.319103339331946, + 21.939892368860647 + ] + }, + "properties": { + "id": "meter-12695", + "maker": "Maker F", + "model": "Model 12695", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.20864125230293, + 23.182832561324798 + ] + }, + "properties": { + "id": "meter-12696", + "maker": "Maker E", + "model": "Model 12696", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.654501014382866, + 29.623712849842924 + ] + }, + "properties": { + "id": "meter-12697", + "maker": "Maker D", + "model": "Model 12697", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.78152443310221, + 20.559325647763107 + ] + }, + "properties": { + "id": "meter-12698", + "maker": "Maker B", + "model": "Model 12698", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.368104438510855, + 19.585065303178755 + ] + }, + "properties": { + "id": "meter-12699", + "maker": "Maker A", + "model": "Model 12699", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.771054213325556, + 17.69939236423372 + ] + }, + "properties": { + "id": "meter-12700", + "maker": "Maker I", + "model": "Model 12700", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.01552486161853, + 21.945853009830028 + ] + }, + "properties": { + "id": "meter-12701", + "maker": "Maker A", + "model": "Model 12701", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.22506468916288, + 29.989553200204174 + ] + }, + "properties": { + "id": "meter-12702", + "maker": "Maker B", + "model": "Model 12702", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.86689819043507, + 19.998687751174753 + ] + }, + "properties": { + "id": "meter-12703", + "maker": "Maker I", + "model": "Model 12703", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.72120523863587, + 29.160030626907705 + ] + }, + "properties": { + "id": "meter-12704", + "maker": "Maker G", + "model": "Model 12704", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.720655416766576, + 19.148263608668792 + ] + }, + "properties": { + "id": "meter-12705", + "maker": "Maker H", + "model": "Model 12705", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.71773367909644, + 23.589960268970977 + ] + }, + "properties": { + "id": "meter-12706", + "maker": "Maker G", + "model": "Model 12706", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.795115127572885, + 27.97299230750952 + ] + }, + "properties": { + "id": "meter-12707", + "maker": "Maker G", + "model": "Model 12707", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.94761564983732, + 17.631952082507834 + ] + }, + "properties": { + "id": "meter-12708", + "maker": "Maker E", + "model": "Model 12708", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.009011090499705, + 28.09203077065624 + ] + }, + "properties": { + "id": "meter-12709", + "maker": "Maker E", + "model": "Model 12709", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.65407654309581, + 25.677160213708536 + ] + }, + "properties": { + "id": "meter-12710", + "maker": "Maker G", + "model": "Model 12710", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.049175213193486, + 20.85695127066784 + ] + }, + "properties": { + "id": "meter-12711", + "maker": "Maker E", + "model": "Model 12711", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.52298387071008, + 20.741210514297137 + ] + }, + "properties": { + "id": "meter-12712", + "maker": "Maker D", + "model": "Model 12712", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.80193329112596, + 23.800045180020536 + ] + }, + "properties": { + "id": "meter-12713", + "maker": "Maker F", + "model": "Model 12713", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.03972280944995, + 22.37469008744502 + ] + }, + "properties": { + "id": "meter-12714", + "maker": "Maker G", + "model": "Model 12714", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.91882645817759, + 25.528563865038027 + ] + }, + "properties": { + "id": "meter-12715", + "maker": "Maker E", + "model": "Model 12715", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89190417926443, + 27.150278084812552 + ] + }, + "properties": { + "id": "meter-12716", + "maker": "Maker I", + "model": "Model 12716", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.16222807337992, + 24.9880627926996 + ] + }, + "properties": { + "id": "meter-12717", + "maker": "Maker D", + "model": "Model 12717", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.412244864455005, + 19.92928865191552 + ] + }, + "properties": { + "id": "meter-12718", + "maker": "Maker D", + "model": "Model 12718", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.99560564428579, + 18.640775508504905 + ] + }, + "properties": { + "id": "meter-12719", + "maker": "Maker H", + "model": "Model 12719", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57072408682669, + 21.501460711552717 + ] + }, + "properties": { + "id": "meter-12720", + "maker": "Maker E", + "model": "Model 12720", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.53020683030412, + 21.386924383140407 + ] + }, + "properties": { + "id": "meter-12721", + "maker": "Maker I", + "model": "Model 12721", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.834524302668186, + 28.10003872177594 + ] + }, + "properties": { + "id": "meter-12722", + "maker": "Maker I", + "model": "Model 12722", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.33562088776191, + 20.40365981493691 + ] + }, + "properties": { + "id": "meter-12723", + "maker": "Maker G", + "model": "Model 12723", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.641192148715845, + 23.459031848051094 + ] + }, + "properties": { + "id": "meter-12724", + "maker": "Maker F", + "model": "Model 12724", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8865307885767, + 27.527456013775772 + ] + }, + "properties": { + "id": "meter-12725", + "maker": "Maker I", + "model": "Model 12725", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.12512666394009, + 22.867495296266174 + ] + }, + "properties": { + "id": "meter-12726", + "maker": "Maker C", + "model": "Model 12726", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.645317692426964, + 27.905689443099526 + ] + }, + "properties": { + "id": "meter-12727", + "maker": "Maker J", + "model": "Model 12727", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.23540481906472, + 28.809102701036434 + ] + }, + "properties": { + "id": "meter-12728", + "maker": "Maker A", + "model": "Model 12728", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.73849351507398, + 29.79181939480327 + ] + }, + "properties": { + "id": "meter-12729", + "maker": "Maker H", + "model": "Model 12729", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.72065994040422, + 25.613944049780166 + ] + }, + "properties": { + "id": "meter-12730", + "maker": "Maker B", + "model": "Model 12730", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.16694272600577, + 24.158980198709216 + ] + }, + "properties": { + "id": "meter-12731", + "maker": "Maker C", + "model": "Model 12731", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.459380053009674, + 26.817401330377415 + ] + }, + "properties": { + "id": "meter-12732", + "maker": "Maker J", + "model": "Model 12732", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.79200588558659, + 25.86821131731603 + ] + }, + "properties": { + "id": "meter-12733", + "maker": "Maker C", + "model": "Model 12733", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.37185499442882, + 23.593689301216493 + ] + }, + "properties": { + "id": "meter-12734", + "maker": "Maker F", + "model": "Model 12734", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.84119893374786, + 20.336251139503084 + ] + }, + "properties": { + "id": "meter-12735", + "maker": "Maker E", + "model": "Model 12735", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.334656891740956, + 21.14455784506295 + ] + }, + "properties": { + "id": "meter-12736", + "maker": "Maker B", + "model": "Model 12736", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.992073755478856, + 24.57971440573823 + ] + }, + "properties": { + "id": "meter-12737", + "maker": "Maker E", + "model": "Model 12737", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.120528464226005, + 20.372529262300816 + ] + }, + "properties": { + "id": "meter-12738", + "maker": "Maker B", + "model": "Model 12738", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.597105539445764, + 21.30858212005871 + ] + }, + "properties": { + "id": "meter-12739", + "maker": "Maker F", + "model": "Model 12739", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.98961405735276, + 27.215815887841472 + ] + }, + "properties": { + "id": "meter-12740", + "maker": "Maker J", + "model": "Model 12740", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.319064864000296, + 19.883263051092523 + ] + }, + "properties": { + "id": "meter-12741", + "maker": "Maker A", + "model": "Model 12741", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.578637090199436, + 19.941611692501848 + ] + }, + "properties": { + "id": "meter-12742", + "maker": "Maker E", + "model": "Model 12742", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.36886655683799, + 23.33898030687862 + ] + }, + "properties": { + "id": "meter-12743", + "maker": "Maker E", + "model": "Model 12743", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26023465095861, + 24.203754243815865 + ] + }, + "properties": { + "id": "meter-12744", + "maker": "Maker C", + "model": "Model 12744", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.229858782631155, + 25.643803254937644 + ] + }, + "properties": { + "id": "meter-12745", + "maker": "Maker H", + "model": "Model 12745", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.3602105682631, + 26.277355990689976 + ] + }, + "properties": { + "id": "meter-12746", + "maker": "Maker B", + "model": "Model 12746", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.76722009987644, + 28.901929721411665 + ] + }, + "properties": { + "id": "meter-12747", + "maker": "Maker J", + "model": "Model 12747", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.10146001253888, + 21.779438580969966 + ] + }, + "properties": { + "id": "meter-12748", + "maker": "Maker B", + "model": "Model 12748", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.40030904972012, + 20.122529050677212 + ] + }, + "properties": { + "id": "meter-12749", + "maker": "Maker F", + "model": "Model 12749", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.687836632554834, + 31.475503466364053 + ] + }, + "properties": { + "id": "meter-12750", + "maker": "Maker D", + "model": "Model 12750", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.36191377542706, + 25.174095113784524 + ] + }, + "properties": { + "id": "meter-12751", + "maker": "Maker C", + "model": "Model 12751", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.109985326058876, + 20.240689820436483 + ] + }, + "properties": { + "id": "meter-12752", + "maker": "Maker G", + "model": "Model 12752", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.914881669303824, + 26.48792184452863 + ] + }, + "properties": { + "id": "meter-12753", + "maker": "Maker J", + "model": "Model 12753", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.15579262107589, + 26.92914942724482 + ] + }, + "properties": { + "id": "meter-12754", + "maker": "Maker G", + "model": "Model 12754", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.246606553507746, + 29.395633320740487 + ] + }, + "properties": { + "id": "meter-12755", + "maker": "Maker B", + "model": "Model 12755", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.35146888093016, + 29.245754353227902 + ] + }, + "properties": { + "id": "meter-12756", + "maker": "Maker B", + "model": "Model 12756", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.26571356315223, + 24.392202669167652 + ] + }, + "properties": { + "id": "meter-12757", + "maker": "Maker G", + "model": "Model 12757", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.85054372516048, + 30.007780338659853 + ] + }, + "properties": { + "id": "meter-12758", + "maker": "Maker B", + "model": "Model 12758", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.43733026612797, + 31.530200669826755 + ] + }, + "properties": { + "id": "meter-12759", + "maker": "Maker H", + "model": "Model 12759", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.08946428594111, + 27.35400874804813 + ] + }, + "properties": { + "id": "meter-12760", + "maker": "Maker D", + "model": "Model 12760", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.565252147199466, + 22.67333975954733 + ] + }, + "properties": { + "id": "meter-12761", + "maker": "Maker F", + "model": "Model 12761", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.43612850122858, + 19.990357096771845 + ] + }, + "properties": { + "id": "meter-12762", + "maker": "Maker E", + "model": "Model 12762", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.0422594187562, + 18.973252733892323 + ] + }, + "properties": { + "id": "meter-12763", + "maker": "Maker A", + "model": "Model 12763", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.84194163896399, + 28.09378386245067 + ] + }, + "properties": { + "id": "meter-12764", + "maker": "Maker F", + "model": "Model 12764", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.73539897178315, + 22.816151333231016 + ] + }, + "properties": { + "id": "meter-12765", + "maker": "Maker G", + "model": "Model 12765", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.18033330835602, + 21.175495357374864 + ] + }, + "properties": { + "id": "meter-12766", + "maker": "Maker F", + "model": "Model 12766", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.31290979531207, + 27.822205862516615 + ] + }, + "properties": { + "id": "meter-12767", + "maker": "Maker C", + "model": "Model 12767", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.43426967285173, + 22.180613359393007 + ] + }, + "properties": { + "id": "meter-12768", + "maker": "Maker B", + "model": "Model 12768", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.064036649148214, + 26.84792880366909 + ] + }, + "properties": { + "id": "meter-12769", + "maker": "Maker C", + "model": "Model 12769", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.33996370922377, + 19.726334410933866 + ] + }, + "properties": { + "id": "meter-12770", + "maker": "Maker C", + "model": "Model 12770", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.845369878013614, + 20.57519685936796 + ] + }, + "properties": { + "id": "meter-12771", + "maker": "Maker I", + "model": "Model 12771", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.06867545626919, + 25.663864327801583 + ] + }, + "properties": { + "id": "meter-12772", + "maker": "Maker F", + "model": "Model 12772", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.52191150599003, + 20.057577614547785 + ] + }, + "properties": { + "id": "meter-12773", + "maker": "Maker F", + "model": "Model 12773", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.916477180011675, + 28.450050174918616 + ] + }, + "properties": { + "id": "meter-12774", + "maker": "Maker J", + "model": "Model 12774", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.12011245227739, + 28.129229188027725 + ] + }, + "properties": { + "id": "meter-12775", + "maker": "Maker G", + "model": "Model 12775", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.494839847621854, + 30.633686611906747 + ] + }, + "properties": { + "id": "meter-12776", + "maker": "Maker D", + "model": "Model 12776", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.19887028856411, + 20.63855041141237 + ] + }, + "properties": { + "id": "meter-12777", + "maker": "Maker F", + "model": "Model 12777", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.41404856747768, + 31.02539851955448 + ] + }, + "properties": { + "id": "meter-12778", + "maker": "Maker I", + "model": "Model 12778", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.82620756946636, + 22.667690417056956 + ] + }, + "properties": { + "id": "meter-12779", + "maker": "Maker J", + "model": "Model 12779", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20453209347118, + 22.070133162989517 + ] + }, + "properties": { + "id": "meter-12780", + "maker": "Maker H", + "model": "Model 12780", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.383509072061436, + 22.70100115370717 + ] + }, + "properties": { + "id": "meter-12781", + "maker": "Maker F", + "model": "Model 12781", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.4074135211177, + 23.28878826519101 + ] + }, + "properties": { + "id": "meter-12782", + "maker": "Maker A", + "model": "Model 12782", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.99369009813677, + 23.012048025837235 + ] + }, + "properties": { + "id": "meter-12783", + "maker": "Maker C", + "model": "Model 12783", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.39120346509564, + 17.42128651284186 + ] + }, + "properties": { + "id": "meter-12784", + "maker": "Maker C", + "model": "Model 12784", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.39159883676995, + 20.643951899160022 + ] + }, + "properties": { + "id": "meter-12785", + "maker": "Maker J", + "model": "Model 12785", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.36304213448873, + 27.1185623271558 + ] + }, + "properties": { + "id": "meter-12786", + "maker": "Maker G", + "model": "Model 12786", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.72044711196294, + 19.70555427476873 + ] + }, + "properties": { + "id": "meter-12787", + "maker": "Maker B", + "model": "Model 12787", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.16027322456733, + 23.928602905821677 + ] + }, + "properties": { + "id": "meter-12788", + "maker": "Maker J", + "model": "Model 12788", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.98655681555831, + 25.916262148307666 + ] + }, + "properties": { + "id": "meter-12789", + "maker": "Maker F", + "model": "Model 12789", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.42540258059531, + 20.526586003512296 + ] + }, + "properties": { + "id": "meter-12790", + "maker": "Maker J", + "model": "Model 12790", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.00635357420385, + 29.237408897756325 + ] + }, + "properties": { + "id": "meter-12791", + "maker": "Maker B", + "model": "Model 12791", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.50958110746193, + 28.977357324414207 + ] + }, + "properties": { + "id": "meter-12792", + "maker": "Maker B", + "model": "Model 12792", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.82467819252281, + 21.08120425571498 + ] + }, + "properties": { + "id": "meter-12793", + "maker": "Maker B", + "model": "Model 12793", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.7620051860289, + 26.20526758191928 + ] + }, + "properties": { + "id": "meter-12794", + "maker": "Maker C", + "model": "Model 12794", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.008472677042434, + 23.688906095074202 + ] + }, + "properties": { + "id": "meter-12795", + "maker": "Maker J", + "model": "Model 12795", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.523179508828775, + 24.896911018096972 + ] + }, + "properties": { + "id": "meter-12796", + "maker": "Maker I", + "model": "Model 12796", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.38530203876523, + 28.8297277766231 + ] + }, + "properties": { + "id": "meter-12797", + "maker": "Maker G", + "model": "Model 12797", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84492065380959, + 28.972332014286188 + ] + }, + "properties": { + "id": "meter-12798", + "maker": "Maker J", + "model": "Model 12798", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.699893820469924, + 24.101420312397266 + ] + }, + "properties": { + "id": "meter-12799", + "maker": "Maker J", + "model": "Model 12799", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.90303246260056, + 24.69485364763858 + ] + }, + "properties": { + "id": "meter-12800", + "maker": "Maker H", + "model": "Model 12800", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.02232142814562, + 18.52557192821182 + ] + }, + "properties": { + "id": "meter-12801", + "maker": "Maker C", + "model": "Model 12801", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.38610069600413, + 22.776261520891488 + ] + }, + "properties": { + "id": "meter-12802", + "maker": "Maker H", + "model": "Model 12802", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.03246652749391, + 28.454197402534135 + ] + }, + "properties": { + "id": "meter-12803", + "maker": "Maker G", + "model": "Model 12803", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.73696763119595, + 27.874538791180623 + ] + }, + "properties": { + "id": "meter-12804", + "maker": "Maker A", + "model": "Model 12804", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.219239535798465, + 22.349642737623995 + ] + }, + "properties": { + "id": "meter-12805", + "maker": "Maker C", + "model": "Model 12805", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.64080671765287, + 29.26851514703297 + ] + }, + "properties": { + "id": "meter-12806", + "maker": "Maker I", + "model": "Model 12806", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.409847110198015, + 23.638356622305334 + ] + }, + "properties": { + "id": "meter-12807", + "maker": "Maker B", + "model": "Model 12807", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.25047933911925, + 28.660484545612817 + ] + }, + "properties": { + "id": "meter-12808", + "maker": "Maker I", + "model": "Model 12808", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.06727034899932, + 27.164433038320894 + ] + }, + "properties": { + "id": "meter-12809", + "maker": "Maker G", + "model": "Model 12809", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.27123350673851, + 24.893163755937938 + ] + }, + "properties": { + "id": "meter-12810", + "maker": "Maker A", + "model": "Model 12810", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.10960649036529, + 30.306885451490857 + ] + }, + "properties": { + "id": "meter-12811", + "maker": "Maker I", + "model": "Model 12811", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.25849591617988, + 22.261419601769592 + ] + }, + "properties": { + "id": "meter-12812", + "maker": "Maker I", + "model": "Model 12812", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.85560188949468, + 22.341858431836243 + ] + }, + "properties": { + "id": "meter-12813", + "maker": "Maker J", + "model": "Model 12813", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.08675668369661, + 25.55828855288439 + ] + }, + "properties": { + "id": "meter-12814", + "maker": "Maker F", + "model": "Model 12814", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.05846979707598, + 21.781848186888887 + ] + }, + "properties": { + "id": "meter-12815", + "maker": "Maker I", + "model": "Model 12815", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.50910580702016, + 25.138073159013 + ] + }, + "properties": { + "id": "meter-12816", + "maker": "Maker J", + "model": "Model 12816", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.23557074136886, + 24.99396263557883 + ] + }, + "properties": { + "id": "meter-12817", + "maker": "Maker A", + "model": "Model 12817", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.53073029713719, + 24.473470305558177 + ] + }, + "properties": { + "id": "meter-12818", + "maker": "Maker D", + "model": "Model 12818", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.8834379015082, + 25.311331128912656 + ] + }, + "properties": { + "id": "meter-12819", + "maker": "Maker I", + "model": "Model 12819", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.091375411132276, + 25.748258737070863 + ] + }, + "properties": { + "id": "meter-12820", + "maker": "Maker I", + "model": "Model 12820", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.4018605139474, + 26.809975367526338 + ] + }, + "properties": { + "id": "meter-12821", + "maker": "Maker F", + "model": "Model 12821", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.82245213816938, + 29.488353501937816 + ] + }, + "properties": { + "id": "meter-12822", + "maker": "Maker I", + "model": "Model 12822", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.57812065651713, + 31.429847810836698 + ] + }, + "properties": { + "id": "meter-12823", + "maker": "Maker C", + "model": "Model 12823", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.754686701463186, + 26.359604507419224 + ] + }, + "properties": { + "id": "meter-12824", + "maker": "Maker H", + "model": "Model 12824", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.99544212737788, + 30.592101161446813 + ] + }, + "properties": { + "id": "meter-12825", + "maker": "Maker A", + "model": "Model 12825", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.17237522491453, + 25.39700985153201 + ] + }, + "properties": { + "id": "meter-12826", + "maker": "Maker A", + "model": "Model 12826", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.000652795807, + 23.111229378936475 + ] + }, + "properties": { + "id": "meter-12827", + "maker": "Maker J", + "model": "Model 12827", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.78470222652211, + 24.479517833523552 + ] + }, + "properties": { + "id": "meter-12828", + "maker": "Maker H", + "model": "Model 12828", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.28679308618592, + 27.405442182671944 + ] + }, + "properties": { + "id": "meter-12829", + "maker": "Maker I", + "model": "Model 12829", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.08025638774927, + 28.20888965475804 + ] + }, + "properties": { + "id": "meter-12830", + "maker": "Maker D", + "model": "Model 12830", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.6398811261423, + 29.195690651027682 + ] + }, + "properties": { + "id": "meter-12831", + "maker": "Maker B", + "model": "Model 12831", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.24204588336936, + 21.7902022714359 + ] + }, + "properties": { + "id": "meter-12832", + "maker": "Maker I", + "model": "Model 12832", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.65509776734288, + 23.82685115090157 + ] + }, + "properties": { + "id": "meter-12833", + "maker": "Maker I", + "model": "Model 12833", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.706316881393505, + 26.77463082345539 + ] + }, + "properties": { + "id": "meter-12834", + "maker": "Maker G", + "model": "Model 12834", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.4827621700063, + 27.662721168225914 + ] + }, + "properties": { + "id": "meter-12835", + "maker": "Maker A", + "model": "Model 12835", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.2332419044226, + 26.593753581288194 + ] + }, + "properties": { + "id": "meter-12836", + "maker": "Maker J", + "model": "Model 12836", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.00682129745276, + 23.217259754828714 + ] + }, + "properties": { + "id": "meter-12837", + "maker": "Maker D", + "model": "Model 12837", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.398025756042315, + 23.96240375983191 + ] + }, + "properties": { + "id": "meter-12838", + "maker": "Maker A", + "model": "Model 12838", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.20403067818748, + 20.27628338717091 + ] + }, + "properties": { + "id": "meter-12839", + "maker": "Maker B", + "model": "Model 12839", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.26043771850797, + 25.180405521408666 + ] + }, + "properties": { + "id": "meter-12840", + "maker": "Maker H", + "model": "Model 12840", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.76736654456078, + 21.25582176893227 + ] + }, + "properties": { + "id": "meter-12841", + "maker": "Maker D", + "model": "Model 12841", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.74043974501021, + 25.963026606154763 + ] + }, + "properties": { + "id": "meter-12842", + "maker": "Maker J", + "model": "Model 12842", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.066502793581144, + 19.899906300327494 + ] + }, + "properties": { + "id": "meter-12843", + "maker": "Maker J", + "model": "Model 12843", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.66782801152305, + 29.550483438467207 + ] + }, + "properties": { + "id": "meter-12844", + "maker": "Maker D", + "model": "Model 12844", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.21784530767973, + 26.40657910164593 + ] + }, + "properties": { + "id": "meter-12845", + "maker": "Maker I", + "model": "Model 12845", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.773568528077405, + 25.759062605418666 + ] + }, + "properties": { + "id": "meter-12846", + "maker": "Maker E", + "model": "Model 12846", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.39040822444389, + 26.25508704466113 + ] + }, + "properties": { + "id": "meter-12847", + "maker": "Maker J", + "model": "Model 12847", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.81760661027361, + 20.352477374871803 + ] + }, + "properties": { + "id": "meter-12848", + "maker": "Maker A", + "model": "Model 12848", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.94295729668051, + 30.032532703399195 + ] + }, + "properties": { + "id": "meter-12849", + "maker": "Maker H", + "model": "Model 12849", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.972516355726235, + 24.208275912402378 + ] + }, + "properties": { + "id": "meter-12850", + "maker": "Maker J", + "model": "Model 12850", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.62378722659463, + 18.521687697916445 + ] + }, + "properties": { + "id": "meter-12851", + "maker": "Maker J", + "model": "Model 12851", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.43261448426968, + 23.840705223305303 + ] + }, + "properties": { + "id": "meter-12852", + "maker": "Maker G", + "model": "Model 12852", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.57283816281783, + 21.233635400542475 + ] + }, + "properties": { + "id": "meter-12853", + "maker": "Maker E", + "model": "Model 12853", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.21225734426076, + 27.601283317662073 + ] + }, + "properties": { + "id": "meter-12854", + "maker": "Maker F", + "model": "Model 12854", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.97877660264009, + 25.79622172343732 + ] + }, + "properties": { + "id": "meter-12855", + "maker": "Maker B", + "model": "Model 12855", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.17412280472358, + 18.273274814727763 + ] + }, + "properties": { + "id": "meter-12856", + "maker": "Maker J", + "model": "Model 12856", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.51422128229814, + 24.157049875032584 + ] + }, + "properties": { + "id": "meter-12857", + "maker": "Maker F", + "model": "Model 12857", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.30858948230467, + 23.333863370611954 + ] + }, + "properties": { + "id": "meter-12858", + "maker": "Maker D", + "model": "Model 12858", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.183638823387795, + 24.400790997005572 + ] + }, + "properties": { + "id": "meter-12859", + "maker": "Maker B", + "model": "Model 12859", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13375044037789, + 19.44932237661117 + ] + }, + "properties": { + "id": "meter-12860", + "maker": "Maker J", + "model": "Model 12860", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.743824801794354, + 22.228978726583144 + ] + }, + "properties": { + "id": "meter-12861", + "maker": "Maker G", + "model": "Model 12861", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.400462807456826, + 29.000449981505408 + ] + }, + "properties": { + "id": "meter-12862", + "maker": "Maker D", + "model": "Model 12862", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.316815699231555, + 19.83079177471894 + ] + }, + "properties": { + "id": "meter-12863", + "maker": "Maker A", + "model": "Model 12863", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.60163277224713, + 25.359431360605697 + ] + }, + "properties": { + "id": "meter-12864", + "maker": "Maker C", + "model": "Model 12864", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.52012202488488, + 20.970494005927087 + ] + }, + "properties": { + "id": "meter-12865", + "maker": "Maker A", + "model": "Model 12865", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.115613459395654, + 29.22613565861156 + ] + }, + "properties": { + "id": "meter-12866", + "maker": "Maker A", + "model": "Model 12866", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21786137407253, + 23.954533998030556 + ] + }, + "properties": { + "id": "meter-12867", + "maker": "Maker D", + "model": "Model 12867", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04564833350365, + 26.228382542231806 + ] + }, + "properties": { + "id": "meter-12868", + "maker": "Maker A", + "model": "Model 12868", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.77817556955057, + 19.472447187653323 + ] + }, + "properties": { + "id": "meter-12869", + "maker": "Maker B", + "model": "Model 12869", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.11997024288438, + 26.351333684434138 + ] + }, + "properties": { + "id": "meter-12870", + "maker": "Maker G", + "model": "Model 12870", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.97480132628589, + 27.51167772935942 + ] + }, + "properties": { + "id": "meter-12871", + "maker": "Maker H", + "model": "Model 12871", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.57871417225383, + 28.717477957901092 + ] + }, + "properties": { + "id": "meter-12872", + "maker": "Maker H", + "model": "Model 12872", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.87868512341517, + 21.04618056336093 + ] + }, + "properties": { + "id": "meter-12873", + "maker": "Maker H", + "model": "Model 12873", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.38279199977245, + 23.945025530453997 + ] + }, + "properties": { + "id": "meter-12874", + "maker": "Maker G", + "model": "Model 12874", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.17427722617079, + 20.90687670522432 + ] + }, + "properties": { + "id": "meter-12875", + "maker": "Maker E", + "model": "Model 12875", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.4002452932929, + 21.234378941313413 + ] + }, + "properties": { + "id": "meter-12876", + "maker": "Maker E", + "model": "Model 12876", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.32556732284038, + 27.374279006919906 + ] + }, + "properties": { + "id": "meter-12877", + "maker": "Maker H", + "model": "Model 12877", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.78880578604647, + 26.586191854375834 + ] + }, + "properties": { + "id": "meter-12878", + "maker": "Maker F", + "model": "Model 12878", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9658183668361, + 19.955935620564546 + ] + }, + "properties": { + "id": "meter-12879", + "maker": "Maker H", + "model": "Model 12879", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11213945590647, + 22.298457863875292 + ] + }, + "properties": { + "id": "meter-12880", + "maker": "Maker D", + "model": "Model 12880", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.5181846760312, + 31.494651307125224 + ] + }, + "properties": { + "id": "meter-12881", + "maker": "Maker I", + "model": "Model 12881", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.397097925048726, + 23.025061096642133 + ] + }, + "properties": { + "id": "meter-12882", + "maker": "Maker D", + "model": "Model 12882", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.08005128613257, + 23.656193048577833 + ] + }, + "properties": { + "id": "meter-12883", + "maker": "Maker H", + "model": "Model 12883", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.532320350870734, + 21.710518166644402 + ] + }, + "properties": { + "id": "meter-12884", + "maker": "Maker G", + "model": "Model 12884", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.57571418827744, + 20.674633385307025 + ] + }, + "properties": { + "id": "meter-12885", + "maker": "Maker H", + "model": "Model 12885", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.16483036239487, + 20.390376722006994 + ] + }, + "properties": { + "id": "meter-12886", + "maker": "Maker B", + "model": "Model 12886", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.53045973988284, + 21.564529940821885 + ] + }, + "properties": { + "id": "meter-12887", + "maker": "Maker J", + "model": "Model 12887", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.06218045199769, + 25.725969219509032 + ] + }, + "properties": { + "id": "meter-12888", + "maker": "Maker F", + "model": "Model 12888", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.284985959331024, + 23.314278826806735 + ] + }, + "properties": { + "id": "meter-12889", + "maker": "Maker J", + "model": "Model 12889", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.55904156133474, + 19.276757054566684 + ] + }, + "properties": { + "id": "meter-12890", + "maker": "Maker E", + "model": "Model 12890", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.40665219465807, + 22.02477478631206 + ] + }, + "properties": { + "id": "meter-12891", + "maker": "Maker C", + "model": "Model 12891", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.230085868097156, + 22.11907885081922 + ] + }, + "properties": { + "id": "meter-12892", + "maker": "Maker I", + "model": "Model 12892", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.28324532738578, + 18.83949770496622 + ] + }, + "properties": { + "id": "meter-12893", + "maker": "Maker E", + "model": "Model 12893", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.251833553465, + 22.200603967131947 + ] + }, + "properties": { + "id": "meter-12894", + "maker": "Maker C", + "model": "Model 12894", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.88449293888285, + 25.8237526921665 + ] + }, + "properties": { + "id": "meter-12895", + "maker": "Maker J", + "model": "Model 12895", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.743540469915814, + 28.08234497070045 + ] + }, + "properties": { + "id": "meter-12896", + "maker": "Maker F", + "model": "Model 12896", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.003047793182816, + 26.523250364497677 + ] + }, + "properties": { + "id": "meter-12897", + "maker": "Maker B", + "model": "Model 12897", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.234460255431244, + 22.56469602427473 + ] + }, + "properties": { + "id": "meter-12898", + "maker": "Maker A", + "model": "Model 12898", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.62527947759818, + 27.870824329113965 + ] + }, + "properties": { + "id": "meter-12899", + "maker": "Maker J", + "model": "Model 12899", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.7345883512458, + 23.753577164501866 + ] + }, + "properties": { + "id": "meter-12900", + "maker": "Maker G", + "model": "Model 12900", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67381646161601, + 27.343644306946267 + ] + }, + "properties": { + "id": "meter-12901", + "maker": "Maker G", + "model": "Model 12901", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.066570160635, + 24.318105789813124 + ] + }, + "properties": { + "id": "meter-12902", + "maker": "Maker B", + "model": "Model 12902", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.773980240222365, + 18.92108359238916 + ] + }, + "properties": { + "id": "meter-12903", + "maker": "Maker G", + "model": "Model 12903", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.164718047728456, + 23.954942763799735 + ] + }, + "properties": { + "id": "meter-12904", + "maker": "Maker H", + "model": "Model 12904", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.49254989621835, + 29.759215202277645 + ] + }, + "properties": { + "id": "meter-12905", + "maker": "Maker F", + "model": "Model 12905", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97041887063482, + 18.217935581363644 + ] + }, + "properties": { + "id": "meter-12906", + "maker": "Maker G", + "model": "Model 12906", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.59132834614406, + 24.32096885508451 + ] + }, + "properties": { + "id": "meter-12907", + "maker": "Maker G", + "model": "Model 12907", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.16707015509338, + 29.077274101318416 + ] + }, + "properties": { + "id": "meter-12908", + "maker": "Maker I", + "model": "Model 12908", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.96312261032975, + 29.5245378020807 + ] + }, + "properties": { + "id": "meter-12909", + "maker": "Maker G", + "model": "Model 12909", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.249076932258774, + 19.406054546889916 + ] + }, + "properties": { + "id": "meter-12910", + "maker": "Maker E", + "model": "Model 12910", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.32901429148209, + 29.563772056031784 + ] + }, + "properties": { + "id": "meter-12911", + "maker": "Maker H", + "model": "Model 12911", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.584654995992686, + 25.10771152505452 + ] + }, + "properties": { + "id": "meter-12912", + "maker": "Maker D", + "model": "Model 12912", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.66335086555632, + 18.279037816412465 + ] + }, + "properties": { + "id": "meter-12913", + "maker": "Maker I", + "model": "Model 12913", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.288741174425795, + 22.71610639351201 + ] + }, + "properties": { + "id": "meter-12914", + "maker": "Maker I", + "model": "Model 12914", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.52240413168355, + 26.637160852770588 + ] + }, + "properties": { + "id": "meter-12915", + "maker": "Maker J", + "model": "Model 12915", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.392611170896615, + 22.405320108632882 + ] + }, + "properties": { + "id": "meter-12916", + "maker": "Maker E", + "model": "Model 12916", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.40686483612966, + 28.41403757230737 + ] + }, + "properties": { + "id": "meter-12917", + "maker": "Maker G", + "model": "Model 12917", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.190385444582276, + 22.102704219908386 + ] + }, + "properties": { + "id": "meter-12918", + "maker": "Maker A", + "model": "Model 12918", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.25132956759246, + 29.50638555639864 + ] + }, + "properties": { + "id": "meter-12919", + "maker": "Maker G", + "model": "Model 12919", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.70076895105652, + 20.404698654851032 + ] + }, + "properties": { + "id": "meter-12920", + "maker": "Maker E", + "model": "Model 12920", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.36701834230924, + 27.254054657092716 + ] + }, + "properties": { + "id": "meter-12921", + "maker": "Maker I", + "model": "Model 12921", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.32965379474659, + 19.85660606840167 + ] + }, + "properties": { + "id": "meter-12922", + "maker": "Maker A", + "model": "Model 12922", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.28881015023515, + 22.960833492827554 + ] + }, + "properties": { + "id": "meter-12923", + "maker": "Maker A", + "model": "Model 12923", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.74197742065982, + 25.551413399406854 + ] + }, + "properties": { + "id": "meter-12924", + "maker": "Maker I", + "model": "Model 12924", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.71679183542699, + 26.720645589873094 + ] + }, + "properties": { + "id": "meter-12925", + "maker": "Maker F", + "model": "Model 12925", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50878652236141, + 27.065713821106606 + ] + }, + "properties": { + "id": "meter-12926", + "maker": "Maker F", + "model": "Model 12926", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02216456220293, + 18.30308864433971 + ] + }, + "properties": { + "id": "meter-12927", + "maker": "Maker E", + "model": "Model 12927", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.287716665836555, + 23.388617846503927 + ] + }, + "properties": { + "id": "meter-12928", + "maker": "Maker A", + "model": "Model 12928", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0635219460625, + 25.09118551729499 + ] + }, + "properties": { + "id": "meter-12929", + "maker": "Maker E", + "model": "Model 12929", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.881557520393145, + 24.537216925027185 + ] + }, + "properties": { + "id": "meter-12930", + "maker": "Maker C", + "model": "Model 12930", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.1027108895367, + 20.867756258906404 + ] + }, + "properties": { + "id": "meter-12931", + "maker": "Maker D", + "model": "Model 12931", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.214361206150436, + 22.86972243057346 + ] + }, + "properties": { + "id": "meter-12932", + "maker": "Maker D", + "model": "Model 12932", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.92179147480384, + 22.828652898393635 + ] + }, + "properties": { + "id": "meter-12933", + "maker": "Maker C", + "model": "Model 12933", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.46833212200221, + 21.23767506646452 + ] + }, + "properties": { + "id": "meter-12934", + "maker": "Maker J", + "model": "Model 12934", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.44818983444344, + 24.3708707211218 + ] + }, + "properties": { + "id": "meter-12935", + "maker": "Maker A", + "model": "Model 12935", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.08526183351704, + 28.421086990729894 + ] + }, + "properties": { + "id": "meter-12936", + "maker": "Maker H", + "model": "Model 12936", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.94097153982314, + 23.969369009036406 + ] + }, + "properties": { + "id": "meter-12937", + "maker": "Maker C", + "model": "Model 12937", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.58582725913904, + 26.826867597647116 + ] + }, + "properties": { + "id": "meter-12938", + "maker": "Maker F", + "model": "Model 12938", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.6457821070837, + 26.684302063595524 + ] + }, + "properties": { + "id": "meter-12939", + "maker": "Maker J", + "model": "Model 12939", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.25684567552531, + 22.63614328466174 + ] + }, + "properties": { + "id": "meter-12940", + "maker": "Maker D", + "model": "Model 12940", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.81449720339744, + 19.136062865439712 + ] + }, + "properties": { + "id": "meter-12941", + "maker": "Maker I", + "model": "Model 12941", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.097206253759225, + 28.0368843453321 + ] + }, + "properties": { + "id": "meter-12942", + "maker": "Maker J", + "model": "Model 12942", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.97136466477082, + 30.694985888175488 + ] + }, + "properties": { + "id": "meter-12943", + "maker": "Maker B", + "model": "Model 12943", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.381855862255385, + 20.002130964446078 + ] + }, + "properties": { + "id": "meter-12944", + "maker": "Maker B", + "model": "Model 12944", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.073344948173, + 20.651093888771598 + ] + }, + "properties": { + "id": "meter-12945", + "maker": "Maker F", + "model": "Model 12945", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.8437787812933, + 19.274847831023283 + ] + }, + "properties": { + "id": "meter-12946", + "maker": "Maker C", + "model": "Model 12946", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.520155297653574, + 23.305331353521375 + ] + }, + "properties": { + "id": "meter-12947", + "maker": "Maker F", + "model": "Model 12947", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.90366924824308, + 26.397960784982867 + ] + }, + "properties": { + "id": "meter-12948", + "maker": "Maker A", + "model": "Model 12948", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.55523584353406, + 26.209520582260037 + ] + }, + "properties": { + "id": "meter-12949", + "maker": "Maker F", + "model": "Model 12949", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10751638774886, + 23.263978844113126 + ] + }, + "properties": { + "id": "meter-12950", + "maker": "Maker H", + "model": "Model 12950", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.38236848784848, + 26.903200636955784 + ] + }, + "properties": { + "id": "meter-12951", + "maker": "Maker D", + "model": "Model 12951", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.45263195847566, + 19.26299875404429 + ] + }, + "properties": { + "id": "meter-12952", + "maker": "Maker G", + "model": "Model 12952", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.34219797242626, + 30.976966236672318 + ] + }, + "properties": { + "id": "meter-12953", + "maker": "Maker E", + "model": "Model 12953", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.05944968978045, + 23.653401999779568 + ] + }, + "properties": { + "id": "meter-12954", + "maker": "Maker A", + "model": "Model 12954", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.17411672198315, + 20.407310315788102 + ] + }, + "properties": { + "id": "meter-12955", + "maker": "Maker E", + "model": "Model 12955", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.52345275823501, + 25.192930322494966 + ] + }, + "properties": { + "id": "meter-12956", + "maker": "Maker J", + "model": "Model 12956", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.35867997573393, + 24.84088956421798 + ] + }, + "properties": { + "id": "meter-12957", + "maker": "Maker F", + "model": "Model 12957", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.04307861016015, + 22.75926825717317 + ] + }, + "properties": { + "id": "meter-12958", + "maker": "Maker H", + "model": "Model 12958", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.93611977053801, + 27.498015062962903 + ] + }, + "properties": { + "id": "meter-12959", + "maker": "Maker E", + "model": "Model 12959", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.242245069847364, + 23.293729469829053 + ] + }, + "properties": { + "id": "meter-12960", + "maker": "Maker I", + "model": "Model 12960", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.228851393037175, + 20.20474117448319 + ] + }, + "properties": { + "id": "meter-12961", + "maker": "Maker B", + "model": "Model 12961", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.19095715183352, + 21.015043428058497 + ] + }, + "properties": { + "id": "meter-12962", + "maker": "Maker I", + "model": "Model 12962", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.57619409249047, + 20.706956609899013 + ] + }, + "properties": { + "id": "meter-12963", + "maker": "Maker A", + "model": "Model 12963", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11714526122472, + 20.971253854013845 + ] + }, + "properties": { + "id": "meter-12964", + "maker": "Maker C", + "model": "Model 12964", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.37195834097018, + 28.777108701459273 + ] + }, + "properties": { + "id": "meter-12965", + "maker": "Maker E", + "model": "Model 12965", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.67705163647341, + 29.126465212001463 + ] + }, + "properties": { + "id": "meter-12966", + "maker": "Maker I", + "model": "Model 12966", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.510784318398066, + 25.30890411480815 + ] + }, + "properties": { + "id": "meter-12967", + "maker": "Maker J", + "model": "Model 12967", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.569740504726774, + 20.177022188998645 + ] + }, + "properties": { + "id": "meter-12968", + "maker": "Maker H", + "model": "Model 12968", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.49512528550952, + 25.278977085264728 + ] + }, + "properties": { + "id": "meter-12969", + "maker": "Maker F", + "model": "Model 12969", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.13880919012344, + 18.755146399034558 + ] + }, + "properties": { + "id": "meter-12970", + "maker": "Maker I", + "model": "Model 12970", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.61884174294001, + 18.157877893146534 + ] + }, + "properties": { + "id": "meter-12971", + "maker": "Maker E", + "model": "Model 12971", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.126713742127976, + 24.611495564017225 + ] + }, + "properties": { + "id": "meter-12972", + "maker": "Maker D", + "model": "Model 12972", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.74465843242457, + 22.502128706097956 + ] + }, + "properties": { + "id": "meter-12973", + "maker": "Maker J", + "model": "Model 12973", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.329888961915515, + 22.134905679520024 + ] + }, + "properties": { + "id": "meter-12974", + "maker": "Maker I", + "model": "Model 12974", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.18449159573143, + 28.5204929009606 + ] + }, + "properties": { + "id": "meter-12975", + "maker": "Maker B", + "model": "Model 12975", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.21541571829376, + 19.500345296122543 + ] + }, + "properties": { + "id": "meter-12976", + "maker": "Maker I", + "model": "Model 12976", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.299382190184446, + 21.549569407200437 + ] + }, + "properties": { + "id": "meter-12977", + "maker": "Maker A", + "model": "Model 12977", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.82492811565041, + 27.468876675595563 + ] + }, + "properties": { + "id": "meter-12978", + "maker": "Maker E", + "model": "Model 12978", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.05822225454434, + 25.92556484717706 + ] + }, + "properties": { + "id": "meter-12979", + "maker": "Maker I", + "model": "Model 12979", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.10204454766724, + 25.02853711584615 + ] + }, + "properties": { + "id": "meter-12980", + "maker": "Maker I", + "model": "Model 12980", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.93095010277238, + 21.539558714075653 + ] + }, + "properties": { + "id": "meter-12981", + "maker": "Maker A", + "model": "Model 12981", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.1265824677049, + 29.96742016674464 + ] + }, + "properties": { + "id": "meter-12982", + "maker": "Maker F", + "model": "Model 12982", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.43280552551514, + 24.61099425873742 + ] + }, + "properties": { + "id": "meter-12983", + "maker": "Maker B", + "model": "Model 12983", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.60862385041142, + 24.27786756755363 + ] + }, + "properties": { + "id": "meter-12984", + "maker": "Maker F", + "model": "Model 12984", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.030343591853196, + 18.22675759610378 + ] + }, + "properties": { + "id": "meter-12985", + "maker": "Maker J", + "model": "Model 12985", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.654739535389695, + 26.35900399307954 + ] + }, + "properties": { + "id": "meter-12986", + "maker": "Maker I", + "model": "Model 12986", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.93788887059393, + 21.476950692244543 + ] + }, + "properties": { + "id": "meter-12987", + "maker": "Maker I", + "model": "Model 12987", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.56443441612798, + 19.549061150812946 + ] + }, + "properties": { + "id": "meter-12988", + "maker": "Maker D", + "model": "Model 12988", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.18465011854922, + 30.880379640650627 + ] + }, + "properties": { + "id": "meter-12989", + "maker": "Maker D", + "model": "Model 12989", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.730826618479114, + 22.089061330870948 + ] + }, + "properties": { + "id": "meter-12990", + "maker": "Maker F", + "model": "Model 12990", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.72008644687001, + 24.75452627693386 + ] + }, + "properties": { + "id": "meter-12991", + "maker": "Maker I", + "model": "Model 12991", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.50386972604548, + 20.945004876496576 + ] + }, + "properties": { + "id": "meter-12992", + "maker": "Maker I", + "model": "Model 12992", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.37911806191312, + 25.397508927152018 + ] + }, + "properties": { + "id": "meter-12993", + "maker": "Maker B", + "model": "Model 12993", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.111066949117244, + 25.811325985672497 + ] + }, + "properties": { + "id": "meter-12994", + "maker": "Maker A", + "model": "Model 12994", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.030246971627, + 19.621306733811792 + ] + }, + "properties": { + "id": "meter-12995", + "maker": "Maker G", + "model": "Model 12995", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.396996915170476, + 26.438703701919582 + ] + }, + "properties": { + "id": "meter-12996", + "maker": "Maker J", + "model": "Model 12996", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.64056930900435, + 28.33046038226546 + ] + }, + "properties": { + "id": "meter-12997", + "maker": "Maker H", + "model": "Model 12997", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.427978140482125, + 26.58360847944871 + ] + }, + "properties": { + "id": "meter-12998", + "maker": "Maker E", + "model": "Model 12998", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.346383790810414, + 24.7142412291496 + ] + }, + "properties": { + "id": "meter-12999", + "maker": "Maker E", + "model": "Model 12999", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.73370282812171, + 30.01646812740408 + ] + }, + "properties": { + "id": "meter-13000", + "maker": "Maker F", + "model": "Model 13000", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.16756921926415, + 22.684519012715093 + ] + }, + "properties": { + "id": "meter-13001", + "maker": "Maker E", + "model": "Model 13001", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.85692765376662, + 26.382909552381584 + ] + }, + "properties": { + "id": "meter-13002", + "maker": "Maker J", + "model": "Model 13002", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.00775383273602, + 26.447132308969444 + ] + }, + "properties": { + "id": "meter-13003", + "maker": "Maker A", + "model": "Model 13003", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.59832345161953, + 23.095475559768513 + ] + }, + "properties": { + "id": "meter-13004", + "maker": "Maker I", + "model": "Model 13004", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.27276892465088, + 29.70100423042571 + ] + }, + "properties": { + "id": "meter-13005", + "maker": "Maker H", + "model": "Model 13005", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.084067848679034, + 26.457496532831595 + ] + }, + "properties": { + "id": "meter-13006", + "maker": "Maker A", + "model": "Model 13006", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.85893138454969, + 22.1924120856988 + ] + }, + "properties": { + "id": "meter-13007", + "maker": "Maker J", + "model": "Model 13007", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.02213554607158, + 20.450786932266666 + ] + }, + "properties": { + "id": "meter-13008", + "maker": "Maker B", + "model": "Model 13008", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.354297757168155, + 25.854422448128958 + ] + }, + "properties": { + "id": "meter-13009", + "maker": "Maker G", + "model": "Model 13009", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.741108268970486, + 28.96759478171345 + ] + }, + "properties": { + "id": "meter-13010", + "maker": "Maker H", + "model": "Model 13010", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15681592451269, + 22.116676968253177 + ] + }, + "properties": { + "id": "meter-13011", + "maker": "Maker B", + "model": "Model 13011", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.39529891876646, + 17.99161395688511 + ] + }, + "properties": { + "id": "meter-13012", + "maker": "Maker B", + "model": "Model 13012", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.660467636289965, + 23.541310018916707 + ] + }, + "properties": { + "id": "meter-13013", + "maker": "Maker C", + "model": "Model 13013", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.93652854465395, + 27.14190733744804 + ] + }, + "properties": { + "id": "meter-13014", + "maker": "Maker G", + "model": "Model 13014", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.4706223419897, + 24.36107374879088 + ] + }, + "properties": { + "id": "meter-13015", + "maker": "Maker E", + "model": "Model 13015", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.16919606871514, + 29.514835904765377 + ] + }, + "properties": { + "id": "meter-13016", + "maker": "Maker C", + "model": "Model 13016", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.64295748031138, + 20.3284820034748 + ] + }, + "properties": { + "id": "meter-13017", + "maker": "Maker D", + "model": "Model 13017", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.08684149950551, + 19.282929955176144 + ] + }, + "properties": { + "id": "meter-13018", + "maker": "Maker D", + "model": "Model 13018", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.59096540841149, + 23.817412431042158 + ] + }, + "properties": { + "id": "meter-13019", + "maker": "Maker E", + "model": "Model 13019", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.13384778158064, + 20.285179642408668 + ] + }, + "properties": { + "id": "meter-13020", + "maker": "Maker F", + "model": "Model 13020", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.52800385791991, + 22.46024044393859 + ] + }, + "properties": { + "id": "meter-13021", + "maker": "Maker D", + "model": "Model 13021", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.35579207008349, + 17.286000442946143 + ] + }, + "properties": { + "id": "meter-13022", + "maker": "Maker C", + "model": "Model 13022", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.431714614619004, + 28.254427258716092 + ] + }, + "properties": { + "id": "meter-13023", + "maker": "Maker A", + "model": "Model 13023", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.129233585284005, + 21.4452235958876 + ] + }, + "properties": { + "id": "meter-13024", + "maker": "Maker G", + "model": "Model 13024", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.53553856261676, + 23.691001531598822 + ] + }, + "properties": { + "id": "meter-13025", + "maker": "Maker E", + "model": "Model 13025", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.40145464229622, + 28.924440618563523 + ] + }, + "properties": { + "id": "meter-13026", + "maker": "Maker I", + "model": "Model 13026", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.24854121378052, + 25.780592001698487 + ] + }, + "properties": { + "id": "meter-13027", + "maker": "Maker E", + "model": "Model 13027", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.75821321770357, + 18.812322423362655 + ] + }, + "properties": { + "id": "meter-13028", + "maker": "Maker F", + "model": "Model 13028", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.856309544166265, + 24.297846243153465 + ] + }, + "properties": { + "id": "meter-13029", + "maker": "Maker E", + "model": "Model 13029", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.66190794731914, + 29.34545727876438 + ] + }, + "properties": { + "id": "meter-13030", + "maker": "Maker E", + "model": "Model 13030", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.71797494771507, + 19.14319713168878 + ] + }, + "properties": { + "id": "meter-13031", + "maker": "Maker C", + "model": "Model 13031", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.257626959486124, + 24.28900364791862 + ] + }, + "properties": { + "id": "meter-13032", + "maker": "Maker B", + "model": "Model 13032", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.31707656650109, + 20.682637723209453 + ] + }, + "properties": { + "id": "meter-13033", + "maker": "Maker J", + "model": "Model 13033", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.88394958978404, + 28.552103422424686 + ] + }, + "properties": { + "id": "meter-13034", + "maker": "Maker E", + "model": "Model 13034", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.07572535918917, + 21.09329582318876 + ] + }, + "properties": { + "id": "meter-13035", + "maker": "Maker A", + "model": "Model 13035", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.77571145571645, + 26.77910152324673 + ] + }, + "properties": { + "id": "meter-13036", + "maker": "Maker F", + "model": "Model 13036", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.63299990769011, + 31.070329403075313 + ] + }, + "properties": { + "id": "meter-13037", + "maker": "Maker D", + "model": "Model 13037", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.060230727614496, + 17.22802897914537 + ] + }, + "properties": { + "id": "meter-13038", + "maker": "Maker A", + "model": "Model 13038", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.13129591476915, + 26.011064990098106 + ] + }, + "properties": { + "id": "meter-13039", + "maker": "Maker I", + "model": "Model 13039", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.007298549571225, + 18.50997574404753 + ] + }, + "properties": { + "id": "meter-13040", + "maker": "Maker E", + "model": "Model 13040", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.256015750694374, + 19.39913678864452 + ] + }, + "properties": { + "id": "meter-13041", + "maker": "Maker F", + "model": "Model 13041", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.38628188441667, + 21.68664529753484 + ] + }, + "properties": { + "id": "meter-13042", + "maker": "Maker G", + "model": "Model 13042", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.451827909143304, + 23.459586460534386 + ] + }, + "properties": { + "id": "meter-13043", + "maker": "Maker C", + "model": "Model 13043", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03183653409761, + 26.14783478258842 + ] + }, + "properties": { + "id": "meter-13044", + "maker": "Maker B", + "model": "Model 13044", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.55183259636169, + 20.738620454498736 + ] + }, + "properties": { + "id": "meter-13045", + "maker": "Maker C", + "model": "Model 13045", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.77840622027003, + 25.81033527215387 + ] + }, + "properties": { + "id": "meter-13046", + "maker": "Maker C", + "model": "Model 13046", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.61979605795574, + 29.201074892059495 + ] + }, + "properties": { + "id": "meter-13047", + "maker": "Maker H", + "model": "Model 13047", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.64062230535288, + 25.006711007626677 + ] + }, + "properties": { + "id": "meter-13048", + "maker": "Maker B", + "model": "Model 13048", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.55453742058813, + 27.099553624258863 + ] + }, + "properties": { + "id": "meter-13049", + "maker": "Maker B", + "model": "Model 13049", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.745867539834606, + 22.824039548026626 + ] + }, + "properties": { + "id": "meter-13050", + "maker": "Maker C", + "model": "Model 13050", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.12439611832374, + 24.68312370319452 + ] + }, + "properties": { + "id": "meter-13051", + "maker": "Maker I", + "model": "Model 13051", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.85801594919438, + 22.83662790216186 + ] + }, + "properties": { + "id": "meter-13052", + "maker": "Maker E", + "model": "Model 13052", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.77207258542197, + 21.493578511016583 + ] + }, + "properties": { + "id": "meter-13053", + "maker": "Maker E", + "model": "Model 13053", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.945322736363615, + 23.384738948125705 + ] + }, + "properties": { + "id": "meter-13054", + "maker": "Maker B", + "model": "Model 13054", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.91929534594712, + 31.089614661181763 + ] + }, + "properties": { + "id": "meter-13055", + "maker": "Maker A", + "model": "Model 13055", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.47646208955399, + 21.96391874479416 + ] + }, + "properties": { + "id": "meter-13056", + "maker": "Maker I", + "model": "Model 13056", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.03721489611722, + 28.048782999912326 + ] + }, + "properties": { + "id": "meter-13057", + "maker": "Maker E", + "model": "Model 13057", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.398287754591784, + 29.27470662155025 + ] + }, + "properties": { + "id": "meter-13058", + "maker": "Maker H", + "model": "Model 13058", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.978264031721864, + 25.581335652074557 + ] + }, + "properties": { + "id": "meter-13059", + "maker": "Maker C", + "model": "Model 13059", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.75538831176318, + 23.543872079197868 + ] + }, + "properties": { + "id": "meter-13060", + "maker": "Maker G", + "model": "Model 13060", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.94832459998574, + 31.54978071599396 + ] + }, + "properties": { + "id": "meter-13061", + "maker": "Maker I", + "model": "Model 13061", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.54733543234701, + 27.49291774193402 + ] + }, + "properties": { + "id": "meter-13062", + "maker": "Maker D", + "model": "Model 13062", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.08164597767944, + 25.491738711083478 + ] + }, + "properties": { + "id": "meter-13063", + "maker": "Maker H", + "model": "Model 13063", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.778081202435025, + 20.88009807642793 + ] + }, + "properties": { + "id": "meter-13064", + "maker": "Maker E", + "model": "Model 13064", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.07380582402517, + 23.35359139926064 + ] + }, + "properties": { + "id": "meter-13065", + "maker": "Maker F", + "model": "Model 13065", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.20516683808199, + 30.3642147712287 + ] + }, + "properties": { + "id": "meter-13066", + "maker": "Maker E", + "model": "Model 13066", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.88999491733449, + 19.794873754758168 + ] + }, + "properties": { + "id": "meter-13067", + "maker": "Maker B", + "model": "Model 13067", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.804863604870484, + 22.988333176202477 + ] + }, + "properties": { + "id": "meter-13068", + "maker": "Maker B", + "model": "Model 13068", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.046538519539034, + 20.04502561434797 + ] + }, + "properties": { + "id": "meter-13069", + "maker": "Maker B", + "model": "Model 13069", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96010200021276, + 19.64732482929386 + ] + }, + "properties": { + "id": "meter-13070", + "maker": "Maker D", + "model": "Model 13070", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.145032896647834, + 24.092199328251795 + ] + }, + "properties": { + "id": "meter-13071", + "maker": "Maker J", + "model": "Model 13071", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.79032611307257, + 24.719706852051853 + ] + }, + "properties": { + "id": "meter-13072", + "maker": "Maker J", + "model": "Model 13072", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.57623327773549, + 20.255790852514302 + ] + }, + "properties": { + "id": "meter-13073", + "maker": "Maker F", + "model": "Model 13073", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.24424290861214, + 26.8606215291691 + ] + }, + "properties": { + "id": "meter-13074", + "maker": "Maker B", + "model": "Model 13074", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.303655355444754, + 26.931980224296836 + ] + }, + "properties": { + "id": "meter-13075", + "maker": "Maker E", + "model": "Model 13075", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.354158321892015, + 18.069872437851675 + ] + }, + "properties": { + "id": "meter-13076", + "maker": "Maker E", + "model": "Model 13076", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.95805900258538, + 22.131602068219046 + ] + }, + "properties": { + "id": "meter-13077", + "maker": "Maker D", + "model": "Model 13077", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.56888322693956, + 22.879199633383326 + ] + }, + "properties": { + "id": "meter-13078", + "maker": "Maker A", + "model": "Model 13078", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.819212239072655, + 25.055155019111456 + ] + }, + "properties": { + "id": "meter-13079", + "maker": "Maker I", + "model": "Model 13079", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.51676818555319, + 28.269734757633564 + ] + }, + "properties": { + "id": "meter-13080", + "maker": "Maker A", + "model": "Model 13080", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.90256853816706, + 22.259863889286084 + ] + }, + "properties": { + "id": "meter-13081", + "maker": "Maker C", + "model": "Model 13081", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.19800487479668, + 27.66280862506526 + ] + }, + "properties": { + "id": "meter-13082", + "maker": "Maker E", + "model": "Model 13082", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.610053626864214, + 25.222942162542758 + ] + }, + "properties": { + "id": "meter-13083", + "maker": "Maker A", + "model": "Model 13083", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.07520990597563, + 29.20787434859716 + ] + }, + "properties": { + "id": "meter-13084", + "maker": "Maker D", + "model": "Model 13084", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.70708512976849, + 23.678383815753307 + ] + }, + "properties": { + "id": "meter-13085", + "maker": "Maker F", + "model": "Model 13085", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.36641270624986, + 22.122822718556172 + ] + }, + "properties": { + "id": "meter-13086", + "maker": "Maker C", + "model": "Model 13086", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.421357524618, + 22.978630496341502 + ] + }, + "properties": { + "id": "meter-13087", + "maker": "Maker B", + "model": "Model 13087", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.88300480481582, + 30.392564331101518 + ] + }, + "properties": { + "id": "meter-13088", + "maker": "Maker J", + "model": "Model 13088", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.03413493720132, + 21.510158144932184 + ] + }, + "properties": { + "id": "meter-13089", + "maker": "Maker A", + "model": "Model 13089", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.91810754106466, + 21.65770408828705 + ] + }, + "properties": { + "id": "meter-13090", + "maker": "Maker C", + "model": "Model 13090", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.23909415624181, + 22.400430603850936 + ] + }, + "properties": { + "id": "meter-13091", + "maker": "Maker I", + "model": "Model 13091", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.40499730320893, + 25.57159500089746 + ] + }, + "properties": { + "id": "meter-13092", + "maker": "Maker H", + "model": "Model 13092", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.78953572706106, + 23.574683819024017 + ] + }, + "properties": { + "id": "meter-13093", + "maker": "Maker C", + "model": "Model 13093", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.7449160808461, + 25.498371385586108 + ] + }, + "properties": { + "id": "meter-13094", + "maker": "Maker E", + "model": "Model 13094", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.58041803151036, + 19.699726673970893 + ] + }, + "properties": { + "id": "meter-13095", + "maker": "Maker I", + "model": "Model 13095", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.67955675283848, + 19.60178473867544 + ] + }, + "properties": { + "id": "meter-13096", + "maker": "Maker B", + "model": "Model 13096", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.42287313675496, + 19.974036282052797 + ] + }, + "properties": { + "id": "meter-13097", + "maker": "Maker B", + "model": "Model 13097", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.67779312758345, + 21.592989145906685 + ] + }, + "properties": { + "id": "meter-13098", + "maker": "Maker G", + "model": "Model 13098", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.974401945455185, + 28.51020326246524 + ] + }, + "properties": { + "id": "meter-13099", + "maker": "Maker C", + "model": "Model 13099", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.8930375015487, + 24.8956234723089 + ] + }, + "properties": { + "id": "meter-13100", + "maker": "Maker G", + "model": "Model 13100", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.81781508387822, + 22.503205548368065 + ] + }, + "properties": { + "id": "meter-13101", + "maker": "Maker H", + "model": "Model 13101", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.738520614243875, + 22.01340500596116 + ] + }, + "properties": { + "id": "meter-13102", + "maker": "Maker C", + "model": "Model 13102", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.19567482015926, + 27.19922907881287 + ] + }, + "properties": { + "id": "meter-13103", + "maker": "Maker E", + "model": "Model 13103", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.99009107555577, + 19.04727935110434 + ] + }, + "properties": { + "id": "meter-13104", + "maker": "Maker I", + "model": "Model 13104", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.01924836528251, + 24.4202285779753 + ] + }, + "properties": { + "id": "meter-13105", + "maker": "Maker I", + "model": "Model 13105", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.2408451146795, + 28.731816404859615 + ] + }, + "properties": { + "id": "meter-13106", + "maker": "Maker J", + "model": "Model 13106", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.1747480943074, + 29.99965579189268 + ] + }, + "properties": { + "id": "meter-13107", + "maker": "Maker E", + "model": "Model 13107", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.62588224024352, + 30.945623058683232 + ] + }, + "properties": { + "id": "meter-13108", + "maker": "Maker D", + "model": "Model 13108", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.08894709818243, + 24.615461284284308 + ] + }, + "properties": { + "id": "meter-13109", + "maker": "Maker C", + "model": "Model 13109", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.392486143443975, + 28.97478804610705 + ] + }, + "properties": { + "id": "meter-13110", + "maker": "Maker A", + "model": "Model 13110", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.01552895871435, + 25.736953601758994 + ] + }, + "properties": { + "id": "meter-13111", + "maker": "Maker C", + "model": "Model 13111", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.68989723483202, + 26.859278391990905 + ] + }, + "properties": { + "id": "meter-13112", + "maker": "Maker G", + "model": "Model 13112", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.472501327685, + 20.76391379056291 + ] + }, + "properties": { + "id": "meter-13113", + "maker": "Maker C", + "model": "Model 13113", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.7889941994458, + 25.82155621267506 + ] + }, + "properties": { + "id": "meter-13114", + "maker": "Maker A", + "model": "Model 13114", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.78456822474331, + 24.736805383650555 + ] + }, + "properties": { + "id": "meter-13115", + "maker": "Maker A", + "model": "Model 13115", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.46963735100282, + 22.56341075992374 + ] + }, + "properties": { + "id": "meter-13116", + "maker": "Maker C", + "model": "Model 13116", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.84204709549206, + 21.63333116243646 + ] + }, + "properties": { + "id": "meter-13117", + "maker": "Maker B", + "model": "Model 13117", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.69651106750396, + 20.583917567519904 + ] + }, + "properties": { + "id": "meter-13118", + "maker": "Maker A", + "model": "Model 13118", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.23066615383986, + 28.782896855123802 + ] + }, + "properties": { + "id": "meter-13119", + "maker": "Maker C", + "model": "Model 13119", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.49982123498272, + 19.675964418747746 + ] + }, + "properties": { + "id": "meter-13120", + "maker": "Maker B", + "model": "Model 13120", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.17948594247791, + 27.53075856314902 + ] + }, + "properties": { + "id": "meter-13121", + "maker": "Maker B", + "model": "Model 13121", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.82398741273708, + 21.074867573587177 + ] + }, + "properties": { + "id": "meter-13122", + "maker": "Maker J", + "model": "Model 13122", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.63898177994079, + 21.376854969438494 + ] + }, + "properties": { + "id": "meter-13123", + "maker": "Maker H", + "model": "Model 13123", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.577181110625766, + 18.797659240567715 + ] + }, + "properties": { + "id": "meter-13124", + "maker": "Maker C", + "model": "Model 13124", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.730545518093706, + 20.024156309329552 + ] + }, + "properties": { + "id": "meter-13125", + "maker": "Maker A", + "model": "Model 13125", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.1322829109849, + 20.36978963911055 + ] + }, + "properties": { + "id": "meter-13126", + "maker": "Maker I", + "model": "Model 13126", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.10861858733258, + 21.509408404761672 + ] + }, + "properties": { + "id": "meter-13127", + "maker": "Maker C", + "model": "Model 13127", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.25587102057314, + 28.632006838371495 + ] + }, + "properties": { + "id": "meter-13128", + "maker": "Maker A", + "model": "Model 13128", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.26350672307591, + 29.65107510739898 + ] + }, + "properties": { + "id": "meter-13129", + "maker": "Maker I", + "model": "Model 13129", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.93043109748733, + 22.69753573447435 + ] + }, + "properties": { + "id": "meter-13130", + "maker": "Maker B", + "model": "Model 13130", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.61945022284755, + 26.137781628644102 + ] + }, + "properties": { + "id": "meter-13131", + "maker": "Maker B", + "model": "Model 13131", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.217706668135015, + 22.60668064100228 + ] + }, + "properties": { + "id": "meter-13132", + "maker": "Maker A", + "model": "Model 13132", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.51057702150616, + 27.94495989715196 + ] + }, + "properties": { + "id": "meter-13133", + "maker": "Maker J", + "model": "Model 13133", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.43313586955546, + 26.42896034748413 + ] + }, + "properties": { + "id": "meter-13134", + "maker": "Maker C", + "model": "Model 13134", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.83488085043908, + 17.20197053821737 + ] + }, + "properties": { + "id": "meter-13135", + "maker": "Maker H", + "model": "Model 13135", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.69381303735882, + 22.761113571904865 + ] + }, + "properties": { + "id": "meter-13136", + "maker": "Maker B", + "model": "Model 13136", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.29657809280294, + 30.991777436386872 + ] + }, + "properties": { + "id": "meter-13137", + "maker": "Maker H", + "model": "Model 13137", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.407097093026266, + 27.81252892435504 + ] + }, + "properties": { + "id": "meter-13138", + "maker": "Maker D", + "model": "Model 13138", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.53297005138748, + 28.375769726310455 + ] + }, + "properties": { + "id": "meter-13139", + "maker": "Maker F", + "model": "Model 13139", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.318365703771526, + 19.807968857442006 + ] + }, + "properties": { + "id": "meter-13140", + "maker": "Maker B", + "model": "Model 13140", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.75233730449119, + 19.744169403268906 + ] + }, + "properties": { + "id": "meter-13141", + "maker": "Maker I", + "model": "Model 13141", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.36124145976012, + 19.004567918001968 + ] + }, + "properties": { + "id": "meter-13142", + "maker": "Maker I", + "model": "Model 13142", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.80823675018613, + 21.61865853623899 + ] + }, + "properties": { + "id": "meter-13143", + "maker": "Maker F", + "model": "Model 13143", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.402591971111825, + 23.017720620010753 + ] + }, + "properties": { + "id": "meter-13144", + "maker": "Maker G", + "model": "Model 13144", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.6831158850435, + 27.154161024047482 + ] + }, + "properties": { + "id": "meter-13145", + "maker": "Maker C", + "model": "Model 13145", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.72878016285078, + 20.673876797695566 + ] + }, + "properties": { + "id": "meter-13146", + "maker": "Maker I", + "model": "Model 13146", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.52776472605366, + 28.93601862970286 + ] + }, + "properties": { + "id": "meter-13147", + "maker": "Maker H", + "model": "Model 13147", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97071200224302, + 21.079320370947688 + ] + }, + "properties": { + "id": "meter-13148", + "maker": "Maker E", + "model": "Model 13148", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.735841807923066, + 17.340566528588777 + ] + }, + "properties": { + "id": "meter-13149", + "maker": "Maker G", + "model": "Model 13149", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2889818300035, + 30.710090111922035 + ] + }, + "properties": { + "id": "meter-13150", + "maker": "Maker I", + "model": "Model 13150", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.99151093837695, + 27.190056664541927 + ] + }, + "properties": { + "id": "meter-13151", + "maker": "Maker C", + "model": "Model 13151", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.23395464429639, + 24.310250148192527 + ] + }, + "properties": { + "id": "meter-13152", + "maker": "Maker D", + "model": "Model 13152", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.15195497544371, + 30.79742622174372 + ] + }, + "properties": { + "id": "meter-13153", + "maker": "Maker E", + "model": "Model 13153", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.378867159554666, + 19.386486851843 + ] + }, + "properties": { + "id": "meter-13154", + "maker": "Maker C", + "model": "Model 13154", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.478882689481466, + 27.49922768743383 + ] + }, + "properties": { + "id": "meter-13155", + "maker": "Maker C", + "model": "Model 13155", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.74356566040394, + 18.524225187569918 + ] + }, + "properties": { + "id": "meter-13156", + "maker": "Maker G", + "model": "Model 13156", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.352114443182145, + 28.39714115427999 + ] + }, + "properties": { + "id": "meter-13157", + "maker": "Maker F", + "model": "Model 13157", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.66412135773618, + 21.709398825947574 + ] + }, + "properties": { + "id": "meter-13158", + "maker": "Maker I", + "model": "Model 13158", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.44109353439246, + 20.12280676185312 + ] + }, + "properties": { + "id": "meter-13159", + "maker": "Maker D", + "model": "Model 13159", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.702750685803046, + 20.52409795001909 + ] + }, + "properties": { + "id": "meter-13160", + "maker": "Maker B", + "model": "Model 13160", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.312532209279894, + 17.99712503080138 + ] + }, + "properties": { + "id": "meter-13161", + "maker": "Maker F", + "model": "Model 13161", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.72127296346629, + 19.19595318702881 + ] + }, + "properties": { + "id": "meter-13162", + "maker": "Maker G", + "model": "Model 13162", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.239496632521835, + 28.228051523855626 + ] + }, + "properties": { + "id": "meter-13163", + "maker": "Maker H", + "model": "Model 13163", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.753796080349666, + 28.755476775868992 + ] + }, + "properties": { + "id": "meter-13164", + "maker": "Maker A", + "model": "Model 13164", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.16158696178304, + 21.542075808905977 + ] + }, + "properties": { + "id": "meter-13165", + "maker": "Maker F", + "model": "Model 13165", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.63405330264477, + 23.986928649586385 + ] + }, + "properties": { + "id": "meter-13166", + "maker": "Maker C", + "model": "Model 13166", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.28927458812502, + 22.35961155535483 + ] + }, + "properties": { + "id": "meter-13167", + "maker": "Maker G", + "model": "Model 13167", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.5451432610715, + 20.47161575947914 + ] + }, + "properties": { + "id": "meter-13168", + "maker": "Maker H", + "model": "Model 13168", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69705262699357, + 30.086043664754854 + ] + }, + "properties": { + "id": "meter-13169", + "maker": "Maker F", + "model": "Model 13169", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.658350696688274, + 28.954677671563438 + ] + }, + "properties": { + "id": "meter-13170", + "maker": "Maker G", + "model": "Model 13170", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68964590553692, + 23.679705178721147 + ] + }, + "properties": { + "id": "meter-13171", + "maker": "Maker F", + "model": "Model 13171", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.82003190050455, + 30.044244727498793 + ] + }, + "properties": { + "id": "meter-13172", + "maker": "Maker F", + "model": "Model 13172", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.64691266924404, + 30.851242938153124 + ] + }, + "properties": { + "id": "meter-13173", + "maker": "Maker J", + "model": "Model 13173", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.547910881671655, + 22.171804626517165 + ] + }, + "properties": { + "id": "meter-13174", + "maker": "Maker D", + "model": "Model 13174", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.52400638862203, + 22.50344559552064 + ] + }, + "properties": { + "id": "meter-13175", + "maker": "Maker H", + "model": "Model 13175", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.21443593116738, + 30.61375656956472 + ] + }, + "properties": { + "id": "meter-13176", + "maker": "Maker G", + "model": "Model 13176", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.75317817477267, + 24.704806639105822 + ] + }, + "properties": { + "id": "meter-13177", + "maker": "Maker I", + "model": "Model 13177", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.47161667621256, + 25.656570618212733 + ] + }, + "properties": { + "id": "meter-13178", + "maker": "Maker B", + "model": "Model 13178", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.537085350135534, + 21.58176179686138 + ] + }, + "properties": { + "id": "meter-13179", + "maker": "Maker J", + "model": "Model 13179", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.19297881668981, + 30.083186666592216 + ] + }, + "properties": { + "id": "meter-13180", + "maker": "Maker B", + "model": "Model 13180", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.953208312956505, + 19.308793432682055 + ] + }, + "properties": { + "id": "meter-13181", + "maker": "Maker H", + "model": "Model 13181", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.93763352999316, + 26.13977532922891 + ] + }, + "properties": { + "id": "meter-13182", + "maker": "Maker F", + "model": "Model 13182", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.00813826474592, + 20.062934631586245 + ] + }, + "properties": { + "id": "meter-13183", + "maker": "Maker F", + "model": "Model 13183", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.03927169252741, + 21.141290047642343 + ] + }, + "properties": { + "id": "meter-13184", + "maker": "Maker H", + "model": "Model 13184", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.42513008980855, + 25.0364488542121 + ] + }, + "properties": { + "id": "meter-13185", + "maker": "Maker C", + "model": "Model 13185", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.34922040864283, + 29.828695848095823 + ] + }, + "properties": { + "id": "meter-13186", + "maker": "Maker D", + "model": "Model 13186", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.76914079006022, + 21.215131855127595 + ] + }, + "properties": { + "id": "meter-13187", + "maker": "Maker G", + "model": "Model 13187", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.18278821102916, + 23.680566761228718 + ] + }, + "properties": { + "id": "meter-13188", + "maker": "Maker H", + "model": "Model 13188", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.24178878190233, + 28.937877768148773 + ] + }, + "properties": { + "id": "meter-13189", + "maker": "Maker E", + "model": "Model 13189", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.258852573613524, + 20.871353861345767 + ] + }, + "properties": { + "id": "meter-13190", + "maker": "Maker B", + "model": "Model 13190", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.757252276749696, + 21.906294789828628 + ] + }, + "properties": { + "id": "meter-13191", + "maker": "Maker J", + "model": "Model 13191", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.533202059824745, + 19.93640623246567 + ] + }, + "properties": { + "id": "meter-13192", + "maker": "Maker B", + "model": "Model 13192", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.171274665543145, + 20.643948351889687 + ] + }, + "properties": { + "id": "meter-13193", + "maker": "Maker F", + "model": "Model 13193", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.414193788122994, + 27.21660785656684 + ] + }, + "properties": { + "id": "meter-13194", + "maker": "Maker D", + "model": "Model 13194", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.024887073069735, + 26.007213859040142 + ] + }, + "properties": { + "id": "meter-13195", + "maker": "Maker H", + "model": "Model 13195", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.01960475004372, + 27.056344885276594 + ] + }, + "properties": { + "id": "meter-13196", + "maker": "Maker I", + "model": "Model 13196", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.21958580506178, + 20.594107758476547 + ] + }, + "properties": { + "id": "meter-13197", + "maker": "Maker E", + "model": "Model 13197", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.83001199257767, + 26.67906767327701 + ] + }, + "properties": { + "id": "meter-13198", + "maker": "Maker F", + "model": "Model 13198", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.54687737565867, + 27.673601689969104 + ] + }, + "properties": { + "id": "meter-13199", + "maker": "Maker F", + "model": "Model 13199", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.934935986221326, + 29.620891987659583 + ] + }, + "properties": { + "id": "meter-13200", + "maker": "Maker H", + "model": "Model 13200", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54739936062256, + 21.34791196605672 + ] + }, + "properties": { + "id": "meter-13201", + "maker": "Maker G", + "model": "Model 13201", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.93048100632727, + 26.345153576763032 + ] + }, + "properties": { + "id": "meter-13202", + "maker": "Maker B", + "model": "Model 13202", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.442800186866684, + 25.188273470237334 + ] + }, + "properties": { + "id": "meter-13203", + "maker": "Maker D", + "model": "Model 13203", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.66577678192566, + 29.593548259186207 + ] + }, + "properties": { + "id": "meter-13204", + "maker": "Maker C", + "model": "Model 13204", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.185066596750076, + 17.665280194802598 + ] + }, + "properties": { + "id": "meter-13205", + "maker": "Maker F", + "model": "Model 13205", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.38478099212378, + 22.11783749808089 + ] + }, + "properties": { + "id": "meter-13206", + "maker": "Maker B", + "model": "Model 13206", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.76325246047852, + 22.984967656330426 + ] + }, + "properties": { + "id": "meter-13207", + "maker": "Maker E", + "model": "Model 13207", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.181825563362366, + 18.202064110604187 + ] + }, + "properties": { + "id": "meter-13208", + "maker": "Maker H", + "model": "Model 13208", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.27719688606821, + 26.817435796551145 + ] + }, + "properties": { + "id": "meter-13209", + "maker": "Maker D", + "model": "Model 13209", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.108109279134126, + 22.344098244236914 + ] + }, + "properties": { + "id": "meter-13210", + "maker": "Maker J", + "model": "Model 13210", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.072252870277666, + 31.205881738281988 + ] + }, + "properties": { + "id": "meter-13211", + "maker": "Maker G", + "model": "Model 13211", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.094066524839604, + 21.753672179083683 + ] + }, + "properties": { + "id": "meter-13212", + "maker": "Maker G", + "model": "Model 13212", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.61782267040067, + 22.178789394407374 + ] + }, + "properties": { + "id": "meter-13213", + "maker": "Maker I", + "model": "Model 13213", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.2367089552087, + 19.829374126080502 + ] + }, + "properties": { + "id": "meter-13214", + "maker": "Maker E", + "model": "Model 13214", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.90691178346543, + 25.20724913261811 + ] + }, + "properties": { + "id": "meter-13215", + "maker": "Maker I", + "model": "Model 13215", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.706081602009654, + 27.870851378207085 + ] + }, + "properties": { + "id": "meter-13216", + "maker": "Maker B", + "model": "Model 13216", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.32617635987995, + 20.946370146030816 + ] + }, + "properties": { + "id": "meter-13217", + "maker": "Maker B", + "model": "Model 13217", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.975637845294344, + 18.86046865994077 + ] + }, + "properties": { + "id": "meter-13218", + "maker": "Maker C", + "model": "Model 13218", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.871230267567164, + 31.088525616715113 + ] + }, + "properties": { + "id": "meter-13219", + "maker": "Maker J", + "model": "Model 13219", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.77141720775318, + 25.872842170741333 + ] + }, + "properties": { + "id": "meter-13220", + "maker": "Maker E", + "model": "Model 13220", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.48041619924871, + 27.798003280206878 + ] + }, + "properties": { + "id": "meter-13221", + "maker": "Maker D", + "model": "Model 13221", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.31377862893341, + 25.873747420726453 + ] + }, + "properties": { + "id": "meter-13222", + "maker": "Maker E", + "model": "Model 13222", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.2841835394301, + 20.176040244399267 + ] + }, + "properties": { + "id": "meter-13223", + "maker": "Maker A", + "model": "Model 13223", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.71956501631598, + 27.992570483898056 + ] + }, + "properties": { + "id": "meter-13224", + "maker": "Maker I", + "model": "Model 13224", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.78683787104382, + 20.13032332687428 + ] + }, + "properties": { + "id": "meter-13225", + "maker": "Maker D", + "model": "Model 13225", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.69756805226079, + 27.699329184761798 + ] + }, + "properties": { + "id": "meter-13226", + "maker": "Maker D", + "model": "Model 13226", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.660397745309325, + 20.168342860450636 + ] + }, + "properties": { + "id": "meter-13227", + "maker": "Maker B", + "model": "Model 13227", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.40685745800219, + 29.779140404659522 + ] + }, + "properties": { + "id": "meter-13228", + "maker": "Maker F", + "model": "Model 13228", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.22302262075672, + 19.361735142499747 + ] + }, + "properties": { + "id": "meter-13229", + "maker": "Maker I", + "model": "Model 13229", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.92446358372993, + 28.101371264313187 + ] + }, + "properties": { + "id": "meter-13230", + "maker": "Maker G", + "model": "Model 13230", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.76341248467384, + 25.86607815721756 + ] + }, + "properties": { + "id": "meter-13231", + "maker": "Maker A", + "model": "Model 13231", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.221690610643336, + 30.7148549423474 + ] + }, + "properties": { + "id": "meter-13232", + "maker": "Maker B", + "model": "Model 13232", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.026778484905904, + 28.045545131552444 + ] + }, + "properties": { + "id": "meter-13233", + "maker": "Maker B", + "model": "Model 13233", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85674528331077, + 23.050152219713823 + ] + }, + "properties": { + "id": "meter-13234", + "maker": "Maker J", + "model": "Model 13234", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.99108346171477, + 27.11182066147174 + ] + }, + "properties": { + "id": "meter-13235", + "maker": "Maker J", + "model": "Model 13235", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.80663807650828, + 26.871347849812693 + ] + }, + "properties": { + "id": "meter-13236", + "maker": "Maker J", + "model": "Model 13236", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11796047206279, + 24.852560424392404 + ] + }, + "properties": { + "id": "meter-13237", + "maker": "Maker G", + "model": "Model 13237", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.81565344860001, + 23.83869948262265 + ] + }, + "properties": { + "id": "meter-13238", + "maker": "Maker I", + "model": "Model 13238", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.00637659320454, + 19.33128039519943 + ] + }, + "properties": { + "id": "meter-13239", + "maker": "Maker A", + "model": "Model 13239", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.83181604777992, + 22.130588157827933 + ] + }, + "properties": { + "id": "meter-13240", + "maker": "Maker H", + "model": "Model 13240", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.628208328326615, + 19.596612608345374 + ] + }, + "properties": { + "id": "meter-13241", + "maker": "Maker I", + "model": "Model 13241", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.83743336471956, + 26.26595186389202 + ] + }, + "properties": { + "id": "meter-13242", + "maker": "Maker B", + "model": "Model 13242", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.787842682115816, + 25.77656123860157 + ] + }, + "properties": { + "id": "meter-13243", + "maker": "Maker I", + "model": "Model 13243", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.17549616216783, + 22.386637217954693 + ] + }, + "properties": { + "id": "meter-13244", + "maker": "Maker F", + "model": "Model 13244", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.175150363154074, + 25.61157489479269 + ] + }, + "properties": { + "id": "meter-13245", + "maker": "Maker I", + "model": "Model 13245", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.61840475617937, + 25.25453397639709 + ] + }, + "properties": { + "id": "meter-13246", + "maker": "Maker A", + "model": "Model 13246", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.52802306039972, + 24.24391888540533 + ] + }, + "properties": { + "id": "meter-13247", + "maker": "Maker F", + "model": "Model 13247", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.55776519133628, + 22.656467330793863 + ] + }, + "properties": { + "id": "meter-13248", + "maker": "Maker D", + "model": "Model 13248", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.15196502269949, + 27.450298397880815 + ] + }, + "properties": { + "id": "meter-13249", + "maker": "Maker C", + "model": "Model 13249", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.5444825572556, + 21.791814778600436 + ] + }, + "properties": { + "id": "meter-13250", + "maker": "Maker A", + "model": "Model 13250", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.984835306178105, + 24.610742375742674 + ] + }, + "properties": { + "id": "meter-13251", + "maker": "Maker F", + "model": "Model 13251", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.48439014093444, + 18.82723653950062 + ] + }, + "properties": { + "id": "meter-13252", + "maker": "Maker G", + "model": "Model 13252", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.336330074242696, + 25.449438087938546 + ] + }, + "properties": { + "id": "meter-13253", + "maker": "Maker E", + "model": "Model 13253", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.228391616336324, + 19.191267435431733 + ] + }, + "properties": { + "id": "meter-13254", + "maker": "Maker C", + "model": "Model 13254", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.36995712353327, + 23.366591558022087 + ] + }, + "properties": { + "id": "meter-13255", + "maker": "Maker B", + "model": "Model 13255", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.834488577054586, + 24.14716200404967 + ] + }, + "properties": { + "id": "meter-13256", + "maker": "Maker F", + "model": "Model 13256", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.96315385066707, + 20.22866690824515 + ] + }, + "properties": { + "id": "meter-13257", + "maker": "Maker A", + "model": "Model 13257", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.60494509469278, + 22.657037433286966 + ] + }, + "properties": { + "id": "meter-13258", + "maker": "Maker A", + "model": "Model 13258", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.8295560790308, + 25.10964651794189 + ] + }, + "properties": { + "id": "meter-13259", + "maker": "Maker A", + "model": "Model 13259", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.4180394582858, + 20.307229078368717 + ] + }, + "properties": { + "id": "meter-13260", + "maker": "Maker H", + "model": "Model 13260", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.79789605487907, + 25.65956125054825 + ] + }, + "properties": { + "id": "meter-13261", + "maker": "Maker C", + "model": "Model 13261", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.60176124482447, + 26.685873595504177 + ] + }, + "properties": { + "id": "meter-13262", + "maker": "Maker B", + "model": "Model 13262", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.7206175435196, + 23.039033944141273 + ] + }, + "properties": { + "id": "meter-13263", + "maker": "Maker G", + "model": "Model 13263", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.15215011470718, + 21.21984653045564 + ] + }, + "properties": { + "id": "meter-13264", + "maker": "Maker G", + "model": "Model 13264", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.515906342236676, + 25.285405264340955 + ] + }, + "properties": { + "id": "meter-13265", + "maker": "Maker C", + "model": "Model 13265", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.93676721152873, + 28.4149418305717 + ] + }, + "properties": { + "id": "meter-13266", + "maker": "Maker H", + "model": "Model 13266", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.26440976176393, + 23.303151275355596 + ] + }, + "properties": { + "id": "meter-13267", + "maker": "Maker B", + "model": "Model 13267", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.00494517426206, + 26.015092554202546 + ] + }, + "properties": { + "id": "meter-13268", + "maker": "Maker H", + "model": "Model 13268", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.05551738421036, + 28.954079331007545 + ] + }, + "properties": { + "id": "meter-13269", + "maker": "Maker B", + "model": "Model 13269", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.79546142088798, + 24.20590541729005 + ] + }, + "properties": { + "id": "meter-13270", + "maker": "Maker A", + "model": "Model 13270", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.98093391758703, + 23.49819931302735 + ] + }, + "properties": { + "id": "meter-13271", + "maker": "Maker A", + "model": "Model 13271", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.12925747762665, + 23.117775059810555 + ] + }, + "properties": { + "id": "meter-13272", + "maker": "Maker A", + "model": "Model 13272", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.809589355127024, + 27.738969056530664 + ] + }, + "properties": { + "id": "meter-13273", + "maker": "Maker B", + "model": "Model 13273", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.44327245648864, + 23.44202229603034 + ] + }, + "properties": { + "id": "meter-13274", + "maker": "Maker H", + "model": "Model 13274", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.30593860780195, + 20.75940852648108 + ] + }, + "properties": { + "id": "meter-13275", + "maker": "Maker G", + "model": "Model 13275", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.199043642802195, + 18.99526362761668 + ] + }, + "properties": { + "id": "meter-13276", + "maker": "Maker C", + "model": "Model 13276", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.33055052845129, + 23.358925848282333 + ] + }, + "properties": { + "id": "meter-13277", + "maker": "Maker B", + "model": "Model 13277", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.880954430629934, + 22.009104540390055 + ] + }, + "properties": { + "id": "meter-13278", + "maker": "Maker I", + "model": "Model 13278", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.90285864065904, + 21.485928686397834 + ] + }, + "properties": { + "id": "meter-13279", + "maker": "Maker G", + "model": "Model 13279", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.328503696843505, + 28.602652710230156 + ] + }, + "properties": { + "id": "meter-13280", + "maker": "Maker B", + "model": "Model 13280", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.03447151985661, + 25.580642455736225 + ] + }, + "properties": { + "id": "meter-13281", + "maker": "Maker I", + "model": "Model 13281", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.08820639657003, + 22.889761552561886 + ] + }, + "properties": { + "id": "meter-13282", + "maker": "Maker C", + "model": "Model 13282", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.47172719710656, + 22.082376059331743 + ] + }, + "properties": { + "id": "meter-13283", + "maker": "Maker G", + "model": "Model 13283", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.79086784234801, + 22.34084043701266 + ] + }, + "properties": { + "id": "meter-13284", + "maker": "Maker I", + "model": "Model 13284", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.50798495224545, + 19.80699672001858 + ] + }, + "properties": { + "id": "meter-13285", + "maker": "Maker F", + "model": "Model 13285", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.28685048492765, + 22.007641507010657 + ] + }, + "properties": { + "id": "meter-13286", + "maker": "Maker E", + "model": "Model 13286", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.955616420555, + 20.35206562576727 + ] + }, + "properties": { + "id": "meter-13287", + "maker": "Maker G", + "model": "Model 13287", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.579982101127456, + 23.538169726563957 + ] + }, + "properties": { + "id": "meter-13288", + "maker": "Maker J", + "model": "Model 13288", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.864480890775326, + 19.44055188574834 + ] + }, + "properties": { + "id": "meter-13289", + "maker": "Maker A", + "model": "Model 13289", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.8743866432083, + 21.071976864379913 + ] + }, + "properties": { + "id": "meter-13290", + "maker": "Maker I", + "model": "Model 13290", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.864268507691655, + 29.035399796165766 + ] + }, + "properties": { + "id": "meter-13291", + "maker": "Maker D", + "model": "Model 13291", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.54988745297311, + 26.356459534441456 + ] + }, + "properties": { + "id": "meter-13292", + "maker": "Maker D", + "model": "Model 13292", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.20958257059939, + 17.76963840955849 + ] + }, + "properties": { + "id": "meter-13293", + "maker": "Maker I", + "model": "Model 13293", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.74687279424697, + 20.76781072257819 + ] + }, + "properties": { + "id": "meter-13294", + "maker": "Maker E", + "model": "Model 13294", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.340347357496455, + 21.063497525398304 + ] + }, + "properties": { + "id": "meter-13295", + "maker": "Maker J", + "model": "Model 13295", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.14037869336275, + 20.170773830728997 + ] + }, + "properties": { + "id": "meter-13296", + "maker": "Maker C", + "model": "Model 13296", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.263927398918206, + 26.438103879426404 + ] + }, + "properties": { + "id": "meter-13297", + "maker": "Maker C", + "model": "Model 13297", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.356177004230844, + 21.8119469427023 + ] + }, + "properties": { + "id": "meter-13298", + "maker": "Maker B", + "model": "Model 13298", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.64702028022242, + 22.926751741395293 + ] + }, + "properties": { + "id": "meter-13299", + "maker": "Maker C", + "model": "Model 13299", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.306438397936546, + 17.793684001957363 + ] + }, + "properties": { + "id": "meter-13300", + "maker": "Maker H", + "model": "Model 13300", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.18610944638643, + 19.185789255023394 + ] + }, + "properties": { + "id": "meter-13301", + "maker": "Maker C", + "model": "Model 13301", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95814163072585, + 22.450739832841027 + ] + }, + "properties": { + "id": "meter-13302", + "maker": "Maker B", + "model": "Model 13302", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.02244672799758, + 27.19801545471702 + ] + }, + "properties": { + "id": "meter-13303", + "maker": "Maker J", + "model": "Model 13303", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.25279077595347, + 24.86222083974271 + ] + }, + "properties": { + "id": "meter-13304", + "maker": "Maker J", + "model": "Model 13304", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.958526933972706, + 28.221849814420064 + ] + }, + "properties": { + "id": "meter-13305", + "maker": "Maker C", + "model": "Model 13305", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.39315760648255, + 26.264020977121348 + ] + }, + "properties": { + "id": "meter-13306", + "maker": "Maker B", + "model": "Model 13306", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.91605477270711, + 28.79253863317311 + ] + }, + "properties": { + "id": "meter-13307", + "maker": "Maker E", + "model": "Model 13307", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.82094668184876, + 25.057872726086686 + ] + }, + "properties": { + "id": "meter-13308", + "maker": "Maker A", + "model": "Model 13308", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.46303990196027, + 22.483080846286406 + ] + }, + "properties": { + "id": "meter-13309", + "maker": "Maker D", + "model": "Model 13309", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.771350740591025, + 27.96698937278596 + ] + }, + "properties": { + "id": "meter-13310", + "maker": "Maker G", + "model": "Model 13310", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.53826641125265, + 24.379991416558017 + ] + }, + "properties": { + "id": "meter-13311", + "maker": "Maker B", + "model": "Model 13311", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.58397445670703, + 21.687002317210517 + ] + }, + "properties": { + "id": "meter-13312", + "maker": "Maker C", + "model": "Model 13312", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.4075335814816, + 20.727498954555237 + ] + }, + "properties": { + "id": "meter-13313", + "maker": "Maker J", + "model": "Model 13313", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.10619796675292, + 22.163885445422295 + ] + }, + "properties": { + "id": "meter-13314", + "maker": "Maker I", + "model": "Model 13314", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.79040220530158, + 27.074804861494812 + ] + }, + "properties": { + "id": "meter-13315", + "maker": "Maker B", + "model": "Model 13315", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.28773863538338, + 21.296160624939127 + ] + }, + "properties": { + "id": "meter-13316", + "maker": "Maker I", + "model": "Model 13316", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.790965466540314, + 21.7053050415846 + ] + }, + "properties": { + "id": "meter-13317", + "maker": "Maker F", + "model": "Model 13317", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09822159794315, + 31.102193813933546 + ] + }, + "properties": { + "id": "meter-13318", + "maker": "Maker G", + "model": "Model 13318", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.831169595757224, + 21.47744691234216 + ] + }, + "properties": { + "id": "meter-13319", + "maker": "Maker I", + "model": "Model 13319", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.44774017592673, + 21.331822239035276 + ] + }, + "properties": { + "id": "meter-13320", + "maker": "Maker A", + "model": "Model 13320", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.48704229210291, + 27.744737907660994 + ] + }, + "properties": { + "id": "meter-13321", + "maker": "Maker C", + "model": "Model 13321", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.06200155847003, + 30.231645543961704 + ] + }, + "properties": { + "id": "meter-13322", + "maker": "Maker I", + "model": "Model 13322", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10478675623855, + 25.948385865590538 + ] + }, + "properties": { + "id": "meter-13323", + "maker": "Maker I", + "model": "Model 13323", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.860205372666044, + 31.153385033158727 + ] + }, + "properties": { + "id": "meter-13324", + "maker": "Maker E", + "model": "Model 13324", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.288779544918484, + 23.698022104293642 + ] + }, + "properties": { + "id": "meter-13325", + "maker": "Maker B", + "model": "Model 13325", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.857613037002416, + 19.490486479758104 + ] + }, + "properties": { + "id": "meter-13326", + "maker": "Maker B", + "model": "Model 13326", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.624990316965786, + 30.09490886026662 + ] + }, + "properties": { + "id": "meter-13327", + "maker": "Maker F", + "model": "Model 13327", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.3940962031622, + 20.902377085370876 + ] + }, + "properties": { + "id": "meter-13328", + "maker": "Maker D", + "model": "Model 13328", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.825646144706155, + 30.93448834099149 + ] + }, + "properties": { + "id": "meter-13329", + "maker": "Maker H", + "model": "Model 13329", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.63836207123868, + 23.05688425667868 + ] + }, + "properties": { + "id": "meter-13330", + "maker": "Maker A", + "model": "Model 13330", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.26669595040157, + 29.359169474441913 + ] + }, + "properties": { + "id": "meter-13331", + "maker": "Maker A", + "model": "Model 13331", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.06477773829232, + 23.266766288162426 + ] + }, + "properties": { + "id": "meter-13332", + "maker": "Maker D", + "model": "Model 13332", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.98871167231355, + 23.839290939612734 + ] + }, + "properties": { + "id": "meter-13333", + "maker": "Maker E", + "model": "Model 13333", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.084085488807645, + 20.57031016572565 + ] + }, + "properties": { + "id": "meter-13334", + "maker": "Maker A", + "model": "Model 13334", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.72770333062756, + 19.371998539550788 + ] + }, + "properties": { + "id": "meter-13335", + "maker": "Maker D", + "model": "Model 13335", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91580905985778, + 22.479714971426688 + ] + }, + "properties": { + "id": "meter-13336", + "maker": "Maker B", + "model": "Model 13336", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.08533771582526, + 31.72954711558929 + ] + }, + "properties": { + "id": "meter-13337", + "maker": "Maker G", + "model": "Model 13337", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.1826275915343, + 31.49942012040814 + ] + }, + "properties": { + "id": "meter-13338", + "maker": "Maker H", + "model": "Model 13338", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.873897122892544, + 20.79257896364254 + ] + }, + "properties": { + "id": "meter-13339", + "maker": "Maker H", + "model": "Model 13339", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.9796986822091, + 29.026991538530424 + ] + }, + "properties": { + "id": "meter-13340", + "maker": "Maker G", + "model": "Model 13340", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.236760231386334, + 20.840875792459297 + ] + }, + "properties": { + "id": "meter-13341", + "maker": "Maker I", + "model": "Model 13341", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.479190129729524, + 24.569451695374518 + ] + }, + "properties": { + "id": "meter-13342", + "maker": "Maker I", + "model": "Model 13342", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.326713066105214, + 31.39925567494226 + ] + }, + "properties": { + "id": "meter-13343", + "maker": "Maker E", + "model": "Model 13343", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.422854597562704, + 25.314530797943107 + ] + }, + "properties": { + "id": "meter-13344", + "maker": "Maker G", + "model": "Model 13344", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.40799137404046, + 25.396984696758622 + ] + }, + "properties": { + "id": "meter-13345", + "maker": "Maker I", + "model": "Model 13345", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.93503384530973, + 21.426244258280377 + ] + }, + "properties": { + "id": "meter-13346", + "maker": "Maker H", + "model": "Model 13346", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.91286614424922, + 21.320690798497473 + ] + }, + "properties": { + "id": "meter-13347", + "maker": "Maker G", + "model": "Model 13347", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69392455524316, + 19.493000393206607 + ] + }, + "properties": { + "id": "meter-13348", + "maker": "Maker E", + "model": "Model 13348", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.790541220099676, + 26.608377160783427 + ] + }, + "properties": { + "id": "meter-13349", + "maker": "Maker F", + "model": "Model 13349", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.737177642240624, + 23.736903406856612 + ] + }, + "properties": { + "id": "meter-13350", + "maker": "Maker D", + "model": "Model 13350", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.56596181071606, + 24.12137778693069 + ] + }, + "properties": { + "id": "meter-13351", + "maker": "Maker C", + "model": "Model 13351", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.94561105591812, + 27.05360323491906 + ] + }, + "properties": { + "id": "meter-13352", + "maker": "Maker F", + "model": "Model 13352", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.01235012106087, + 24.542106674351373 + ] + }, + "properties": { + "id": "meter-13353", + "maker": "Maker F", + "model": "Model 13353", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.62728684164617, + 25.24156626012654 + ] + }, + "properties": { + "id": "meter-13354", + "maker": "Maker J", + "model": "Model 13354", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.84192298766498, + 21.647517143910527 + ] + }, + "properties": { + "id": "meter-13355", + "maker": "Maker C", + "model": "Model 13355", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.88580701297012, + 25.258958300192592 + ] + }, + "properties": { + "id": "meter-13356", + "maker": "Maker E", + "model": "Model 13356", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.98993518308016, + 24.381496976436086 + ] + }, + "properties": { + "id": "meter-13357", + "maker": "Maker C", + "model": "Model 13357", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.607986061978586, + 17.31660270491821 + ] + }, + "properties": { + "id": "meter-13358", + "maker": "Maker F", + "model": "Model 13358", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.3588632781112, + 27.122241792725646 + ] + }, + "properties": { + "id": "meter-13359", + "maker": "Maker D", + "model": "Model 13359", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.72581316061715, + 24.62174945333481 + ] + }, + "properties": { + "id": "meter-13360", + "maker": "Maker E", + "model": "Model 13360", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.83035633150793, + 19.830409908741707 + ] + }, + "properties": { + "id": "meter-13361", + "maker": "Maker A", + "model": "Model 13361", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.91865503109794, + 31.214801339763575 + ] + }, + "properties": { + "id": "meter-13362", + "maker": "Maker I", + "model": "Model 13362", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.776710677510486, + 22.103469088197148 + ] + }, + "properties": { + "id": "meter-13363", + "maker": "Maker C", + "model": "Model 13363", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.200478205520426, + 17.643219338407967 + ] + }, + "properties": { + "id": "meter-13364", + "maker": "Maker D", + "model": "Model 13364", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.7779425546762, + 26.524303806252597 + ] + }, + "properties": { + "id": "meter-13365", + "maker": "Maker J", + "model": "Model 13365", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.30413432324765, + 23.241112941912924 + ] + }, + "properties": { + "id": "meter-13366", + "maker": "Maker B", + "model": "Model 13366", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.688607666430556, + 24.759282034520794 + ] + }, + "properties": { + "id": "meter-13367", + "maker": "Maker G", + "model": "Model 13367", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.87447799055745, + 23.265694812350183 + ] + }, + "properties": { + "id": "meter-13368", + "maker": "Maker C", + "model": "Model 13368", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.30528396465893, + 21.890453264801238 + ] + }, + "properties": { + "id": "meter-13369", + "maker": "Maker A", + "model": "Model 13369", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.21928842111753, + 20.003340058864403 + ] + }, + "properties": { + "id": "meter-13370", + "maker": "Maker B", + "model": "Model 13370", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.07826050413321, + 30.567217164483466 + ] + }, + "properties": { + "id": "meter-13371", + "maker": "Maker H", + "model": "Model 13371", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08544343548485, + 25.26841951504062 + ] + }, + "properties": { + "id": "meter-13372", + "maker": "Maker H", + "model": "Model 13372", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55461039108695, + 28.55457606198022 + ] + }, + "properties": { + "id": "meter-13373", + "maker": "Maker H", + "model": "Model 13373", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.117986097347135, + 19.78703712700102 + ] + }, + "properties": { + "id": "meter-13374", + "maker": "Maker A", + "model": "Model 13374", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.234454612935835, + 20.007378316357578 + ] + }, + "properties": { + "id": "meter-13375", + "maker": "Maker I", + "model": "Model 13375", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47027012421988, + 30.5929820002321 + ] + }, + "properties": { + "id": "meter-13376", + "maker": "Maker F", + "model": "Model 13376", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.26767250113009, + 19.755871608298477 + ] + }, + "properties": { + "id": "meter-13377", + "maker": "Maker D", + "model": "Model 13377", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.00831023888026, + 22.183087121895994 + ] + }, + "properties": { + "id": "meter-13378", + "maker": "Maker I", + "model": "Model 13378", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.79117485744182, + 21.420705956925428 + ] + }, + "properties": { + "id": "meter-13379", + "maker": "Maker H", + "model": "Model 13379", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.55456190487596, + 26.20534789925526 + ] + }, + "properties": { + "id": "meter-13380", + "maker": "Maker F", + "model": "Model 13380", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.42356892082951, + 27.729657380376096 + ] + }, + "properties": { + "id": "meter-13381", + "maker": "Maker D", + "model": "Model 13381", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.91219190959312, + 29.143194502422354 + ] + }, + "properties": { + "id": "meter-13382", + "maker": "Maker F", + "model": "Model 13382", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.19469446176411, + 20.277551304375827 + ] + }, + "properties": { + "id": "meter-13383", + "maker": "Maker F", + "model": "Model 13383", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.59117709385565, + 29.15865584800533 + ] + }, + "properties": { + "id": "meter-13384", + "maker": "Maker C", + "model": "Model 13384", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.68283843848454, + 20.709991503210496 + ] + }, + "properties": { + "id": "meter-13385", + "maker": "Maker H", + "model": "Model 13385", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.10462828343151, + 31.11198580954434 + ] + }, + "properties": { + "id": "meter-13386", + "maker": "Maker C", + "model": "Model 13386", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.79239478301331, + 18.22982504654864 + ] + }, + "properties": { + "id": "meter-13387", + "maker": "Maker J", + "model": "Model 13387", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.366264506535, + 26.226311570230784 + ] + }, + "properties": { + "id": "meter-13388", + "maker": "Maker G", + "model": "Model 13388", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.5926855180441, + 26.754382027588026 + ] + }, + "properties": { + "id": "meter-13389", + "maker": "Maker E", + "model": "Model 13389", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.24269090837028, + 28.764591155379712 + ] + }, + "properties": { + "id": "meter-13390", + "maker": "Maker C", + "model": "Model 13390", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.36699952307362, + 24.760480861703122 + ] + }, + "properties": { + "id": "meter-13391", + "maker": "Maker E", + "model": "Model 13391", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.25854950373743, + 22.655219855653804 + ] + }, + "properties": { + "id": "meter-13392", + "maker": "Maker B", + "model": "Model 13392", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.03491936549328, + 28.169264717422166 + ] + }, + "properties": { + "id": "meter-13393", + "maker": "Maker A", + "model": "Model 13393", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.712092408865146, + 21.329576672863503 + ] + }, + "properties": { + "id": "meter-13394", + "maker": "Maker D", + "model": "Model 13394", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.40952930670865, + 26.96193828193995 + ] + }, + "properties": { + "id": "meter-13395", + "maker": "Maker I", + "model": "Model 13395", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.886229211433445, + 23.408178237479184 + ] + }, + "properties": { + "id": "meter-13396", + "maker": "Maker A", + "model": "Model 13396", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.65078760034215, + 23.07621546076728 + ] + }, + "properties": { + "id": "meter-13397", + "maker": "Maker F", + "model": "Model 13397", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.034762364355785, + 21.366021532324616 + ] + }, + "properties": { + "id": "meter-13398", + "maker": "Maker I", + "model": "Model 13398", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.21148797353149, + 30.78836954315706 + ] + }, + "properties": { + "id": "meter-13399", + "maker": "Maker A", + "model": "Model 13399", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.76788440674113, + 22.60073827733101 + ] + }, + "properties": { + "id": "meter-13400", + "maker": "Maker B", + "model": "Model 13400", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.5165205377698, + 22.827786187078765 + ] + }, + "properties": { + "id": "meter-13401", + "maker": "Maker I", + "model": "Model 13401", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.24388258298334, + 26.89796501686104 + ] + }, + "properties": { + "id": "meter-13402", + "maker": "Maker D", + "model": "Model 13402", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.52487747598029, + 26.52145552036135 + ] + }, + "properties": { + "id": "meter-13403", + "maker": "Maker E", + "model": "Model 13403", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.57374383848242, + 23.447746460932155 + ] + }, + "properties": { + "id": "meter-13404", + "maker": "Maker F", + "model": "Model 13404", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.95777045889791, + 24.980964809715985 + ] + }, + "properties": { + "id": "meter-13405", + "maker": "Maker G", + "model": "Model 13405", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.38445734259866, + 27.591387650352434 + ] + }, + "properties": { + "id": "meter-13406", + "maker": "Maker G", + "model": "Model 13406", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.3353431626298, + 17.480712357995355 + ] + }, + "properties": { + "id": "meter-13407", + "maker": "Maker E", + "model": "Model 13407", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.38870117799334, + 21.94477328304449 + ] + }, + "properties": { + "id": "meter-13408", + "maker": "Maker D", + "model": "Model 13408", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.6543158854452, + 24.76695655306303 + ] + }, + "properties": { + "id": "meter-13409", + "maker": "Maker G", + "model": "Model 13409", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.99818819809124, + 23.157078536157243 + ] + }, + "properties": { + "id": "meter-13410", + "maker": "Maker G", + "model": "Model 13410", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.23936222660227, + 20.777593019792505 + ] + }, + "properties": { + "id": "meter-13411", + "maker": "Maker C", + "model": "Model 13411", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.629159298838616, + 28.057301020703175 + ] + }, + "properties": { + "id": "meter-13412", + "maker": "Maker E", + "model": "Model 13412", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.361377430505186, + 26.162466771836616 + ] + }, + "properties": { + "id": "meter-13413", + "maker": "Maker C", + "model": "Model 13413", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.437274874758906, + 24.06900071935396 + ] + }, + "properties": { + "id": "meter-13414", + "maker": "Maker C", + "model": "Model 13414", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.10585848758788, + 22.053738713852653 + ] + }, + "properties": { + "id": "meter-13415", + "maker": "Maker H", + "model": "Model 13415", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.463956500054735, + 25.059809341654834 + ] + }, + "properties": { + "id": "meter-13416", + "maker": "Maker I", + "model": "Model 13416", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.86568909404637, + 29.997729684860744 + ] + }, + "properties": { + "id": "meter-13417", + "maker": "Maker D", + "model": "Model 13417", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.29797970688076, + 28.200491917004456 + ] + }, + "properties": { + "id": "meter-13418", + "maker": "Maker E", + "model": "Model 13418", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.28460752530255, + 26.925439885558575 + ] + }, + "properties": { + "id": "meter-13419", + "maker": "Maker C", + "model": "Model 13419", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05620938082817, + 23.908911845754517 + ] + }, + "properties": { + "id": "meter-13420", + "maker": "Maker C", + "model": "Model 13420", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.79731697391882, + 28.235680456637567 + ] + }, + "properties": { + "id": "meter-13421", + "maker": "Maker E", + "model": "Model 13421", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.793137341106366, + 28.887316163049732 + ] + }, + "properties": { + "id": "meter-13422", + "maker": "Maker H", + "model": "Model 13422", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67647997249351, + 21.55730029120297 + ] + }, + "properties": { + "id": "meter-13423", + "maker": "Maker A", + "model": "Model 13423", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.84176924789495, + 29.645135997058766 + ] + }, + "properties": { + "id": "meter-13424", + "maker": "Maker C", + "model": "Model 13424", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.03127056682281, + 26.148874729427725 + ] + }, + "properties": { + "id": "meter-13425", + "maker": "Maker J", + "model": "Model 13425", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.510216675809474, + 18.745941997618544 + ] + }, + "properties": { + "id": "meter-13426", + "maker": "Maker D", + "model": "Model 13426", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.94875824171334, + 28.81400257474005 + ] + }, + "properties": { + "id": "meter-13427", + "maker": "Maker A", + "model": "Model 13427", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.8051443998795, + 19.06301210359237 + ] + }, + "properties": { + "id": "meter-13428", + "maker": "Maker A", + "model": "Model 13428", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.06048781823991, + 22.343868538484518 + ] + }, + "properties": { + "id": "meter-13429", + "maker": "Maker F", + "model": "Model 13429", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.01767686738797, + 24.773477058395805 + ] + }, + "properties": { + "id": "meter-13430", + "maker": "Maker H", + "model": "Model 13430", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.7493226341597, + 20.823301496503873 + ] + }, + "properties": { + "id": "meter-13431", + "maker": "Maker F", + "model": "Model 13431", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.41749579425533, + 19.119748328272067 + ] + }, + "properties": { + "id": "meter-13432", + "maker": "Maker D", + "model": "Model 13432", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.19138668093666, + 21.902452043932875 + ] + }, + "properties": { + "id": "meter-13433", + "maker": "Maker B", + "model": "Model 13433", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.27107986992767, + 21.998085414366432 + ] + }, + "properties": { + "id": "meter-13434", + "maker": "Maker D", + "model": "Model 13434", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.33609687554162, + 19.405208863983873 + ] + }, + "properties": { + "id": "meter-13435", + "maker": "Maker H", + "model": "Model 13435", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.548084511561875, + 29.56932207844278 + ] + }, + "properties": { + "id": "meter-13436", + "maker": "Maker G", + "model": "Model 13436", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.288000065119334, + 22.61382532347711 + ] + }, + "properties": { + "id": "meter-13437", + "maker": "Maker A", + "model": "Model 13437", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50942695669115, + 19.28318299372154 + ] + }, + "properties": { + "id": "meter-13438", + "maker": "Maker I", + "model": "Model 13438", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.625407542820234, + 27.669919415996144 + ] + }, + "properties": { + "id": "meter-13439", + "maker": "Maker G", + "model": "Model 13439", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.6785789003363, + 21.09231222111686 + ] + }, + "properties": { + "id": "meter-13440", + "maker": "Maker H", + "model": "Model 13440", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.35379679885998, + 24.383914914557835 + ] + }, + "properties": { + "id": "meter-13441", + "maker": "Maker H", + "model": "Model 13441", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.68374920057835, + 19.57144673338397 + ] + }, + "properties": { + "id": "meter-13442", + "maker": "Maker D", + "model": "Model 13442", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.95851670447186, + 28.472177167976653 + ] + }, + "properties": { + "id": "meter-13443", + "maker": "Maker H", + "model": "Model 13443", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.668319566957024, + 19.487402199485555 + ] + }, + "properties": { + "id": "meter-13444", + "maker": "Maker I", + "model": "Model 13444", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.217191412029216, + 29.156229077636752 + ] + }, + "properties": { + "id": "meter-13445", + "maker": "Maker E", + "model": "Model 13445", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.986269205553164, + 25.03311882392741 + ] + }, + "properties": { + "id": "meter-13446", + "maker": "Maker I", + "model": "Model 13446", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.39089705061382, + 22.352601404741314 + ] + }, + "properties": { + "id": "meter-13447", + "maker": "Maker B", + "model": "Model 13447", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.52868256153595, + 25.388584236307075 + ] + }, + "properties": { + "id": "meter-13448", + "maker": "Maker H", + "model": "Model 13448", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.18068992431936, + 25.695980737493688 + ] + }, + "properties": { + "id": "meter-13449", + "maker": "Maker I", + "model": "Model 13449", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.05680571275239, + 22.679274998453522 + ] + }, + "properties": { + "id": "meter-13450", + "maker": "Maker E", + "model": "Model 13450", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.537519852640585, + 29.35512214908933 + ] + }, + "properties": { + "id": "meter-13451", + "maker": "Maker I", + "model": "Model 13451", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.60723082275919, + 28.161144082212033 + ] + }, + "properties": { + "id": "meter-13452", + "maker": "Maker G", + "model": "Model 13452", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.236146456766164, + 18.006266755226186 + ] + }, + "properties": { + "id": "meter-13453", + "maker": "Maker A", + "model": "Model 13453", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.791618784501324, + 17.658465035527787 + ] + }, + "properties": { + "id": "meter-13454", + "maker": "Maker F", + "model": "Model 13454", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.10121554548254, + 19.297123647788354 + ] + }, + "properties": { + "id": "meter-13455", + "maker": "Maker D", + "model": "Model 13455", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.97497261384626, + 22.722719656926785 + ] + }, + "properties": { + "id": "meter-13456", + "maker": "Maker C", + "model": "Model 13456", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.65527479582694, + 21.812628117944303 + ] + }, + "properties": { + "id": "meter-13457", + "maker": "Maker E", + "model": "Model 13457", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.25194814006083, + 24.343195818074033 + ] + }, + "properties": { + "id": "meter-13458", + "maker": "Maker C", + "model": "Model 13458", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.632877874569566, + 30.056064119166848 + ] + }, + "properties": { + "id": "meter-13459", + "maker": "Maker A", + "model": "Model 13459", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.210101951988065, + 26.522059696316518 + ] + }, + "properties": { + "id": "meter-13460", + "maker": "Maker J", + "model": "Model 13460", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.7152517244196, + 19.825345534143263 + ] + }, + "properties": { + "id": "meter-13461", + "maker": "Maker J", + "model": "Model 13461", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.822737234066736, + 23.025507479224217 + ] + }, + "properties": { + "id": "meter-13462", + "maker": "Maker E", + "model": "Model 13462", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.653403888245464, + 25.310476551503925 + ] + }, + "properties": { + "id": "meter-13463", + "maker": "Maker A", + "model": "Model 13463", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.390179526299974, + 28.53472852106026 + ] + }, + "properties": { + "id": "meter-13464", + "maker": "Maker I", + "model": "Model 13464", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.95473029832296, + 20.457193478802168 + ] + }, + "properties": { + "id": "meter-13465", + "maker": "Maker G", + "model": "Model 13465", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.14721657184326, + 21.570316725435788 + ] + }, + "properties": { + "id": "meter-13466", + "maker": "Maker I", + "model": "Model 13466", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.48579738847541, + 19.754153512864338 + ] + }, + "properties": { + "id": "meter-13467", + "maker": "Maker E", + "model": "Model 13467", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.44583057690981, + 27.238314914559382 + ] + }, + "properties": { + "id": "meter-13468", + "maker": "Maker C", + "model": "Model 13468", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.77334335288969, + 26.673950762391136 + ] + }, + "properties": { + "id": "meter-13469", + "maker": "Maker G", + "model": "Model 13469", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.438243599391896, + 30.118720144841344 + ] + }, + "properties": { + "id": "meter-13470", + "maker": "Maker E", + "model": "Model 13470", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.65527196958702, + 25.469692840243656 + ] + }, + "properties": { + "id": "meter-13471", + "maker": "Maker I", + "model": "Model 13471", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.523842163805156, + 22.21840368820377 + ] + }, + "properties": { + "id": "meter-13472", + "maker": "Maker G", + "model": "Model 13472", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.06356517221172, + 25.32859760514801 + ] + }, + "properties": { + "id": "meter-13473", + "maker": "Maker D", + "model": "Model 13473", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.97328120830918, + 24.897334621871522 + ] + }, + "properties": { + "id": "meter-13474", + "maker": "Maker F", + "model": "Model 13474", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.11311327664299, + 21.51039827009212 + ] + }, + "properties": { + "id": "meter-13475", + "maker": "Maker C", + "model": "Model 13475", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.25391211771461, + 22.1938786200703 + ] + }, + "properties": { + "id": "meter-13476", + "maker": "Maker C", + "model": "Model 13476", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.073536239826595, + 22.234808199952383 + ] + }, + "properties": { + "id": "meter-13477", + "maker": "Maker G", + "model": "Model 13477", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.13605579165142, + 28.81880081509277 + ] + }, + "properties": { + "id": "meter-13478", + "maker": "Maker B", + "model": "Model 13478", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.88775583046485, + 26.52107070225811 + ] + }, + "properties": { + "id": "meter-13479", + "maker": "Maker I", + "model": "Model 13479", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.12686670221294, + 19.48911893478292 + ] + }, + "properties": { + "id": "meter-13480", + "maker": "Maker C", + "model": "Model 13480", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.24677203065606, + 20.57731669418408 + ] + }, + "properties": { + "id": "meter-13481", + "maker": "Maker H", + "model": "Model 13481", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.51451311636083, + 25.64541143176544 + ] + }, + "properties": { + "id": "meter-13482", + "maker": "Maker I", + "model": "Model 13482", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.54411380032824, + 19.63288703406652 + ] + }, + "properties": { + "id": "meter-13483", + "maker": "Maker D", + "model": "Model 13483", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.83315443831492, + 21.480320321690655 + ] + }, + "properties": { + "id": "meter-13484", + "maker": "Maker I", + "model": "Model 13484", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98677836075379, + 29.24668166735199 + ] + }, + "properties": { + "id": "meter-13485", + "maker": "Maker D", + "model": "Model 13485", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.53650890536264, + 21.81506728743765 + ] + }, + "properties": { + "id": "meter-13486", + "maker": "Maker A", + "model": "Model 13486", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.29855483965065, + 27.967242858389824 + ] + }, + "properties": { + "id": "meter-13487", + "maker": "Maker A", + "model": "Model 13487", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.59465211302529, + 19.441764537819886 + ] + }, + "properties": { + "id": "meter-13488", + "maker": "Maker J", + "model": "Model 13488", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.56675633719256, + 24.880414994101308 + ] + }, + "properties": { + "id": "meter-13489", + "maker": "Maker A", + "model": "Model 13489", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.57819981079877, + 28.289370847695707 + ] + }, + "properties": { + "id": "meter-13490", + "maker": "Maker E", + "model": "Model 13490", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.51919060715426, + 25.356312099147992 + ] + }, + "properties": { + "id": "meter-13491", + "maker": "Maker F", + "model": "Model 13491", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.82278915793592, + 23.334232879194825 + ] + }, + "properties": { + "id": "meter-13492", + "maker": "Maker B", + "model": "Model 13492", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.37009742898302, + 21.59519945771547 + ] + }, + "properties": { + "id": "meter-13493", + "maker": "Maker H", + "model": "Model 13493", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.521695540156514, + 19.083830102435726 + ] + }, + "properties": { + "id": "meter-13494", + "maker": "Maker H", + "model": "Model 13494", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.06653246911596, + 18.948096181927873 + ] + }, + "properties": { + "id": "meter-13495", + "maker": "Maker E", + "model": "Model 13495", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.76719957994433, + 27.36735210668141 + ] + }, + "properties": { + "id": "meter-13496", + "maker": "Maker D", + "model": "Model 13496", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.892607299082705, + 30.84040551366995 + ] + }, + "properties": { + "id": "meter-13497", + "maker": "Maker H", + "model": "Model 13497", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.1812970858834, + 24.675250980926577 + ] + }, + "properties": { + "id": "meter-13498", + "maker": "Maker H", + "model": "Model 13498", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.60790329915095, + 28.752710493261034 + ] + }, + "properties": { + "id": "meter-13499", + "maker": "Maker I", + "model": "Model 13499", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.476881793980496, + 26.359893527065175 + ] + }, + "properties": { + "id": "meter-13500", + "maker": "Maker F", + "model": "Model 13500", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.862719846183154, + 21.52162572320597 + ] + }, + "properties": { + "id": "meter-13501", + "maker": "Maker D", + "model": "Model 13501", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.996593701777364, + 28.340808669443305 + ] + }, + "properties": { + "id": "meter-13502", + "maker": "Maker E", + "model": "Model 13502", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.19061573725238, + 24.97506928503595 + ] + }, + "properties": { + "id": "meter-13503", + "maker": "Maker H", + "model": "Model 13503", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.08490603269242, + 22.63551988931513 + ] + }, + "properties": { + "id": "meter-13504", + "maker": "Maker B", + "model": "Model 13504", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.27808377881494, + 18.439454789754315 + ] + }, + "properties": { + "id": "meter-13505", + "maker": "Maker I", + "model": "Model 13505", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.645503653243395, + 25.078973048957256 + ] + }, + "properties": { + "id": "meter-13506", + "maker": "Maker I", + "model": "Model 13506", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.564315723583995, + 26.387641037987994 + ] + }, + "properties": { + "id": "meter-13507", + "maker": "Maker B", + "model": "Model 13507", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.883055957747146, + 19.72800095358154 + ] + }, + "properties": { + "id": "meter-13508", + "maker": "Maker E", + "model": "Model 13508", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.921824426283194, + 30.689608753867827 + ] + }, + "properties": { + "id": "meter-13509", + "maker": "Maker I", + "model": "Model 13509", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.15817164465675, + 18.876341635870762 + ] + }, + "properties": { + "id": "meter-13510", + "maker": "Maker D", + "model": "Model 13510", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.5786142529265, + 20.805845144873715 + ] + }, + "properties": { + "id": "meter-13511", + "maker": "Maker J", + "model": "Model 13511", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.183100100428035, + 26.807701598338596 + ] + }, + "properties": { + "id": "meter-13512", + "maker": "Maker J", + "model": "Model 13512", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.961140664326194, + 27.276698735992017 + ] + }, + "properties": { + "id": "meter-13513", + "maker": "Maker I", + "model": "Model 13513", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.686155743778684, + 19.996683769206477 + ] + }, + "properties": { + "id": "meter-13514", + "maker": "Maker G", + "model": "Model 13514", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.90965458746848, + 23.431793442641467 + ] + }, + "properties": { + "id": "meter-13515", + "maker": "Maker G", + "model": "Model 13515", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.080914504874634, + 19.20477456950713 + ] + }, + "properties": { + "id": "meter-13516", + "maker": "Maker C", + "model": "Model 13516", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.20683845311105, + 21.149866426209393 + ] + }, + "properties": { + "id": "meter-13517", + "maker": "Maker B", + "model": "Model 13517", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.57270699687142, + 31.36362025972963 + ] + }, + "properties": { + "id": "meter-13518", + "maker": "Maker G", + "model": "Model 13518", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.56029073951315, + 23.995301721590273 + ] + }, + "properties": { + "id": "meter-13519", + "maker": "Maker F", + "model": "Model 13519", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.479915523339926, + 23.6077333605636 + ] + }, + "properties": { + "id": "meter-13520", + "maker": "Maker J", + "model": "Model 13520", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.897741290858434, + 19.79527795906255 + ] + }, + "properties": { + "id": "meter-13521", + "maker": "Maker H", + "model": "Model 13521", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.25669721325684, + 22.247700031708817 + ] + }, + "properties": { + "id": "meter-13522", + "maker": "Maker C", + "model": "Model 13522", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.968377504603595, + 17.449629600857676 + ] + }, + "properties": { + "id": "meter-13523", + "maker": "Maker B", + "model": "Model 13523", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.46311474238681, + 28.194655484359483 + ] + }, + "properties": { + "id": "meter-13524", + "maker": "Maker A", + "model": "Model 13524", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.21240335519782, + 20.439765469473663 + ] + }, + "properties": { + "id": "meter-13525", + "maker": "Maker E", + "model": "Model 13525", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.142815825963446, + 29.061632266617142 + ] + }, + "properties": { + "id": "meter-13526", + "maker": "Maker I", + "model": "Model 13526", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.46639127878815, + 31.5761324524035 + ] + }, + "properties": { + "id": "meter-13527", + "maker": "Maker F", + "model": "Model 13527", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.05245792139878, + 17.530988082052197 + ] + }, + "properties": { + "id": "meter-13528", + "maker": "Maker G", + "model": "Model 13528", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.23737096860912, + 29.066100350241573 + ] + }, + "properties": { + "id": "meter-13529", + "maker": "Maker E", + "model": "Model 13529", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.96091048711584, + 20.51406451573792 + ] + }, + "properties": { + "id": "meter-13530", + "maker": "Maker H", + "model": "Model 13530", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.80937816352339, + 22.55470811414878 + ] + }, + "properties": { + "id": "meter-13531", + "maker": "Maker J", + "model": "Model 13531", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.65353179894036, + 20.761798696058154 + ] + }, + "properties": { + "id": "meter-13532", + "maker": "Maker H", + "model": "Model 13532", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8162577803222, + 26.193396663558357 + ] + }, + "properties": { + "id": "meter-13533", + "maker": "Maker F", + "model": "Model 13533", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.62072000852611, + 22.485511388861248 + ] + }, + "properties": { + "id": "meter-13534", + "maker": "Maker C", + "model": "Model 13534", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.07165380849194, + 21.57009213840673 + ] + }, + "properties": { + "id": "meter-13535", + "maker": "Maker C", + "model": "Model 13535", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.34475196628071, + 19.796128446361543 + ] + }, + "properties": { + "id": "meter-13536", + "maker": "Maker B", + "model": "Model 13536", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.73528358316881, + 19.46830252265887 + ] + }, + "properties": { + "id": "meter-13537", + "maker": "Maker A", + "model": "Model 13537", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.65930031240114, + 17.573396250290806 + ] + }, + "properties": { + "id": "meter-13538", + "maker": "Maker H", + "model": "Model 13538", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.67630905017743, + 22.33573371576996 + ] + }, + "properties": { + "id": "meter-13539", + "maker": "Maker J", + "model": "Model 13539", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.57771724082835, + 24.239048707416114 + ] + }, + "properties": { + "id": "meter-13540", + "maker": "Maker D", + "model": "Model 13540", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.44183654865604, + 19.03779965681768 + ] + }, + "properties": { + "id": "meter-13541", + "maker": "Maker B", + "model": "Model 13541", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.60854351248662, + 23.919830965878607 + ] + }, + "properties": { + "id": "meter-13542", + "maker": "Maker E", + "model": "Model 13542", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.793295634553374, + 21.017143615519707 + ] + }, + "properties": { + "id": "meter-13543", + "maker": "Maker A", + "model": "Model 13543", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.46206735002254, + 20.265117273202833 + ] + }, + "properties": { + "id": "meter-13544", + "maker": "Maker H", + "model": "Model 13544", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.835202195299594, + 27.082359537013776 + ] + }, + "properties": { + "id": "meter-13545", + "maker": "Maker F", + "model": "Model 13545", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48994385316052, + 26.21630327292781 + ] + }, + "properties": { + "id": "meter-13546", + "maker": "Maker B", + "model": "Model 13546", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.18526678624189, + 24.895396584203176 + ] + }, + "properties": { + "id": "meter-13547", + "maker": "Maker B", + "model": "Model 13547", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.35095126171157, + 24.91176665951642 + ] + }, + "properties": { + "id": "meter-13548", + "maker": "Maker H", + "model": "Model 13548", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.85334657732629, + 22.090264984734404 + ] + }, + "properties": { + "id": "meter-13549", + "maker": "Maker D", + "model": "Model 13549", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.09225368290968, + 29.965123991068182 + ] + }, + "properties": { + "id": "meter-13550", + "maker": "Maker I", + "model": "Model 13550", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.325054774884194, + 18.45254978913688 + ] + }, + "properties": { + "id": "meter-13551", + "maker": "Maker J", + "model": "Model 13551", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.24373606729438, + 19.431804079901635 + ] + }, + "properties": { + "id": "meter-13552", + "maker": "Maker D", + "model": "Model 13552", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.821695648742256, + 21.14988781522524 + ] + }, + "properties": { + "id": "meter-13553", + "maker": "Maker C", + "model": "Model 13553", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.89348491955879, + 21.70917924774375 + ] + }, + "properties": { + "id": "meter-13554", + "maker": "Maker B", + "model": "Model 13554", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.532587532992636, + 22.770890025209777 + ] + }, + "properties": { + "id": "meter-13555", + "maker": "Maker B", + "model": "Model 13555", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.04101047105376, + 21.099468566551355 + ] + }, + "properties": { + "id": "meter-13556", + "maker": "Maker F", + "model": "Model 13556", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.84079067090657, + 26.413538448812027 + ] + }, + "properties": { + "id": "meter-13557", + "maker": "Maker B", + "model": "Model 13557", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.43143292531937, + 21.563309385864567 + ] + }, + "properties": { + "id": "meter-13558", + "maker": "Maker E", + "model": "Model 13558", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.70721497307154, + 21.122823388208214 + ] + }, + "properties": { + "id": "meter-13559", + "maker": "Maker D", + "model": "Model 13559", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.41341356544062, + 21.325949972080885 + ] + }, + "properties": { + "id": "meter-13560", + "maker": "Maker C", + "model": "Model 13560", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.0704425391807, + 25.677604973751333 + ] + }, + "properties": { + "id": "meter-13561", + "maker": "Maker B", + "model": "Model 13561", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.61582282454373, + 27.481430711551067 + ] + }, + "properties": { + "id": "meter-13562", + "maker": "Maker H", + "model": "Model 13562", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.37157760516486, + 26.118727915668295 + ] + }, + "properties": { + "id": "meter-13563", + "maker": "Maker H", + "model": "Model 13563", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.408384474981226, + 20.295481921725564 + ] + }, + "properties": { + "id": "meter-13564", + "maker": "Maker A", + "model": "Model 13564", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.625577222753876, + 26.85265323882377 + ] + }, + "properties": { + "id": "meter-13565", + "maker": "Maker E", + "model": "Model 13565", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.46201789474442, + 20.461434600648143 + ] + }, + "properties": { + "id": "meter-13566", + "maker": "Maker E", + "model": "Model 13566", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.25097532141994, + 19.84327429584984 + ] + }, + "properties": { + "id": "meter-13567", + "maker": "Maker A", + "model": "Model 13567", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.53761851099947, + 23.53344225550105 + ] + }, + "properties": { + "id": "meter-13568", + "maker": "Maker C", + "model": "Model 13568", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.86093747265871, + 18.922572894219783 + ] + }, + "properties": { + "id": "meter-13569", + "maker": "Maker C", + "model": "Model 13569", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.23453818251856, + 29.403941190875614 + ] + }, + "properties": { + "id": "meter-13570", + "maker": "Maker I", + "model": "Model 13570", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.062187300197, + 25.137147976837223 + ] + }, + "properties": { + "id": "meter-13571", + "maker": "Maker I", + "model": "Model 13571", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.24549757822729, + 20.38491059652927 + ] + }, + "properties": { + "id": "meter-13572", + "maker": "Maker D", + "model": "Model 13572", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.675043878050595, + 20.646207721770963 + ] + }, + "properties": { + "id": "meter-13573", + "maker": "Maker C", + "model": "Model 13573", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.296758245869846, + 23.47161581244999 + ] + }, + "properties": { + "id": "meter-13574", + "maker": "Maker C", + "model": "Model 13574", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.72818220199421, + 30.058141381356727 + ] + }, + "properties": { + "id": "meter-13575", + "maker": "Maker F", + "model": "Model 13575", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.014923480258666, + 29.08188352287847 + ] + }, + "properties": { + "id": "meter-13576", + "maker": "Maker C", + "model": "Model 13576", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.45175313039089, + 25.145843738314884 + ] + }, + "properties": { + "id": "meter-13577", + "maker": "Maker C", + "model": "Model 13577", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.60291438166172, + 20.946011329626764 + ] + }, + "properties": { + "id": "meter-13578", + "maker": "Maker D", + "model": "Model 13578", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.8784921524005, + 29.89409115172844 + ] + }, + "properties": { + "id": "meter-13579", + "maker": "Maker F", + "model": "Model 13579", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.133873690500174, + 27.910088951044205 + ] + }, + "properties": { + "id": "meter-13580", + "maker": "Maker C", + "model": "Model 13580", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.43723554809709, + 27.10348723400353 + ] + }, + "properties": { + "id": "meter-13581", + "maker": "Maker J", + "model": "Model 13581", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.841439596816755, + 31.691140592420467 + ] + }, + "properties": { + "id": "meter-13582", + "maker": "Maker I", + "model": "Model 13582", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.20958467801105, + 19.227401972419642 + ] + }, + "properties": { + "id": "meter-13583", + "maker": "Maker B", + "model": "Model 13583", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.326886977156235, + 20.688694525405406 + ] + }, + "properties": { + "id": "meter-13584", + "maker": "Maker D", + "model": "Model 13584", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.44835636165071, + 26.506375227479538 + ] + }, + "properties": { + "id": "meter-13585", + "maker": "Maker F", + "model": "Model 13585", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.625221568709215, + 22.26155942442659 + ] + }, + "properties": { + "id": "meter-13586", + "maker": "Maker I", + "model": "Model 13586", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.309331728703775, + 21.404632266704326 + ] + }, + "properties": { + "id": "meter-13587", + "maker": "Maker I", + "model": "Model 13587", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.293113346105436, + 27.124786349722168 + ] + }, + "properties": { + "id": "meter-13588", + "maker": "Maker B", + "model": "Model 13588", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.382789713230935, + 25.269453989979937 + ] + }, + "properties": { + "id": "meter-13589", + "maker": "Maker F", + "model": "Model 13589", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.130564688128466, + 23.371082292612606 + ] + }, + "properties": { + "id": "meter-13590", + "maker": "Maker A", + "model": "Model 13590", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.849152007212, + 22.556243367552334 + ] + }, + "properties": { + "id": "meter-13591", + "maker": "Maker H", + "model": "Model 13591", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.65036107231007, + 20.95988065953126 + ] + }, + "properties": { + "id": "meter-13592", + "maker": "Maker D", + "model": "Model 13592", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.388841719843136, + 30.100044159180648 + ] + }, + "properties": { + "id": "meter-13593", + "maker": "Maker C", + "model": "Model 13593", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.83732320203037, + 18.73317528189832 + ] + }, + "properties": { + "id": "meter-13594", + "maker": "Maker G", + "model": "Model 13594", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.23248297252215, + 18.277686559176704 + ] + }, + "properties": { + "id": "meter-13595", + "maker": "Maker H", + "model": "Model 13595", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.592617710145376, + 22.468493074981787 + ] + }, + "properties": { + "id": "meter-13596", + "maker": "Maker G", + "model": "Model 13596", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.12614915167374, + 21.743536213609495 + ] + }, + "properties": { + "id": "meter-13597", + "maker": "Maker F", + "model": "Model 13597", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.21180202530396, + 27.190780241283626 + ] + }, + "properties": { + "id": "meter-13598", + "maker": "Maker B", + "model": "Model 13598", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.46691953836359, + 24.7865956034356 + ] + }, + "properties": { + "id": "meter-13599", + "maker": "Maker F", + "model": "Model 13599", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.99585657536057, + 20.54852899934214 + ] + }, + "properties": { + "id": "meter-13600", + "maker": "Maker E", + "model": "Model 13600", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.05523030951092, + 27.923135551198182 + ] + }, + "properties": { + "id": "meter-13601", + "maker": "Maker I", + "model": "Model 13601", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.02547508030324, + 26.995576238558204 + ] + }, + "properties": { + "id": "meter-13602", + "maker": "Maker G", + "model": "Model 13602", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.269658691538574, + 28.811817561764272 + ] + }, + "properties": { + "id": "meter-13603", + "maker": "Maker I", + "model": "Model 13603", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.886692088813135, + 29.146899317469867 + ] + }, + "properties": { + "id": "meter-13604", + "maker": "Maker C", + "model": "Model 13604", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.347213337391935, + 21.60477126127874 + ] + }, + "properties": { + "id": "meter-13605", + "maker": "Maker J", + "model": "Model 13605", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.054206756445964, + 22.74607598901093 + ] + }, + "properties": { + "id": "meter-13606", + "maker": "Maker J", + "model": "Model 13606", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.28515168162563, + 22.830538294418414 + ] + }, + "properties": { + "id": "meter-13607", + "maker": "Maker D", + "model": "Model 13607", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.4743212736912, + 23.70347685587398 + ] + }, + "properties": { + "id": "meter-13608", + "maker": "Maker F", + "model": "Model 13608", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91241103054904, + 21.392140632242185 + ] + }, + "properties": { + "id": "meter-13609", + "maker": "Maker I", + "model": "Model 13609", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.56458844830135, + 22.76883973279091 + ] + }, + "properties": { + "id": "meter-13610", + "maker": "Maker C", + "model": "Model 13610", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.31889123814524, + 20.130434459081968 + ] + }, + "properties": { + "id": "meter-13611", + "maker": "Maker J", + "model": "Model 13611", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.358479059471364, + 21.950839217423365 + ] + }, + "properties": { + "id": "meter-13612", + "maker": "Maker G", + "model": "Model 13612", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.00658793843062, + 21.823332218934816 + ] + }, + "properties": { + "id": "meter-13613", + "maker": "Maker B", + "model": "Model 13613", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.177158356926405, + 22.16048904297938 + ] + }, + "properties": { + "id": "meter-13614", + "maker": "Maker F", + "model": "Model 13614", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.85414388764826, + 24.940538103303666 + ] + }, + "properties": { + "id": "meter-13615", + "maker": "Maker A", + "model": "Model 13615", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.629585103116455, + 28.260939609731963 + ] + }, + "properties": { + "id": "meter-13616", + "maker": "Maker C", + "model": "Model 13616", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92067740246714, + 24.3753583841466 + ] + }, + "properties": { + "id": "meter-13617", + "maker": "Maker E", + "model": "Model 13617", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.71412325115471, + 29.9196708055814 + ] + }, + "properties": { + "id": "meter-13618", + "maker": "Maker G", + "model": "Model 13618", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.30478933916733, + 24.949166323183924 + ] + }, + "properties": { + "id": "meter-13619", + "maker": "Maker I", + "model": "Model 13619", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.557636583911815, + 27.898632159545503 + ] + }, + "properties": { + "id": "meter-13620", + "maker": "Maker J", + "model": "Model 13620", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.711566589183185, + 25.579580243948044 + ] + }, + "properties": { + "id": "meter-13621", + "maker": "Maker G", + "model": "Model 13621", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.975654074678495, + 24.532726048231613 + ] + }, + "properties": { + "id": "meter-13622", + "maker": "Maker J", + "model": "Model 13622", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.2488919108386, + 22.450962352285256 + ] + }, + "properties": { + "id": "meter-13623", + "maker": "Maker E", + "model": "Model 13623", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.31365588506375, + 31.40495831173724 + ] + }, + "properties": { + "id": "meter-13624", + "maker": "Maker G", + "model": "Model 13624", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.43395891964191, + 22.19153183334968 + ] + }, + "properties": { + "id": "meter-13625", + "maker": "Maker E", + "model": "Model 13625", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.4992118961576, + 19.56542345547225 + ] + }, + "properties": { + "id": "meter-13626", + "maker": "Maker G", + "model": "Model 13626", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.563514285502315, + 21.87810786595991 + ] + }, + "properties": { + "id": "meter-13627", + "maker": "Maker B", + "model": "Model 13627", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.25435348587758, + 17.68033951117551 + ] + }, + "properties": { + "id": "meter-13628", + "maker": "Maker J", + "model": "Model 13628", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.724683710943566, + 20.84707799673917 + ] + }, + "properties": { + "id": "meter-13629", + "maker": "Maker H", + "model": "Model 13629", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.656276096125296, + 21.47245944734521 + ] + }, + "properties": { + "id": "meter-13630", + "maker": "Maker E", + "model": "Model 13630", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.01901525485317, + 27.369813280526223 + ] + }, + "properties": { + "id": "meter-13631", + "maker": "Maker B", + "model": "Model 13631", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.38262552314525, + 20.506989637224347 + ] + }, + "properties": { + "id": "meter-13632", + "maker": "Maker H", + "model": "Model 13632", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.488820323329264, + 21.338616241080633 + ] + }, + "properties": { + "id": "meter-13633", + "maker": "Maker D", + "model": "Model 13633", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.148234656059515, + 26.744550751328283 + ] + }, + "properties": { + "id": "meter-13634", + "maker": "Maker C", + "model": "Model 13634", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.95051273548284, + 22.30330424315457 + ] + }, + "properties": { + "id": "meter-13635", + "maker": "Maker A", + "model": "Model 13635", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.454487113445104, + 27.407892836068257 + ] + }, + "properties": { + "id": "meter-13636", + "maker": "Maker J", + "model": "Model 13636", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.218176157010724, + 21.843487037611915 + ] + }, + "properties": { + "id": "meter-13637", + "maker": "Maker B", + "model": "Model 13637", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.04838157472475, + 29.441740088181618 + ] + }, + "properties": { + "id": "meter-13638", + "maker": "Maker D", + "model": "Model 13638", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.577279901577114, + 24.47906522312176 + ] + }, + "properties": { + "id": "meter-13639", + "maker": "Maker H", + "model": "Model 13639", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.385721106505315, + 18.818233179409802 + ] + }, + "properties": { + "id": "meter-13640", + "maker": "Maker A", + "model": "Model 13640", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.757090934696606, + 29.483792140842137 + ] + }, + "properties": { + "id": "meter-13641", + "maker": "Maker J", + "model": "Model 13641", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45835823517017, + 28.219350769885388 + ] + }, + "properties": { + "id": "meter-13642", + "maker": "Maker D", + "model": "Model 13642", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.56914698775416, + 18.885364300899102 + ] + }, + "properties": { + "id": "meter-13643", + "maker": "Maker A", + "model": "Model 13643", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.687503030262235, + 24.19618040986904 + ] + }, + "properties": { + "id": "meter-13644", + "maker": "Maker A", + "model": "Model 13644", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.1625707835973, + 17.84432125989551 + ] + }, + "properties": { + "id": "meter-13645", + "maker": "Maker E", + "model": "Model 13645", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.77997627222018, + 31.010554007556948 + ] + }, + "properties": { + "id": "meter-13646", + "maker": "Maker E", + "model": "Model 13646", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.753768717527784, + 19.543782345248676 + ] + }, + "properties": { + "id": "meter-13647", + "maker": "Maker A", + "model": "Model 13647", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.03897297480158, + 28.56068619296301 + ] + }, + "properties": { + "id": "meter-13648", + "maker": "Maker G", + "model": "Model 13648", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.647909698854775, + 23.862805238966658 + ] + }, + "properties": { + "id": "meter-13649", + "maker": "Maker F", + "model": "Model 13649", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.369689239568345, + 19.1373972313849 + ] + }, + "properties": { + "id": "meter-13650", + "maker": "Maker C", + "model": "Model 13650", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.79478649438015, + 22.553689747675456 + ] + }, + "properties": { + "id": "meter-13651", + "maker": "Maker I", + "model": "Model 13651", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.555486282976084, + 26.751383279354435 + ] + }, + "properties": { + "id": "meter-13652", + "maker": "Maker A", + "model": "Model 13652", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.53877685720576, + 20.99396437841362 + ] + }, + "properties": { + "id": "meter-13653", + "maker": "Maker I", + "model": "Model 13653", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.74937162152449, + 29.871098715699755 + ] + }, + "properties": { + "id": "meter-13654", + "maker": "Maker I", + "model": "Model 13654", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.44211702969004, + 19.1483443518514 + ] + }, + "properties": { + "id": "meter-13655", + "maker": "Maker J", + "model": "Model 13655", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.622363288400365, + 26.820708272601642 + ] + }, + "properties": { + "id": "meter-13656", + "maker": "Maker F", + "model": "Model 13656", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.8952136734133, + 22.770196541047877 + ] + }, + "properties": { + "id": "meter-13657", + "maker": "Maker C", + "model": "Model 13657", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.318360511786295, + 20.69317748710461 + ] + }, + "properties": { + "id": "meter-13658", + "maker": "Maker F", + "model": "Model 13658", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.04067038317065, + 19.243470131018135 + ] + }, + "properties": { + "id": "meter-13659", + "maker": "Maker G", + "model": "Model 13659", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.09132864796938, + 20.630747973795636 + ] + }, + "properties": { + "id": "meter-13660", + "maker": "Maker I", + "model": "Model 13660", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.2292508061869, + 27.280368918937235 + ] + }, + "properties": { + "id": "meter-13661", + "maker": "Maker E", + "model": "Model 13661", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.10984042783075, + 24.082928496008563 + ] + }, + "properties": { + "id": "meter-13662", + "maker": "Maker H", + "model": "Model 13662", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.22210536931898, + 30.82740469029314 + ] + }, + "properties": { + "id": "meter-13663", + "maker": "Maker I", + "model": "Model 13663", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.48915190004593, + 28.259795916278303 + ] + }, + "properties": { + "id": "meter-13664", + "maker": "Maker G", + "model": "Model 13664", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.77375700220557, + 31.84006763168292 + ] + }, + "properties": { + "id": "meter-13665", + "maker": "Maker G", + "model": "Model 13665", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.788622564212325, + 23.457378925937434 + ] + }, + "properties": { + "id": "meter-13666", + "maker": "Maker E", + "model": "Model 13666", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.510745039365034, + 20.60910464129537 + ] + }, + "properties": { + "id": "meter-13667", + "maker": "Maker G", + "model": "Model 13667", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.12033448965059, + 28.398337273731688 + ] + }, + "properties": { + "id": "meter-13668", + "maker": "Maker A", + "model": "Model 13668", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.64444056574287, + 21.290578092082345 + ] + }, + "properties": { + "id": "meter-13669", + "maker": "Maker I", + "model": "Model 13669", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.1335231650452, + 26.270978144481475 + ] + }, + "properties": { + "id": "meter-13670", + "maker": "Maker F", + "model": "Model 13670", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.78357167541364, + 22.35157402591849 + ] + }, + "properties": { + "id": "meter-13671", + "maker": "Maker B", + "model": "Model 13671", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.32031152385039, + 25.364928256239498 + ] + }, + "properties": { + "id": "meter-13672", + "maker": "Maker D", + "model": "Model 13672", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.043836083166816, + 31.188672650646367 + ] + }, + "properties": { + "id": "meter-13673", + "maker": "Maker A", + "model": "Model 13673", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.2438524831537, + 27.31708425312737 + ] + }, + "properties": { + "id": "meter-13674", + "maker": "Maker A", + "model": "Model 13674", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.67991788628656, + 26.6920685441734 + ] + }, + "properties": { + "id": "meter-13675", + "maker": "Maker D", + "model": "Model 13675", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.58488866872847, + 30.328578773621402 + ] + }, + "properties": { + "id": "meter-13676", + "maker": "Maker F", + "model": "Model 13676", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.59322405153498, + 28.58397323941091 + ] + }, + "properties": { + "id": "meter-13677", + "maker": "Maker B", + "model": "Model 13677", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.142250917381354, + 29.9685682162186 + ] + }, + "properties": { + "id": "meter-13678", + "maker": "Maker F", + "model": "Model 13678", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.63835934870747, + 20.829736872201384 + ] + }, + "properties": { + "id": "meter-13679", + "maker": "Maker G", + "model": "Model 13679", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.050330963354284, + 26.541477825130293 + ] + }, + "properties": { + "id": "meter-13680", + "maker": "Maker G", + "model": "Model 13680", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.24515537323833, + 21.05269105180095 + ] + }, + "properties": { + "id": "meter-13681", + "maker": "Maker D", + "model": "Model 13681", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.3581608255337, + 20.78843320530586 + ] + }, + "properties": { + "id": "meter-13682", + "maker": "Maker J", + "model": "Model 13682", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.80546858826125, + 26.857313570681903 + ] + }, + "properties": { + "id": "meter-13683", + "maker": "Maker G", + "model": "Model 13683", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.11866919393043, + 27.600177161742014 + ] + }, + "properties": { + "id": "meter-13684", + "maker": "Maker A", + "model": "Model 13684", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.565902952283245, + 18.678386102167988 + ] + }, + "properties": { + "id": "meter-13685", + "maker": "Maker C", + "model": "Model 13685", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.02093276131078, + 19.321965767099808 + ] + }, + "properties": { + "id": "meter-13686", + "maker": "Maker H", + "model": "Model 13686", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99458103580111, + 20.869394697075652 + ] + }, + "properties": { + "id": "meter-13687", + "maker": "Maker B", + "model": "Model 13687", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.16663836229537, + 19.6319647190346 + ] + }, + "properties": { + "id": "meter-13688", + "maker": "Maker G", + "model": "Model 13688", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.477218236490984, + 24.954589249824657 + ] + }, + "properties": { + "id": "meter-13689", + "maker": "Maker E", + "model": "Model 13689", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.72391683467677, + 25.224917598773786 + ] + }, + "properties": { + "id": "meter-13690", + "maker": "Maker D", + "model": "Model 13690", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.192494603291074, + 25.126726019824744 + ] + }, + "properties": { + "id": "meter-13691", + "maker": "Maker I", + "model": "Model 13691", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.640570083088335, + 19.963460785000844 + ] + }, + "properties": { + "id": "meter-13692", + "maker": "Maker I", + "model": "Model 13692", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.80905008357462, + 28.281114209106615 + ] + }, + "properties": { + "id": "meter-13693", + "maker": "Maker E", + "model": "Model 13693", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.40310544743413, + 24.033328773505843 + ] + }, + "properties": { + "id": "meter-13694", + "maker": "Maker B", + "model": "Model 13694", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.740627063616806, + 26.1907779053147 + ] + }, + "properties": { + "id": "meter-13695", + "maker": "Maker C", + "model": "Model 13695", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.27346806696515, + 23.31807237502329 + ] + }, + "properties": { + "id": "meter-13696", + "maker": "Maker C", + "model": "Model 13696", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.76447911841868, + 25.951495853642157 + ] + }, + "properties": { + "id": "meter-13697", + "maker": "Maker G", + "model": "Model 13697", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.17029316299697, + 27.6575513328737 + ] + }, + "properties": { + "id": "meter-13698", + "maker": "Maker B", + "model": "Model 13698", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.24048346373831, + 25.39394222983304 + ] + }, + "properties": { + "id": "meter-13699", + "maker": "Maker G", + "model": "Model 13699", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.375356109857535, + 31.100145470326446 + ] + }, + "properties": { + "id": "meter-13700", + "maker": "Maker C", + "model": "Model 13700", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.81405181750348, + 19.69886825999475 + ] + }, + "properties": { + "id": "meter-13701", + "maker": "Maker E", + "model": "Model 13701", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.706798444459366, + 18.721792691212073 + ] + }, + "properties": { + "id": "meter-13702", + "maker": "Maker I", + "model": "Model 13702", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.35471446313203, + 26.313345681427545 + ] + }, + "properties": { + "id": "meter-13703", + "maker": "Maker C", + "model": "Model 13703", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.12006945399136, + 26.979334984848798 + ] + }, + "properties": { + "id": "meter-13704", + "maker": "Maker B", + "model": "Model 13704", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.6121587653919, + 28.32931107734057 + ] + }, + "properties": { + "id": "meter-13705", + "maker": "Maker H", + "model": "Model 13705", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.10821353416991, + 26.81814637721186 + ] + }, + "properties": { + "id": "meter-13706", + "maker": "Maker H", + "model": "Model 13706", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.09032371587976, + 22.14680658456639 + ] + }, + "properties": { + "id": "meter-13707", + "maker": "Maker J", + "model": "Model 13707", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.25676933899061, + 27.253302614564703 + ] + }, + "properties": { + "id": "meter-13708", + "maker": "Maker B", + "model": "Model 13708", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.28189319732719, + 25.99268688803744 + ] + }, + "properties": { + "id": "meter-13709", + "maker": "Maker A", + "model": "Model 13709", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.833962166504975, + 22.70978551253959 + ] + }, + "properties": { + "id": "meter-13710", + "maker": "Maker I", + "model": "Model 13710", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.63022258376977, + 25.372397609794568 + ] + }, + "properties": { + "id": "meter-13711", + "maker": "Maker C", + "model": "Model 13711", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.728990008152635, + 25.025113805603446 + ] + }, + "properties": { + "id": "meter-13712", + "maker": "Maker D", + "model": "Model 13712", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89921337567555, + 28.73894992666184 + ] + }, + "properties": { + "id": "meter-13713", + "maker": "Maker F", + "model": "Model 13713", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.376896070268074, + 18.797067755121642 + ] + }, + "properties": { + "id": "meter-13714", + "maker": "Maker F", + "model": "Model 13714", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.32139942689808, + 24.220958818813553 + ] + }, + "properties": { + "id": "meter-13715", + "maker": "Maker D", + "model": "Model 13715", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.53265981582238, + 25.469145426296098 + ] + }, + "properties": { + "id": "meter-13716", + "maker": "Maker G", + "model": "Model 13716", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.086656646003505, + 20.924365593374528 + ] + }, + "properties": { + "id": "meter-13717", + "maker": "Maker C", + "model": "Model 13717", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.639509960195596, + 26.517759589760736 + ] + }, + "properties": { + "id": "meter-13718", + "maker": "Maker B", + "model": "Model 13718", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.25441632062623, + 21.779918335264945 + ] + }, + "properties": { + "id": "meter-13719", + "maker": "Maker C", + "model": "Model 13719", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.09608394786734, + 28.57027304134531 + ] + }, + "properties": { + "id": "meter-13720", + "maker": "Maker E", + "model": "Model 13720", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.11458153428368, + 23.79826918641753 + ] + }, + "properties": { + "id": "meter-13721", + "maker": "Maker D", + "model": "Model 13721", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.53229891204088, + 31.3175314374392 + ] + }, + "properties": { + "id": "meter-13722", + "maker": "Maker C", + "model": "Model 13722", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.25817330627683, + 18.452872984528526 + ] + }, + "properties": { + "id": "meter-13723", + "maker": "Maker A", + "model": "Model 13723", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.00088178823458, + 28.886394621614187 + ] + }, + "properties": { + "id": "meter-13724", + "maker": "Maker E", + "model": "Model 13724", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.3277964375634, + 18.003879506647678 + ] + }, + "properties": { + "id": "meter-13725", + "maker": "Maker C", + "model": "Model 13725", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.1023791781973, + 18.891901180057147 + ] + }, + "properties": { + "id": "meter-13726", + "maker": "Maker A", + "model": "Model 13726", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.32946884120749, + 30.468721042606063 + ] + }, + "properties": { + "id": "meter-13727", + "maker": "Maker G", + "model": "Model 13727", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.29431043663297, + 27.022095842754222 + ] + }, + "properties": { + "id": "meter-13728", + "maker": "Maker C", + "model": "Model 13728", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.75724403535219, + 22.736388037733235 + ] + }, + "properties": { + "id": "meter-13729", + "maker": "Maker G", + "model": "Model 13729", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.43422437411666, + 26.66085754905668 + ] + }, + "properties": { + "id": "meter-13730", + "maker": "Maker I", + "model": "Model 13730", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.527332566641206, + 26.718542892487786 + ] + }, + "properties": { + "id": "meter-13731", + "maker": "Maker H", + "model": "Model 13731", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.40532795709449, + 21.622746062038573 + ] + }, + "properties": { + "id": "meter-13732", + "maker": "Maker D", + "model": "Model 13732", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.88432046646125, + 26.329643576880557 + ] + }, + "properties": { + "id": "meter-13733", + "maker": "Maker C", + "model": "Model 13733", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.253446395078925, + 28.92161598092099 + ] + }, + "properties": { + "id": "meter-13734", + "maker": "Maker J", + "model": "Model 13734", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.95850534753721, + 23.22469132736514 + ] + }, + "properties": { + "id": "meter-13735", + "maker": "Maker C", + "model": "Model 13735", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.96241203601628, + 25.02415482394396 + ] + }, + "properties": { + "id": "meter-13736", + "maker": "Maker F", + "model": "Model 13736", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17280786008574, + 23.840409583919246 + ] + }, + "properties": { + "id": "meter-13737", + "maker": "Maker H", + "model": "Model 13737", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.375381418467505, + 19.838184086331832 + ] + }, + "properties": { + "id": "meter-13738", + "maker": "Maker I", + "model": "Model 13738", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.55156505014614, + 21.214756885897778 + ] + }, + "properties": { + "id": "meter-13739", + "maker": "Maker J", + "model": "Model 13739", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.51921487005084, + 26.827689760978394 + ] + }, + "properties": { + "id": "meter-13740", + "maker": "Maker C", + "model": "Model 13740", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.72385708169891, + 18.504387513906916 + ] + }, + "properties": { + "id": "meter-13741", + "maker": "Maker I", + "model": "Model 13741", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.35605780596774, + 26.216318644585854 + ] + }, + "properties": { + "id": "meter-13742", + "maker": "Maker E", + "model": "Model 13742", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.117939505826214, + 20.822476680622 + ] + }, + "properties": { + "id": "meter-13743", + "maker": "Maker J", + "model": "Model 13743", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04676348962293, + 23.66092612823003 + ] + }, + "properties": { + "id": "meter-13744", + "maker": "Maker F", + "model": "Model 13744", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.11368391333367, + 24.507351300158522 + ] + }, + "properties": { + "id": "meter-13745", + "maker": "Maker H", + "model": "Model 13745", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.12459575243334, + 20.88455790873154 + ] + }, + "properties": { + "id": "meter-13746", + "maker": "Maker B", + "model": "Model 13746", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.407775564053274, + 26.33241108818693 + ] + }, + "properties": { + "id": "meter-13747", + "maker": "Maker E", + "model": "Model 13747", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.21560727317766, + 27.969881197429427 + ] + }, + "properties": { + "id": "meter-13748", + "maker": "Maker F", + "model": "Model 13748", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.40192244673567, + 31.147521239338467 + ] + }, + "properties": { + "id": "meter-13749", + "maker": "Maker C", + "model": "Model 13749", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.69469686475075, + 21.862729266738892 + ] + }, + "properties": { + "id": "meter-13750", + "maker": "Maker G", + "model": "Model 13750", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.64478002377476, + 22.46963408451903 + ] + }, + "properties": { + "id": "meter-13751", + "maker": "Maker J", + "model": "Model 13751", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.019248309486045, + 29.580200029219107 + ] + }, + "properties": { + "id": "meter-13752", + "maker": "Maker C", + "model": "Model 13752", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.28931603549302, + 22.38448672814848 + ] + }, + "properties": { + "id": "meter-13753", + "maker": "Maker I", + "model": "Model 13753", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.5524755834636, + 19.347596597315786 + ] + }, + "properties": { + "id": "meter-13754", + "maker": "Maker J", + "model": "Model 13754", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.73176732494828, + 23.281728187992698 + ] + }, + "properties": { + "id": "meter-13755", + "maker": "Maker G", + "model": "Model 13755", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.70362507622792, + 26.91378153244402 + ] + }, + "properties": { + "id": "meter-13756", + "maker": "Maker B", + "model": "Model 13756", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.40659423275404, + 25.461981533318237 + ] + }, + "properties": { + "id": "meter-13757", + "maker": "Maker B", + "model": "Model 13757", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.21334149070765, + 20.927371927019475 + ] + }, + "properties": { + "id": "meter-13758", + "maker": "Maker G", + "model": "Model 13758", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53388358804819, + 17.237956597422055 + ] + }, + "properties": { + "id": "meter-13759", + "maker": "Maker E", + "model": "Model 13759", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.84962302375543, + 21.899489281998047 + ] + }, + "properties": { + "id": "meter-13760", + "maker": "Maker E", + "model": "Model 13760", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.8224202644733, + 26.554628199779163 + ] + }, + "properties": { + "id": "meter-13761", + "maker": "Maker I", + "model": "Model 13761", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.11853286559729, + 27.851402682715246 + ] + }, + "properties": { + "id": "meter-13762", + "maker": "Maker G", + "model": "Model 13762", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.94251303329612, + 27.025181141761934 + ] + }, + "properties": { + "id": "meter-13763", + "maker": "Maker E", + "model": "Model 13763", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.998199965172546, + 23.31987899025802 + ] + }, + "properties": { + "id": "meter-13764", + "maker": "Maker C", + "model": "Model 13764", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.060039976126085, + 22.11571884616029 + ] + }, + "properties": { + "id": "meter-13765", + "maker": "Maker B", + "model": "Model 13765", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.08867770096808, + 23.096363528476463 + ] + }, + "properties": { + "id": "meter-13766", + "maker": "Maker E", + "model": "Model 13766", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.11076249530487, + 20.887050651346996 + ] + }, + "properties": { + "id": "meter-13767", + "maker": "Maker B", + "model": "Model 13767", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69877860601255, + 30.912869470152597 + ] + }, + "properties": { + "id": "meter-13768", + "maker": "Maker A", + "model": "Model 13768", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.24859195380237, + 22.254728589461116 + ] + }, + "properties": { + "id": "meter-13769", + "maker": "Maker F", + "model": "Model 13769", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.93964888839602, + 21.56188824617564 + ] + }, + "properties": { + "id": "meter-13770", + "maker": "Maker F", + "model": "Model 13770", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.201738002981486, + 28.86428162296164 + ] + }, + "properties": { + "id": "meter-13771", + "maker": "Maker C", + "model": "Model 13771", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.87087333109535, + 28.743510351148096 + ] + }, + "properties": { + "id": "meter-13772", + "maker": "Maker E", + "model": "Model 13772", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.9849183467064, + 24.455363361018026 + ] + }, + "properties": { + "id": "meter-13773", + "maker": "Maker H", + "model": "Model 13773", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.950429185223555, + 27.36074371157678 + ] + }, + "properties": { + "id": "meter-13774", + "maker": "Maker E", + "model": "Model 13774", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.03013664223559, + 30.51364815264602 + ] + }, + "properties": { + "id": "meter-13775", + "maker": "Maker E", + "model": "Model 13775", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66150380977271, + 29.421996583009125 + ] + }, + "properties": { + "id": "meter-13776", + "maker": "Maker D", + "model": "Model 13776", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.960592790404576, + 20.949622353674272 + ] + }, + "properties": { + "id": "meter-13777", + "maker": "Maker G", + "model": "Model 13777", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.85007795979654, + 31.015436174428203 + ] + }, + "properties": { + "id": "meter-13778", + "maker": "Maker F", + "model": "Model 13778", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.68134906059314, + 26.854469344353895 + ] + }, + "properties": { + "id": "meter-13779", + "maker": "Maker D", + "model": "Model 13779", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.11444492023331, + 24.281673590670017 + ] + }, + "properties": { + "id": "meter-13780", + "maker": "Maker H", + "model": "Model 13780", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.63725755255653, + 19.883704304054145 + ] + }, + "properties": { + "id": "meter-13781", + "maker": "Maker F", + "model": "Model 13781", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.41864044049708, + 26.766028685789404 + ] + }, + "properties": { + "id": "meter-13782", + "maker": "Maker B", + "model": "Model 13782", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.96039138897908, + 24.743074716802827 + ] + }, + "properties": { + "id": "meter-13783", + "maker": "Maker G", + "model": "Model 13783", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.72390210023586, + 19.60027103524745 + ] + }, + "properties": { + "id": "meter-13784", + "maker": "Maker I", + "model": "Model 13784", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.58572869305888, + 27.491204706665272 + ] + }, + "properties": { + "id": "meter-13785", + "maker": "Maker A", + "model": "Model 13785", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.85056218666028, + 21.570886483257844 + ] + }, + "properties": { + "id": "meter-13786", + "maker": "Maker B", + "model": "Model 13786", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.99347762103962, + 18.89096187548828 + ] + }, + "properties": { + "id": "meter-13787", + "maker": "Maker E", + "model": "Model 13787", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.44536636526228, + 24.743661578280665 + ] + }, + "properties": { + "id": "meter-13788", + "maker": "Maker A", + "model": "Model 13788", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.03487899623021, + 20.513936477707222 + ] + }, + "properties": { + "id": "meter-13789", + "maker": "Maker C", + "model": "Model 13789", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.15952943620634, + 26.89115392179719 + ] + }, + "properties": { + "id": "meter-13790", + "maker": "Maker H", + "model": "Model 13790", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.809511856904095, + 28.025076304404294 + ] + }, + "properties": { + "id": "meter-13791", + "maker": "Maker H", + "model": "Model 13791", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.488663655329155, + 31.243961116186092 + ] + }, + "properties": { + "id": "meter-13792", + "maker": "Maker J", + "model": "Model 13792", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.773860326495566, + 20.85586155441667 + ] + }, + "properties": { + "id": "meter-13793", + "maker": "Maker H", + "model": "Model 13793", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.43456322668629, + 22.317417516081143 + ] + }, + "properties": { + "id": "meter-13794", + "maker": "Maker E", + "model": "Model 13794", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.12856379881703, + 25.544507740550593 + ] + }, + "properties": { + "id": "meter-13795", + "maker": "Maker D", + "model": "Model 13795", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.84361442811409, + 25.37094572128596 + ] + }, + "properties": { + "id": "meter-13796", + "maker": "Maker I", + "model": "Model 13796", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.06159278816001, + 21.856590995299705 + ] + }, + "properties": { + "id": "meter-13797", + "maker": "Maker D", + "model": "Model 13797", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.335340721182675, + 23.559625541520738 + ] + }, + "properties": { + "id": "meter-13798", + "maker": "Maker F", + "model": "Model 13798", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.16379752647615, + 22.078166151338003 + ] + }, + "properties": { + "id": "meter-13799", + "maker": "Maker C", + "model": "Model 13799", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.987837475916685, + 23.100412635590253 + ] + }, + "properties": { + "id": "meter-13800", + "maker": "Maker E", + "model": "Model 13800", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.80555445151666, + 25.217751410160115 + ] + }, + "properties": { + "id": "meter-13801", + "maker": "Maker J", + "model": "Model 13801", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.73048583897693, + 23.899394778291075 + ] + }, + "properties": { + "id": "meter-13802", + "maker": "Maker F", + "model": "Model 13802", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.941396479318726, + 22.917955698263558 + ] + }, + "properties": { + "id": "meter-13803", + "maker": "Maker B", + "model": "Model 13803", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.54793089216103, + 21.731620902737305 + ] + }, + "properties": { + "id": "meter-13804", + "maker": "Maker D", + "model": "Model 13804", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.750580669662604, + 19.374165561913216 + ] + }, + "properties": { + "id": "meter-13805", + "maker": "Maker E", + "model": "Model 13805", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.47024185923962, + 21.56360686838397 + ] + }, + "properties": { + "id": "meter-13806", + "maker": "Maker B", + "model": "Model 13806", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.140051801195554, + 31.419167062700822 + ] + }, + "properties": { + "id": "meter-13807", + "maker": "Maker D", + "model": "Model 13807", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.24428884346517, + 25.952197758116153 + ] + }, + "properties": { + "id": "meter-13808", + "maker": "Maker A", + "model": "Model 13808", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.49300315287478, + 23.00906321089687 + ] + }, + "properties": { + "id": "meter-13809", + "maker": "Maker B", + "model": "Model 13809", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.97343091107832, + 28.62585552232595 + ] + }, + "properties": { + "id": "meter-13810", + "maker": "Maker G", + "model": "Model 13810", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06808815769337, + 22.948505127224337 + ] + }, + "properties": { + "id": "meter-13811", + "maker": "Maker J", + "model": "Model 13811", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.057707945938176, + 21.658094939825308 + ] + }, + "properties": { + "id": "meter-13812", + "maker": "Maker H", + "model": "Model 13812", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.40605113905462, + 21.900334104905383 + ] + }, + "properties": { + "id": "meter-13813", + "maker": "Maker G", + "model": "Model 13813", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.204924590900035, + 30.949150347617596 + ] + }, + "properties": { + "id": "meter-13814", + "maker": "Maker F", + "model": "Model 13814", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.293457730858506, + 21.57837774373895 + ] + }, + "properties": { + "id": "meter-13815", + "maker": "Maker E", + "model": "Model 13815", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88807909711987, + 24.85872543412849 + ] + }, + "properties": { + "id": "meter-13816", + "maker": "Maker F", + "model": "Model 13816", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.7013614449985, + 24.79698813182624 + ] + }, + "properties": { + "id": "meter-13817", + "maker": "Maker H", + "model": "Model 13817", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.350942279527935, + 21.327373040858614 + ] + }, + "properties": { + "id": "meter-13818", + "maker": "Maker A", + "model": "Model 13818", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.65625388631561, + 29.66653812254674 + ] + }, + "properties": { + "id": "meter-13819", + "maker": "Maker F", + "model": "Model 13819", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.26654695519417, + 27.871791143365147 + ] + }, + "properties": { + "id": "meter-13820", + "maker": "Maker J", + "model": "Model 13820", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.27478557225606, + 30.17021572407191 + ] + }, + "properties": { + "id": "meter-13821", + "maker": "Maker C", + "model": "Model 13821", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.044893023021636, + 20.160814107708664 + ] + }, + "properties": { + "id": "meter-13822", + "maker": "Maker F", + "model": "Model 13822", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.274660458171326, + 25.948496236151055 + ] + }, + "properties": { + "id": "meter-13823", + "maker": "Maker I", + "model": "Model 13823", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.926614791259176, + 25.887106953078792 + ] + }, + "properties": { + "id": "meter-13824", + "maker": "Maker H", + "model": "Model 13824", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.463523004473984, + 22.301579817249642 + ] + }, + "properties": { + "id": "meter-13825", + "maker": "Maker D", + "model": "Model 13825", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.05644082969553, + 29.860612635413908 + ] + }, + "properties": { + "id": "meter-13826", + "maker": "Maker F", + "model": "Model 13826", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.83647453182226, + 24.573088713168236 + ] + }, + "properties": { + "id": "meter-13827", + "maker": "Maker I", + "model": "Model 13827", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.814031836550186, + 20.219306393267416 + ] + }, + "properties": { + "id": "meter-13828", + "maker": "Maker C", + "model": "Model 13828", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.897871076787034, + 21.753953771571076 + ] + }, + "properties": { + "id": "meter-13829", + "maker": "Maker G", + "model": "Model 13829", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.104437017671486, + 19.258081723456527 + ] + }, + "properties": { + "id": "meter-13830", + "maker": "Maker D", + "model": "Model 13830", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.050137825869065, + 26.922844588168292 + ] + }, + "properties": { + "id": "meter-13831", + "maker": "Maker C", + "model": "Model 13831", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.42024021516175, + 22.756432919940814 + ] + }, + "properties": { + "id": "meter-13832", + "maker": "Maker D", + "model": "Model 13832", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.05490350285026, + 30.602114535573747 + ] + }, + "properties": { + "id": "meter-13833", + "maker": "Maker C", + "model": "Model 13833", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.491588633420356, + 25.55094774117763 + ] + }, + "properties": { + "id": "meter-13834", + "maker": "Maker B", + "model": "Model 13834", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.204789639798264, + 28.784969721118074 + ] + }, + "properties": { + "id": "meter-13835", + "maker": "Maker E", + "model": "Model 13835", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.32935944135634, + 27.836393836851066 + ] + }, + "properties": { + "id": "meter-13836", + "maker": "Maker H", + "model": "Model 13836", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.2425255415978, + 25.099518172017056 + ] + }, + "properties": { + "id": "meter-13837", + "maker": "Maker D", + "model": "Model 13837", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.26927119508842, + 24.943738712620444 + ] + }, + "properties": { + "id": "meter-13838", + "maker": "Maker I", + "model": "Model 13838", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.78351712495396, + 29.764422285017318 + ] + }, + "properties": { + "id": "meter-13839", + "maker": "Maker D", + "model": "Model 13839", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.513486711567886, + 24.403028640072186 + ] + }, + "properties": { + "id": "meter-13840", + "maker": "Maker A", + "model": "Model 13840", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.47514601321718, + 22.62007522195652 + ] + }, + "properties": { + "id": "meter-13841", + "maker": "Maker C", + "model": "Model 13841", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.41223255999452, + 18.78862535644101 + ] + }, + "properties": { + "id": "meter-13842", + "maker": "Maker C", + "model": "Model 13842", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.64883642035051, + 31.25378101447935 + ] + }, + "properties": { + "id": "meter-13843", + "maker": "Maker J", + "model": "Model 13843", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.88406173841983, + 24.255798244897527 + ] + }, + "properties": { + "id": "meter-13844", + "maker": "Maker H", + "model": "Model 13844", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.432315600348545, + 24.51752815022826 + ] + }, + "properties": { + "id": "meter-13845", + "maker": "Maker C", + "model": "Model 13845", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.068413796872505, + 19.204813624793687 + ] + }, + "properties": { + "id": "meter-13846", + "maker": "Maker H", + "model": "Model 13846", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.4351902772492, + 24.46352807065496 + ] + }, + "properties": { + "id": "meter-13847", + "maker": "Maker H", + "model": "Model 13847", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.28402688488315, + 26.730084165168833 + ] + }, + "properties": { + "id": "meter-13848", + "maker": "Maker J", + "model": "Model 13848", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.43902858375809, + 27.84233163637665 + ] + }, + "properties": { + "id": "meter-13849", + "maker": "Maker B", + "model": "Model 13849", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.57879527769354, + 26.018079788081895 + ] + }, + "properties": { + "id": "meter-13850", + "maker": "Maker A", + "model": "Model 13850", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.536758388673526, + 22.964851903629842 + ] + }, + "properties": { + "id": "meter-13851", + "maker": "Maker D", + "model": "Model 13851", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.1830926276419, + 19.30139953977605 + ] + }, + "properties": { + "id": "meter-13852", + "maker": "Maker F", + "model": "Model 13852", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.264507676240804, + 21.769550897612095 + ] + }, + "properties": { + "id": "meter-13853", + "maker": "Maker J", + "model": "Model 13853", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.471724210812674, + 20.887329862223993 + ] + }, + "properties": { + "id": "meter-13854", + "maker": "Maker F", + "model": "Model 13854", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.84944953302631, + 19.26589412029975 + ] + }, + "properties": { + "id": "meter-13855", + "maker": "Maker E", + "model": "Model 13855", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.78679928869494, + 20.357731761344503 + ] + }, + "properties": { + "id": "meter-13856", + "maker": "Maker J", + "model": "Model 13856", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.08227650094969, + 25.18572418977747 + ] + }, + "properties": { + "id": "meter-13857", + "maker": "Maker D", + "model": "Model 13857", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.395184433094705, + 27.215884250988296 + ] + }, + "properties": { + "id": "meter-13858", + "maker": "Maker E", + "model": "Model 13858", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.433109927431325, + 22.980649175973703 + ] + }, + "properties": { + "id": "meter-13859", + "maker": "Maker G", + "model": "Model 13859", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.76873148046046, + 21.568670136607494 + ] + }, + "properties": { + "id": "meter-13860", + "maker": "Maker D", + "model": "Model 13860", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.80142150093832, + 25.64662221659176 + ] + }, + "properties": { + "id": "meter-13861", + "maker": "Maker A", + "model": "Model 13861", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.46849706325299, + 24.661756808302194 + ] + }, + "properties": { + "id": "meter-13862", + "maker": "Maker B", + "model": "Model 13862", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.06411702498496, + 22.74574539468472 + ] + }, + "properties": { + "id": "meter-13863", + "maker": "Maker D", + "model": "Model 13863", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.006770430165304, + 19.663409998206706 + ] + }, + "properties": { + "id": "meter-13864", + "maker": "Maker B", + "model": "Model 13864", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.18716835071184, + 24.760176192665973 + ] + }, + "properties": { + "id": "meter-13865", + "maker": "Maker I", + "model": "Model 13865", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.104696947684445, + 25.733396835794593 + ] + }, + "properties": { + "id": "meter-13866", + "maker": "Maker G", + "model": "Model 13866", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.117861800097515, + 20.691988233927987 + ] + }, + "properties": { + "id": "meter-13867", + "maker": "Maker B", + "model": "Model 13867", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.9627246311245, + 21.01749803945868 + ] + }, + "properties": { + "id": "meter-13868", + "maker": "Maker I", + "model": "Model 13868", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.68138946403425, + 21.21774239553095 + ] + }, + "properties": { + "id": "meter-13869", + "maker": "Maker D", + "model": "Model 13869", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.418197037116435, + 30.64422109421062 + ] + }, + "properties": { + "id": "meter-13870", + "maker": "Maker A", + "model": "Model 13870", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.71455087893115, + 28.129749833366226 + ] + }, + "properties": { + "id": "meter-13871", + "maker": "Maker D", + "model": "Model 13871", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.31095942686179, + 28.084263478647657 + ] + }, + "properties": { + "id": "meter-13872", + "maker": "Maker I", + "model": "Model 13872", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.24034218053299, + 26.25032177261967 + ] + }, + "properties": { + "id": "meter-13873", + "maker": "Maker D", + "model": "Model 13873", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.80679940757086, + 29.489569681552666 + ] + }, + "properties": { + "id": "meter-13874", + "maker": "Maker F", + "model": "Model 13874", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.88668343929386, + 25.599454934198263 + ] + }, + "properties": { + "id": "meter-13875", + "maker": "Maker A", + "model": "Model 13875", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.0553564320618, + 18.43586974418469 + ] + }, + "properties": { + "id": "meter-13876", + "maker": "Maker H", + "model": "Model 13876", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.789440280322616, + 23.180890791997996 + ] + }, + "properties": { + "id": "meter-13877", + "maker": "Maker F", + "model": "Model 13877", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.196311732576156, + 27.360120804327543 + ] + }, + "properties": { + "id": "meter-13878", + "maker": "Maker E", + "model": "Model 13878", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.7717520020462, + 18.993176212464356 + ] + }, + "properties": { + "id": "meter-13879", + "maker": "Maker H", + "model": "Model 13879", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.3272972702058, + 23.964369436879203 + ] + }, + "properties": { + "id": "meter-13880", + "maker": "Maker D", + "model": "Model 13880", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.15147339565747, + 24.382914906998543 + ] + }, + "properties": { + "id": "meter-13881", + "maker": "Maker A", + "model": "Model 13881", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.68320165148534, + 22.152762809473877 + ] + }, + "properties": { + "id": "meter-13882", + "maker": "Maker I", + "model": "Model 13882", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.62126513471192, + 26.347404363713395 + ] + }, + "properties": { + "id": "meter-13883", + "maker": "Maker D", + "model": "Model 13883", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.79609527517583, + 21.599058028089704 + ] + }, + "properties": { + "id": "meter-13884", + "maker": "Maker A", + "model": "Model 13884", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.800169260626106, + 28.269404502558025 + ] + }, + "properties": { + "id": "meter-13885", + "maker": "Maker E", + "model": "Model 13885", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.725719218503166, + 23.780197564254287 + ] + }, + "properties": { + "id": "meter-13886", + "maker": "Maker E", + "model": "Model 13886", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02856584817483, + 18.89183434491142 + ] + }, + "properties": { + "id": "meter-13887", + "maker": "Maker G", + "model": "Model 13887", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.3063335614898, + 25.210831749705566 + ] + }, + "properties": { + "id": "meter-13888", + "maker": "Maker D", + "model": "Model 13888", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.349413001776824, + 28.401921416284843 + ] + }, + "properties": { + "id": "meter-13889", + "maker": "Maker H", + "model": "Model 13889", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.996020328676025, + 27.545211909822385 + ] + }, + "properties": { + "id": "meter-13890", + "maker": "Maker J", + "model": "Model 13890", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.264605060383985, + 30.7578121842202 + ] + }, + "properties": { + "id": "meter-13891", + "maker": "Maker D", + "model": "Model 13891", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.92225208709076, + 23.58195770984284 + ] + }, + "properties": { + "id": "meter-13892", + "maker": "Maker B", + "model": "Model 13892", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.60843461636898, + 20.006668542354657 + ] + }, + "properties": { + "id": "meter-13893", + "maker": "Maker G", + "model": "Model 13893", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.63493591899194, + 18.265147417070565 + ] + }, + "properties": { + "id": "meter-13894", + "maker": "Maker A", + "model": "Model 13894", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.56268358884403, + 22.110027979900053 + ] + }, + "properties": { + "id": "meter-13895", + "maker": "Maker C", + "model": "Model 13895", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25802815794508, + 23.899787056754768 + ] + }, + "properties": { + "id": "meter-13896", + "maker": "Maker A", + "model": "Model 13896", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.77436329157092, + 19.23617844292695 + ] + }, + "properties": { + "id": "meter-13897", + "maker": "Maker D", + "model": "Model 13897", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.83360193814059, + 18.7006691487459 + ] + }, + "properties": { + "id": "meter-13898", + "maker": "Maker J", + "model": "Model 13898", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.131986582109604, + 26.18908543627868 + ] + }, + "properties": { + "id": "meter-13899", + "maker": "Maker C", + "model": "Model 13899", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.31118079515625, + 27.563109396597856 + ] + }, + "properties": { + "id": "meter-13900", + "maker": "Maker H", + "model": "Model 13900", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.54558214962426, + 19.173782479543394 + ] + }, + "properties": { + "id": "meter-13901", + "maker": "Maker J", + "model": "Model 13901", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.73642576695288, + 29.485275423472746 + ] + }, + "properties": { + "id": "meter-13902", + "maker": "Maker G", + "model": "Model 13902", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.17812524114799, + 31.539039965161642 + ] + }, + "properties": { + "id": "meter-13903", + "maker": "Maker I", + "model": "Model 13903", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.67510201061352, + 20.956232825551506 + ] + }, + "properties": { + "id": "meter-13904", + "maker": "Maker J", + "model": "Model 13904", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.88327940704309, + 21.858301334508127 + ] + }, + "properties": { + "id": "meter-13905", + "maker": "Maker G", + "model": "Model 13905", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.43218486653121, + 28.98053059283243 + ] + }, + "properties": { + "id": "meter-13906", + "maker": "Maker G", + "model": "Model 13906", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.422230938813556, + 27.66513427830284 + ] + }, + "properties": { + "id": "meter-13907", + "maker": "Maker C", + "model": "Model 13907", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.61655485091701, + 24.799722369848276 + ] + }, + "properties": { + "id": "meter-13908", + "maker": "Maker J", + "model": "Model 13908", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.763223243042816, + 22.064722734568775 + ] + }, + "properties": { + "id": "meter-13909", + "maker": "Maker D", + "model": "Model 13909", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.01776919523904, + 29.993472716536914 + ] + }, + "properties": { + "id": "meter-13910", + "maker": "Maker B", + "model": "Model 13910", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.76498171544398, + 21.77277169194218 + ] + }, + "properties": { + "id": "meter-13911", + "maker": "Maker B", + "model": "Model 13911", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.044364848622784, + 31.80706657818947 + ] + }, + "properties": { + "id": "meter-13912", + "maker": "Maker H", + "model": "Model 13912", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.848150541326376, + 25.017298474522477 + ] + }, + "properties": { + "id": "meter-13913", + "maker": "Maker B", + "model": "Model 13913", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.46492233245273, + 20.94706591022725 + ] + }, + "properties": { + "id": "meter-13914", + "maker": "Maker B", + "model": "Model 13914", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.06795016520162, + 27.449803308511076 + ] + }, + "properties": { + "id": "meter-13915", + "maker": "Maker F", + "model": "Model 13915", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84070027466651, + 29.28275845313211 + ] + }, + "properties": { + "id": "meter-13916", + "maker": "Maker A", + "model": "Model 13916", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.00433253479068, + 19.4015578820314 + ] + }, + "properties": { + "id": "meter-13917", + "maker": "Maker E", + "model": "Model 13917", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.45713775049253, + 20.71134157307872 + ] + }, + "properties": { + "id": "meter-13918", + "maker": "Maker I", + "model": "Model 13918", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.538736195556034, + 23.51376447108583 + ] + }, + "properties": { + "id": "meter-13919", + "maker": "Maker I", + "model": "Model 13919", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.228396523624994, + 30.522282098328162 + ] + }, + "properties": { + "id": "meter-13920", + "maker": "Maker I", + "model": "Model 13920", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.658411658442986, + 19.967290159188146 + ] + }, + "properties": { + "id": "meter-13921", + "maker": "Maker E", + "model": "Model 13921", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.22439443761277, + 26.95040836957 + ] + }, + "properties": { + "id": "meter-13922", + "maker": "Maker H", + "model": "Model 13922", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.453576744489936, + 29.619060589312028 + ] + }, + "properties": { + "id": "meter-13923", + "maker": "Maker F", + "model": "Model 13923", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.752857763355706, + 22.326674751831305 + ] + }, + "properties": { + "id": "meter-13924", + "maker": "Maker B", + "model": "Model 13924", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.04764134446555, + 31.07436651037178 + ] + }, + "properties": { + "id": "meter-13925", + "maker": "Maker D", + "model": "Model 13925", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.50126732616922, + 24.58286713859271 + ] + }, + "properties": { + "id": "meter-13926", + "maker": "Maker I", + "model": "Model 13926", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.72236558839386, + 25.378538808795085 + ] + }, + "properties": { + "id": "meter-13927", + "maker": "Maker I", + "model": "Model 13927", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.7280236742044, + 21.149602872087737 + ] + }, + "properties": { + "id": "meter-13928", + "maker": "Maker C", + "model": "Model 13928", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.99439254608272, + 22.27975755378076 + ] + }, + "properties": { + "id": "meter-13929", + "maker": "Maker D", + "model": "Model 13929", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.56778981885557, + 20.66122594527785 + ] + }, + "properties": { + "id": "meter-13930", + "maker": "Maker I", + "model": "Model 13930", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.88660799442769, + 27.233623489556344 + ] + }, + "properties": { + "id": "meter-13931", + "maker": "Maker J", + "model": "Model 13931", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.132096434339246, + 25.071175968238297 + ] + }, + "properties": { + "id": "meter-13932", + "maker": "Maker J", + "model": "Model 13932", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.25029203150828, + 19.81668486185426 + ] + }, + "properties": { + "id": "meter-13933", + "maker": "Maker J", + "model": "Model 13933", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.13040937629192, + 18.167713482452793 + ] + }, + "properties": { + "id": "meter-13934", + "maker": "Maker D", + "model": "Model 13934", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.54008884189738, + 20.673565960760207 + ] + }, + "properties": { + "id": "meter-13935", + "maker": "Maker B", + "model": "Model 13935", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.45748424469711, + 20.877237017186395 + ] + }, + "properties": { + "id": "meter-13936", + "maker": "Maker B", + "model": "Model 13936", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.38851673758634, + 28.63768520905451 + ] + }, + "properties": { + "id": "meter-13937", + "maker": "Maker I", + "model": "Model 13937", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70397510521089, + 19.46744724202043 + ] + }, + "properties": { + "id": "meter-13938", + "maker": "Maker E", + "model": "Model 13938", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.55384207267345, + 25.71329685308083 + ] + }, + "properties": { + "id": "meter-13939", + "maker": "Maker A", + "model": "Model 13939", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.67840508797355, + 28.93460200811908 + ] + }, + "properties": { + "id": "meter-13940", + "maker": "Maker F", + "model": "Model 13940", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.07778379744844, + 24.516467746191047 + ] + }, + "properties": { + "id": "meter-13941", + "maker": "Maker C", + "model": "Model 13941", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.785091944050755, + 24.539176305381634 + ] + }, + "properties": { + "id": "meter-13942", + "maker": "Maker G", + "model": "Model 13942", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.51993833282916, + 22.156978139378346 + ] + }, + "properties": { + "id": "meter-13943", + "maker": "Maker I", + "model": "Model 13943", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.27726866990909, + 21.84567645409352 + ] + }, + "properties": { + "id": "meter-13944", + "maker": "Maker J", + "model": "Model 13944", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.30149443622577, + 26.667368780936503 + ] + }, + "properties": { + "id": "meter-13945", + "maker": "Maker J", + "model": "Model 13945", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.830737616127955, + 21.741177375163716 + ] + }, + "properties": { + "id": "meter-13946", + "maker": "Maker H", + "model": "Model 13946", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.31772754401633, + 20.303874234292586 + ] + }, + "properties": { + "id": "meter-13947", + "maker": "Maker F", + "model": "Model 13947", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.3473461499534, + 18.906741017806304 + ] + }, + "properties": { + "id": "meter-13948", + "maker": "Maker A", + "model": "Model 13948", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.96205766069101, + 20.095231111627882 + ] + }, + "properties": { + "id": "meter-13949", + "maker": "Maker J", + "model": "Model 13949", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.10199685932748, + 22.2192792564015 + ] + }, + "properties": { + "id": "meter-13950", + "maker": "Maker F", + "model": "Model 13950", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.22639458726713, + 18.579111025097795 + ] + }, + "properties": { + "id": "meter-13951", + "maker": "Maker D", + "model": "Model 13951", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.39133959319434, + 19.85551005804988 + ] + }, + "properties": { + "id": "meter-13952", + "maker": "Maker D", + "model": "Model 13952", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.01583340515222, + 18.794589476554904 + ] + }, + "properties": { + "id": "meter-13953", + "maker": "Maker F", + "model": "Model 13953", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9827286485295, + 28.23291437073366 + ] + }, + "properties": { + "id": "meter-13954", + "maker": "Maker A", + "model": "Model 13954", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.04918122162798, + 23.32835183306873 + ] + }, + "properties": { + "id": "meter-13955", + "maker": "Maker J", + "model": "Model 13955", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.43201546399176, + 27.631240241183278 + ] + }, + "properties": { + "id": "meter-13956", + "maker": "Maker J", + "model": "Model 13956", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.825499454491, + 26.047010567180486 + ] + }, + "properties": { + "id": "meter-13957", + "maker": "Maker E", + "model": "Model 13957", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.880837203378064, + 23.040581923761746 + ] + }, + "properties": { + "id": "meter-13958", + "maker": "Maker I", + "model": "Model 13958", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.710987182271445, + 19.793812822394884 + ] + }, + "properties": { + "id": "meter-13959", + "maker": "Maker I", + "model": "Model 13959", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.75513634187145, + 22.552054252901527 + ] + }, + "properties": { + "id": "meter-13960", + "maker": "Maker G", + "model": "Model 13960", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.35346044834173, + 26.89439921110668 + ] + }, + "properties": { + "id": "meter-13961", + "maker": "Maker A", + "model": "Model 13961", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.53023507642678, + 23.345390641538152 + ] + }, + "properties": { + "id": "meter-13962", + "maker": "Maker F", + "model": "Model 13962", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.382627205150335, + 23.82146607750428 + ] + }, + "properties": { + "id": "meter-13963", + "maker": "Maker C", + "model": "Model 13963", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.715482653656295, + 25.132267205584476 + ] + }, + "properties": { + "id": "meter-13964", + "maker": "Maker E", + "model": "Model 13964", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.883471160503476, + 25.42128585742988 + ] + }, + "properties": { + "id": "meter-13965", + "maker": "Maker D", + "model": "Model 13965", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.77322040145265, + 27.576481623476226 + ] + }, + "properties": { + "id": "meter-13966", + "maker": "Maker B", + "model": "Model 13966", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.07827813904521, + 27.49086345127496 + ] + }, + "properties": { + "id": "meter-13967", + "maker": "Maker B", + "model": "Model 13967", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.467690776168624, + 22.382654158927735 + ] + }, + "properties": { + "id": "meter-13968", + "maker": "Maker B", + "model": "Model 13968", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05848188110017, + 19.011715317264944 + ] + }, + "properties": { + "id": "meter-13969", + "maker": "Maker H", + "model": "Model 13969", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.56290000204312, + 21.00745436989008 + ] + }, + "properties": { + "id": "meter-13970", + "maker": "Maker H", + "model": "Model 13970", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.054865608793115, + 30.919498460123403 + ] + }, + "properties": { + "id": "meter-13971", + "maker": "Maker I", + "model": "Model 13971", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.05741985199548, + 27.226769459819426 + ] + }, + "properties": { + "id": "meter-13972", + "maker": "Maker B", + "model": "Model 13972", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.599548341024025, + 27.25372714124962 + ] + }, + "properties": { + "id": "meter-13973", + "maker": "Maker I", + "model": "Model 13973", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.422524542123334, + 28.53645872836433 + ] + }, + "properties": { + "id": "meter-13974", + "maker": "Maker J", + "model": "Model 13974", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.84851416073772, + 20.53797085348989 + ] + }, + "properties": { + "id": "meter-13975", + "maker": "Maker B", + "model": "Model 13975", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.994816930586914, + 23.906084810017987 + ] + }, + "properties": { + "id": "meter-13976", + "maker": "Maker D", + "model": "Model 13976", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.41680456757912, + 27.69034289828602 + ] + }, + "properties": { + "id": "meter-13977", + "maker": "Maker J", + "model": "Model 13977", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.65788741188128, + 24.6013642438141 + ] + }, + "properties": { + "id": "meter-13978", + "maker": "Maker J", + "model": "Model 13978", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.18948796088662, + 27.562552208977397 + ] + }, + "properties": { + "id": "meter-13979", + "maker": "Maker C", + "model": "Model 13979", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.88341190583024, + 28.67470589242587 + ] + }, + "properties": { + "id": "meter-13980", + "maker": "Maker F", + "model": "Model 13980", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.885093193884686, + 24.882265061884564 + ] + }, + "properties": { + "id": "meter-13981", + "maker": "Maker A", + "model": "Model 13981", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.86333176867405, + 23.56846715439633 + ] + }, + "properties": { + "id": "meter-13982", + "maker": "Maker I", + "model": "Model 13982", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.22953493891975, + 23.286334160494828 + ] + }, + "properties": { + "id": "meter-13983", + "maker": "Maker F", + "model": "Model 13983", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.370300907328314, + 26.63463830201566 + ] + }, + "properties": { + "id": "meter-13984", + "maker": "Maker A", + "model": "Model 13984", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.40773165494705, + 28.69763082841525 + ] + }, + "properties": { + "id": "meter-13985", + "maker": "Maker I", + "model": "Model 13985", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.5479746313655, + 25.331633409049996 + ] + }, + "properties": { + "id": "meter-13986", + "maker": "Maker I", + "model": "Model 13986", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.45145059432113, + 18.393141608326335 + ] + }, + "properties": { + "id": "meter-13987", + "maker": "Maker B", + "model": "Model 13987", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.44696498281857, + 21.846116601548758 + ] + }, + "properties": { + "id": "meter-13988", + "maker": "Maker F", + "model": "Model 13988", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.935449364410346, + 20.20861038209494 + ] + }, + "properties": { + "id": "meter-13989", + "maker": "Maker I", + "model": "Model 13989", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.382663757863845, + 25.723157569983634 + ] + }, + "properties": { + "id": "meter-13990", + "maker": "Maker H", + "model": "Model 13990", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.192020768981706, + 22.673589158173407 + ] + }, + "properties": { + "id": "meter-13991", + "maker": "Maker A", + "model": "Model 13991", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.578838039712934, + 24.220038237934524 + ] + }, + "properties": { + "id": "meter-13992", + "maker": "Maker H", + "model": "Model 13992", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26799257810205, + 30.02498307201313 + ] + }, + "properties": { + "id": "meter-13993", + "maker": "Maker D", + "model": "Model 13993", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.35546324759608, + 27.702741624699584 + ] + }, + "properties": { + "id": "meter-13994", + "maker": "Maker I", + "model": "Model 13994", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.50900197470881, + 20.505699972773776 + ] + }, + "properties": { + "id": "meter-13995", + "maker": "Maker C", + "model": "Model 13995", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.65170315237825, + 27.891494193063497 + ] + }, + "properties": { + "id": "meter-13996", + "maker": "Maker G", + "model": "Model 13996", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.13998480694648, + 26.352529621984296 + ] + }, + "properties": { + "id": "meter-13997", + "maker": "Maker D", + "model": "Model 13997", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.326495220264356, + 25.113416661829675 + ] + }, + "properties": { + "id": "meter-13998", + "maker": "Maker B", + "model": "Model 13998", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.02215357739146, + 22.77344715800411 + ] + }, + "properties": { + "id": "meter-13999", + "maker": "Maker D", + "model": "Model 13999", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.37347740349475, + 26.688992551927786 + ] + }, + "properties": { + "id": "meter-14000", + "maker": "Maker E", + "model": "Model 14000", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.005364417907835, + 19.14431171871503 + ] + }, + "properties": { + "id": "meter-14001", + "maker": "Maker I", + "model": "Model 14001", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.228921606226486, + 27.452639986359955 + ] + }, + "properties": { + "id": "meter-14002", + "maker": "Maker F", + "model": "Model 14002", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.00518047381786, + 21.646934769754324 + ] + }, + "properties": { + "id": "meter-14003", + "maker": "Maker D", + "model": "Model 14003", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.45410326274326, + 19.099059773671556 + ] + }, + "properties": { + "id": "meter-14004", + "maker": "Maker B", + "model": "Model 14004", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50687462041708, + 24.675044544863695 + ] + }, + "properties": { + "id": "meter-14005", + "maker": "Maker B", + "model": "Model 14005", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.80464615770705, + 17.282015411793317 + ] + }, + "properties": { + "id": "meter-14006", + "maker": "Maker C", + "model": "Model 14006", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.986013010489266, + 20.187292737626123 + ] + }, + "properties": { + "id": "meter-14007", + "maker": "Maker J", + "model": "Model 14007", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.60296129716426, + 23.024871395338852 + ] + }, + "properties": { + "id": "meter-14008", + "maker": "Maker D", + "model": "Model 14008", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.41569115608773, + 21.290150638915478 + ] + }, + "properties": { + "id": "meter-14009", + "maker": "Maker I", + "model": "Model 14009", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.77664760263814, + 25.63669520818818 + ] + }, + "properties": { + "id": "meter-14010", + "maker": "Maker F", + "model": "Model 14010", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.80675328098915, + 24.89833850589903 + ] + }, + "properties": { + "id": "meter-14011", + "maker": "Maker F", + "model": "Model 14011", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.31209093686741, + 22.126805647422692 + ] + }, + "properties": { + "id": "meter-14012", + "maker": "Maker F", + "model": "Model 14012", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.458490566737645, + 28.033417443648162 + ] + }, + "properties": { + "id": "meter-14013", + "maker": "Maker E", + "model": "Model 14013", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03567151493617, + 20.95538461487605 + ] + }, + "properties": { + "id": "meter-14014", + "maker": "Maker B", + "model": "Model 14014", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.944237580863245, + 26.612430790267904 + ] + }, + "properties": { + "id": "meter-14015", + "maker": "Maker C", + "model": "Model 14015", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.5222772679164, + 26.22094220473538 + ] + }, + "properties": { + "id": "meter-14016", + "maker": "Maker A", + "model": "Model 14016", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.69156953950631, + 30.505779831512072 + ] + }, + "properties": { + "id": "meter-14017", + "maker": "Maker H", + "model": "Model 14017", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03458764976098, + 25.908616482371706 + ] + }, + "properties": { + "id": "meter-14018", + "maker": "Maker A", + "model": "Model 14018", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.122237986830335, + 22.133615848229834 + ] + }, + "properties": { + "id": "meter-14019", + "maker": "Maker H", + "model": "Model 14019", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.83308329130229, + 20.91020798177965 + ] + }, + "properties": { + "id": "meter-14020", + "maker": "Maker I", + "model": "Model 14020", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.57204888160297, + 23.9316040115738 + ] + }, + "properties": { + "id": "meter-14021", + "maker": "Maker G", + "model": "Model 14021", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.320148943805634, + 21.518692595269883 + ] + }, + "properties": { + "id": "meter-14022", + "maker": "Maker G", + "model": "Model 14022", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.154791791602364, + 26.616598105898767 + ] + }, + "properties": { + "id": "meter-14023", + "maker": "Maker J", + "model": "Model 14023", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.614140923775324, + 27.973282461248616 + ] + }, + "properties": { + "id": "meter-14024", + "maker": "Maker E", + "model": "Model 14024", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.81215320652407, + 28.72354003603259 + ] + }, + "properties": { + "id": "meter-14025", + "maker": "Maker B", + "model": "Model 14025", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.8142418389697, + 24.903740785354827 + ] + }, + "properties": { + "id": "meter-14026", + "maker": "Maker F", + "model": "Model 14026", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.43730280993533, + 17.645411079783358 + ] + }, + "properties": { + "id": "meter-14027", + "maker": "Maker H", + "model": "Model 14027", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.083081213303544, + 25.57798117063367 + ] + }, + "properties": { + "id": "meter-14028", + "maker": "Maker G", + "model": "Model 14028", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.1484561985532, + 20.883145836771675 + ] + }, + "properties": { + "id": "meter-14029", + "maker": "Maker C", + "model": "Model 14029", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.339353807534295, + 23.71547694598271 + ] + }, + "properties": { + "id": "meter-14030", + "maker": "Maker A", + "model": "Model 14030", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.17407503827356, + 28.35993886851623 + ] + }, + "properties": { + "id": "meter-14031", + "maker": "Maker D", + "model": "Model 14031", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.07939238952051, + 17.357956547140404 + ] + }, + "properties": { + "id": "meter-14032", + "maker": "Maker C", + "model": "Model 14032", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.53403104628923, + 27.110489987774884 + ] + }, + "properties": { + "id": "meter-14033", + "maker": "Maker F", + "model": "Model 14033", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.8210936418194, + 19.338416206641526 + ] + }, + "properties": { + "id": "meter-14034", + "maker": "Maker E", + "model": "Model 14034", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.515189833913354, + 24.272522377464433 + ] + }, + "properties": { + "id": "meter-14035", + "maker": "Maker D", + "model": "Model 14035", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.434299031846145, + 28.023478343086637 + ] + }, + "properties": { + "id": "meter-14036", + "maker": "Maker C", + "model": "Model 14036", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.36018479491264, + 24.92712297030245 + ] + }, + "properties": { + "id": "meter-14037", + "maker": "Maker C", + "model": "Model 14037", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.95142510121407, + 25.510139666144592 + ] + }, + "properties": { + "id": "meter-14038", + "maker": "Maker F", + "model": "Model 14038", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.22834575381468, + 17.944212543392247 + ] + }, + "properties": { + "id": "meter-14039", + "maker": "Maker H", + "model": "Model 14039", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.95565556846348, + 24.81929767800219 + ] + }, + "properties": { + "id": "meter-14040", + "maker": "Maker H", + "model": "Model 14040", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.62957687829561, + 22.212925899528358 + ] + }, + "properties": { + "id": "meter-14041", + "maker": "Maker A", + "model": "Model 14041", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.603352772075105, + 20.833908099979013 + ] + }, + "properties": { + "id": "meter-14042", + "maker": "Maker C", + "model": "Model 14042", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.78850372748714, + 21.33929612236087 + ] + }, + "properties": { + "id": "meter-14043", + "maker": "Maker B", + "model": "Model 14043", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.2038886205191, + 30.608384947274754 + ] + }, + "properties": { + "id": "meter-14044", + "maker": "Maker F", + "model": "Model 14044", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.33790517145981, + 28.474641812036307 + ] + }, + "properties": { + "id": "meter-14045", + "maker": "Maker G", + "model": "Model 14045", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.93613448086589, + 25.76044370936067 + ] + }, + "properties": { + "id": "meter-14046", + "maker": "Maker H", + "model": "Model 14046", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.54806198261316, + 24.200613986523983 + ] + }, + "properties": { + "id": "meter-14047", + "maker": "Maker G", + "model": "Model 14047", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.15676305592401, + 21.048239189665775 + ] + }, + "properties": { + "id": "meter-14048", + "maker": "Maker H", + "model": "Model 14048", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.725527478562235, + 31.654734214525014 + ] + }, + "properties": { + "id": "meter-14049", + "maker": "Maker G", + "model": "Model 14049", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.48646260851511, + 23.583241208536112 + ] + }, + "properties": { + "id": "meter-14050", + "maker": "Maker B", + "model": "Model 14050", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.14378066418952, + 18.812169356179616 + ] + }, + "properties": { + "id": "meter-14051", + "maker": "Maker E", + "model": "Model 14051", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.06758231092261, + 31.489538228527152 + ] + }, + "properties": { + "id": "meter-14052", + "maker": "Maker G", + "model": "Model 14052", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.37454980809367, + 21.198928511912285 + ] + }, + "properties": { + "id": "meter-14053", + "maker": "Maker J", + "model": "Model 14053", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.850644190152515, + 29.633091899214257 + ] + }, + "properties": { + "id": "meter-14054", + "maker": "Maker I", + "model": "Model 14054", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.351764139720814, + 19.786111881907072 + ] + }, + "properties": { + "id": "meter-14055", + "maker": "Maker E", + "model": "Model 14055", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.50394677434246, + 26.593544012627895 + ] + }, + "properties": { + "id": "meter-14056", + "maker": "Maker A", + "model": "Model 14056", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.204511065335446, + 22.028872015048133 + ] + }, + "properties": { + "id": "meter-14057", + "maker": "Maker J", + "model": "Model 14057", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.433983145561115, + 20.617145834491275 + ] + }, + "properties": { + "id": "meter-14058", + "maker": "Maker J", + "model": "Model 14058", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.47856269829175, + 20.32883533194272 + ] + }, + "properties": { + "id": "meter-14059", + "maker": "Maker J", + "model": "Model 14059", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.36254390801071, + 25.328577896098658 + ] + }, + "properties": { + "id": "meter-14060", + "maker": "Maker E", + "model": "Model 14060", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.99465940807806, + 19.117453901373274 + ] + }, + "properties": { + "id": "meter-14061", + "maker": "Maker D", + "model": "Model 14061", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.58015706387078, + 29.94817450987636 + ] + }, + "properties": { + "id": "meter-14062", + "maker": "Maker A", + "model": "Model 14062", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.48740202033648, + 28.67062995644416 + ] + }, + "properties": { + "id": "meter-14063", + "maker": "Maker G", + "model": "Model 14063", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.844175742383236, + 27.99182730002986 + ] + }, + "properties": { + "id": "meter-14064", + "maker": "Maker J", + "model": "Model 14064", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.966740903697364, + 19.105361265493784 + ] + }, + "properties": { + "id": "meter-14065", + "maker": "Maker C", + "model": "Model 14065", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.10284468648838, + 19.507766524428902 + ] + }, + "properties": { + "id": "meter-14066", + "maker": "Maker E", + "model": "Model 14066", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.360011135203145, + 24.23072097378676 + ] + }, + "properties": { + "id": "meter-14067", + "maker": "Maker C", + "model": "Model 14067", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.60071878473068, + 30.021816955226786 + ] + }, + "properties": { + "id": "meter-14068", + "maker": "Maker H", + "model": "Model 14068", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.3384384078162, + 19.457806965369002 + ] + }, + "properties": { + "id": "meter-14069", + "maker": "Maker C", + "model": "Model 14069", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.01504718610923, + 24.279114891867266 + ] + }, + "properties": { + "id": "meter-14070", + "maker": "Maker I", + "model": "Model 14070", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.435138526639896, + 28.886250758951682 + ] + }, + "properties": { + "id": "meter-14071", + "maker": "Maker C", + "model": "Model 14071", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.43046626012379, + 27.061377079386308 + ] + }, + "properties": { + "id": "meter-14072", + "maker": "Maker H", + "model": "Model 14072", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.19734242793831, + 21.51337559247925 + ] + }, + "properties": { + "id": "meter-14073", + "maker": "Maker B", + "model": "Model 14073", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.9070980427591, + 19.949593872499634 + ] + }, + "properties": { + "id": "meter-14074", + "maker": "Maker F", + "model": "Model 14074", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.13671227701671, + 30.882502990347504 + ] + }, + "properties": { + "id": "meter-14075", + "maker": "Maker F", + "model": "Model 14075", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.22319595820097, + 21.84606174583499 + ] + }, + "properties": { + "id": "meter-14076", + "maker": "Maker C", + "model": "Model 14076", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57919705598755, + 18.698998596836432 + ] + }, + "properties": { + "id": "meter-14077", + "maker": "Maker I", + "model": "Model 14077", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.045769637746936, + 23.815539361905287 + ] + }, + "properties": { + "id": "meter-14078", + "maker": "Maker D", + "model": "Model 14078", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.858133093298115, + 26.962646734728978 + ] + }, + "properties": { + "id": "meter-14079", + "maker": "Maker C", + "model": "Model 14079", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.45709915045041, + 29.702389334976637 + ] + }, + "properties": { + "id": "meter-14080", + "maker": "Maker G", + "model": "Model 14080", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.21364990781894, + 29.476202872041526 + ] + }, + "properties": { + "id": "meter-14081", + "maker": "Maker E", + "model": "Model 14081", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1453333145307, + 23.5196234051989 + ] + }, + "properties": { + "id": "meter-14082", + "maker": "Maker D", + "model": "Model 14082", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.57602642169048, + 20.618010291580504 + ] + }, + "properties": { + "id": "meter-14083", + "maker": "Maker J", + "model": "Model 14083", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.17107945481608, + 22.183401272058724 + ] + }, + "properties": { + "id": "meter-14084", + "maker": "Maker D", + "model": "Model 14084", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.52132032445565, + 29.150928706347614 + ] + }, + "properties": { + "id": "meter-14085", + "maker": "Maker F", + "model": "Model 14085", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.89017450735143, + 25.680072155968766 + ] + }, + "properties": { + "id": "meter-14086", + "maker": "Maker B", + "model": "Model 14086", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.92500735535881, + 29.04331075083821 + ] + }, + "properties": { + "id": "meter-14087", + "maker": "Maker E", + "model": "Model 14087", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.69948351121896, + 19.314829979812025 + ] + }, + "properties": { + "id": "meter-14088", + "maker": "Maker B", + "model": "Model 14088", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.43068306179859, + 25.88063088717794 + ] + }, + "properties": { + "id": "meter-14089", + "maker": "Maker E", + "model": "Model 14089", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.0803546904616, + 29.686168827989167 + ] + }, + "properties": { + "id": "meter-14090", + "maker": "Maker C", + "model": "Model 14090", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.54342205602671, + 23.085791149070754 + ] + }, + "properties": { + "id": "meter-14091", + "maker": "Maker B", + "model": "Model 14091", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.89640393283976, + 22.733276070081565 + ] + }, + "properties": { + "id": "meter-14092", + "maker": "Maker G", + "model": "Model 14092", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.68891731549764, + 28.58183291614448 + ] + }, + "properties": { + "id": "meter-14093", + "maker": "Maker E", + "model": "Model 14093", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.833826134080425, + 20.989325057406987 + ] + }, + "properties": { + "id": "meter-14094", + "maker": "Maker C", + "model": "Model 14094", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.24314759311765, + 28.362509386813635 + ] + }, + "properties": { + "id": "meter-14095", + "maker": "Maker F", + "model": "Model 14095", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.39659295600184, + 19.73562989565154 + ] + }, + "properties": { + "id": "meter-14096", + "maker": "Maker H", + "model": "Model 14096", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.85953123146862, + 21.315363604403327 + ] + }, + "properties": { + "id": "meter-14097", + "maker": "Maker I", + "model": "Model 14097", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.107358614760216, + 17.468658189083875 + ] + }, + "properties": { + "id": "meter-14098", + "maker": "Maker C", + "model": "Model 14098", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.89199697365522, + 31.500958081772975 + ] + }, + "properties": { + "id": "meter-14099", + "maker": "Maker F", + "model": "Model 14099", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.79132952585966, + 25.810604355941624 + ] + }, + "properties": { + "id": "meter-14100", + "maker": "Maker F", + "model": "Model 14100", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.64464681576194, + 19.894071609694137 + ] + }, + "properties": { + "id": "meter-14101", + "maker": "Maker I", + "model": "Model 14101", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.886569090410795, + 20.420093307402915 + ] + }, + "properties": { + "id": "meter-14102", + "maker": "Maker F", + "model": "Model 14102", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.66828469626547, + 22.77886214095595 + ] + }, + "properties": { + "id": "meter-14103", + "maker": "Maker F", + "model": "Model 14103", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.24030161835621, + 23.594296139113755 + ] + }, + "properties": { + "id": "meter-14104", + "maker": "Maker H", + "model": "Model 14104", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.37581208312839, + 26.904473447854414 + ] + }, + "properties": { + "id": "meter-14105", + "maker": "Maker E", + "model": "Model 14105", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.08527227226416, + 31.87148236550418 + ] + }, + "properties": { + "id": "meter-14106", + "maker": "Maker E", + "model": "Model 14106", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.95850009285607, + 27.470575734521006 + ] + }, + "properties": { + "id": "meter-14107", + "maker": "Maker B", + "model": "Model 14107", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.584069542049434, + 19.02735974277939 + ] + }, + "properties": { + "id": "meter-14108", + "maker": "Maker I", + "model": "Model 14108", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00342056148612, + 28.441506664842713 + ] + }, + "properties": { + "id": "meter-14109", + "maker": "Maker J", + "model": "Model 14109", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.94908355158513, + 30.405345556409223 + ] + }, + "properties": { + "id": "meter-14110", + "maker": "Maker H", + "model": "Model 14110", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.83066728648744, + 31.089604647471177 + ] + }, + "properties": { + "id": "meter-14111", + "maker": "Maker E", + "model": "Model 14111", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.80164817711814, + 21.00485577123861 + ] + }, + "properties": { + "id": "meter-14112", + "maker": "Maker E", + "model": "Model 14112", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.2091617717057, + 27.873683161782118 + ] + }, + "properties": { + "id": "meter-14113", + "maker": "Maker B", + "model": "Model 14113", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.67676289566308, + 25.822246638014967 + ] + }, + "properties": { + "id": "meter-14114", + "maker": "Maker A", + "model": "Model 14114", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.380971531790486, + 29.145492550217135 + ] + }, + "properties": { + "id": "meter-14115", + "maker": "Maker A", + "model": "Model 14115", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.510524002254094, + 26.555226744417475 + ] + }, + "properties": { + "id": "meter-14116", + "maker": "Maker B", + "model": "Model 14116", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.48468143320531, + 28.771825158965953 + ] + }, + "properties": { + "id": "meter-14117", + "maker": "Maker H", + "model": "Model 14117", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.73690672005056, + 21.486332548206775 + ] + }, + "properties": { + "id": "meter-14118", + "maker": "Maker A", + "model": "Model 14118", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.77644683913014, + 31.215830010483423 + ] + }, + "properties": { + "id": "meter-14119", + "maker": "Maker I", + "model": "Model 14119", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.69735404593668, + 27.854290554244116 + ] + }, + "properties": { + "id": "meter-14120", + "maker": "Maker C", + "model": "Model 14120", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.93834948465205, + 19.238204121368412 + ] + }, + "properties": { + "id": "meter-14121", + "maker": "Maker C", + "model": "Model 14121", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.08138564212165, + 22.17317317298759 + ] + }, + "properties": { + "id": "meter-14122", + "maker": "Maker G", + "model": "Model 14122", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.34380515659379, + 19.5760195759881 + ] + }, + "properties": { + "id": "meter-14123", + "maker": "Maker I", + "model": "Model 14123", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23364131689645, + 25.037979361022295 + ] + }, + "properties": { + "id": "meter-14124", + "maker": "Maker C", + "model": "Model 14124", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.678202644381194, + 27.977075374646045 + ] + }, + "properties": { + "id": "meter-14125", + "maker": "Maker E", + "model": "Model 14125", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.663547483939396, + 28.92439439211259 + ] + }, + "properties": { + "id": "meter-14126", + "maker": "Maker D", + "model": "Model 14126", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.06059722561375, + 21.626498811471187 + ] + }, + "properties": { + "id": "meter-14127", + "maker": "Maker H", + "model": "Model 14127", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.41074926257649, + 20.461465805289986 + ] + }, + "properties": { + "id": "meter-14128", + "maker": "Maker D", + "model": "Model 14128", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1428963303712, + 27.954864960626004 + ] + }, + "properties": { + "id": "meter-14129", + "maker": "Maker E", + "model": "Model 14129", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.44794216256192, + 23.273512294892228 + ] + }, + "properties": { + "id": "meter-14130", + "maker": "Maker B", + "model": "Model 14130", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.41379243735179, + 19.330086644255164 + ] + }, + "properties": { + "id": "meter-14131", + "maker": "Maker H", + "model": "Model 14131", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.85787887641111, + 25.18404449592137 + ] + }, + "properties": { + "id": "meter-14132", + "maker": "Maker B", + "model": "Model 14132", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.80516420125284, + 30.96942730553866 + ] + }, + "properties": { + "id": "meter-14133", + "maker": "Maker C", + "model": "Model 14133", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.55799619254624, + 21.145637970166707 + ] + }, + "properties": { + "id": "meter-14134", + "maker": "Maker F", + "model": "Model 14134", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.32998416968891, + 19.710787238928496 + ] + }, + "properties": { + "id": "meter-14135", + "maker": "Maker J", + "model": "Model 14135", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03444166606964, + 24.86778809195581 + ] + }, + "properties": { + "id": "meter-14136", + "maker": "Maker C", + "model": "Model 14136", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.29634830506815, + 22.81531512955827 + ] + }, + "properties": { + "id": "meter-14137", + "maker": "Maker D", + "model": "Model 14137", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.026919915223054, + 25.320349865445944 + ] + }, + "properties": { + "id": "meter-14138", + "maker": "Maker H", + "model": "Model 14138", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.056183465314405, + 22.34271155091498 + ] + }, + "properties": { + "id": "meter-14139", + "maker": "Maker D", + "model": "Model 14139", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.090958244252036, + 25.695073539387074 + ] + }, + "properties": { + "id": "meter-14140", + "maker": "Maker H", + "model": "Model 14140", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.76338544484236, + 25.16924881082186 + ] + }, + "properties": { + "id": "meter-14141", + "maker": "Maker E", + "model": "Model 14141", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.001960331903796, + 25.82683909215878 + ] + }, + "properties": { + "id": "meter-14142", + "maker": "Maker H", + "model": "Model 14142", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.83409280066524, + 24.221308585028794 + ] + }, + "properties": { + "id": "meter-14143", + "maker": "Maker A", + "model": "Model 14143", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.05409804324697, + 22.771881401489832 + ] + }, + "properties": { + "id": "meter-14144", + "maker": "Maker J", + "model": "Model 14144", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.57490697113704, + 30.26236709491009 + ] + }, + "properties": { + "id": "meter-14145", + "maker": "Maker J", + "model": "Model 14145", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.681807697855, + 22.14258845925405 + ] + }, + "properties": { + "id": "meter-14146", + "maker": "Maker H", + "model": "Model 14146", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.07024882216214, + 22.89454055524267 + ] + }, + "properties": { + "id": "meter-14147", + "maker": "Maker J", + "model": "Model 14147", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.02370449675073, + 26.105662007259205 + ] + }, + "properties": { + "id": "meter-14148", + "maker": "Maker G", + "model": "Model 14148", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54230813794092, + 24.914534260830816 + ] + }, + "properties": { + "id": "meter-14149", + "maker": "Maker F", + "model": "Model 14149", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.157761136612336, + 26.01622071781221 + ] + }, + "properties": { + "id": "meter-14150", + "maker": "Maker B", + "model": "Model 14150", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.51460800316369, + 25.4723762758953 + ] + }, + "properties": { + "id": "meter-14151", + "maker": "Maker F", + "model": "Model 14151", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.79932838652957, + 18.856560722999234 + ] + }, + "properties": { + "id": "meter-14152", + "maker": "Maker F", + "model": "Model 14152", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.78097914218548, + 22.331591440424663 + ] + }, + "properties": { + "id": "meter-14153", + "maker": "Maker I", + "model": "Model 14153", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.775570931581925, + 19.517821120420003 + ] + }, + "properties": { + "id": "meter-14154", + "maker": "Maker B", + "model": "Model 14154", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.15419623776134, + 28.301770795335244 + ] + }, + "properties": { + "id": "meter-14155", + "maker": "Maker E", + "model": "Model 14155", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.58790823738963, + 20.96038724837762 + ] + }, + "properties": { + "id": "meter-14156", + "maker": "Maker J", + "model": "Model 14156", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.92803713954399, + 24.553489019167255 + ] + }, + "properties": { + "id": "meter-14157", + "maker": "Maker C", + "model": "Model 14157", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.00891613903369, + 21.13143246855544 + ] + }, + "properties": { + "id": "meter-14158", + "maker": "Maker C", + "model": "Model 14158", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.75700539988652, + 22.011034918036202 + ] + }, + "properties": { + "id": "meter-14159", + "maker": "Maker C", + "model": "Model 14159", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.16913047188889, + 26.071705020819266 + ] + }, + "properties": { + "id": "meter-14160", + "maker": "Maker H", + "model": "Model 14160", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.126159184757014, + 19.117092315236 + ] + }, + "properties": { + "id": "meter-14161", + "maker": "Maker D", + "model": "Model 14161", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.44365620961874, + 20.021345971867255 + ] + }, + "properties": { + "id": "meter-14162", + "maker": "Maker B", + "model": "Model 14162", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.18757833841636, + 20.711697327590684 + ] + }, + "properties": { + "id": "meter-14163", + "maker": "Maker E", + "model": "Model 14163", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.28098912750063, + 27.006366282321032 + ] + }, + "properties": { + "id": "meter-14164", + "maker": "Maker F", + "model": "Model 14164", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.42681554123743, + 25.155371021011554 + ] + }, + "properties": { + "id": "meter-14165", + "maker": "Maker I", + "model": "Model 14165", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.7309466370312, + 27.194676563389006 + ] + }, + "properties": { + "id": "meter-14166", + "maker": "Maker J", + "model": "Model 14166", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.118872257934434, + 22.4914807463214 + ] + }, + "properties": { + "id": "meter-14167", + "maker": "Maker B", + "model": "Model 14167", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.60225090389257, + 24.03970278563255 + ] + }, + "properties": { + "id": "meter-14168", + "maker": "Maker H", + "model": "Model 14168", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.78268373355958, + 20.893852123404287 + ] + }, + "properties": { + "id": "meter-14169", + "maker": "Maker C", + "model": "Model 14169", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.5546655643806, + 21.812681601285096 + ] + }, + "properties": { + "id": "meter-14170", + "maker": "Maker B", + "model": "Model 14170", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60945590475485, + 30.463469711581514 + ] + }, + "properties": { + "id": "meter-14171", + "maker": "Maker H", + "model": "Model 14171", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.573628647523435, + 23.62522518933403 + ] + }, + "properties": { + "id": "meter-14172", + "maker": "Maker A", + "model": "Model 14172", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.3695706600072, + 17.741563687821372 + ] + }, + "properties": { + "id": "meter-14173", + "maker": "Maker D", + "model": "Model 14173", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.46649860158268, + 21.52584944505937 + ] + }, + "properties": { + "id": "meter-14174", + "maker": "Maker G", + "model": "Model 14174", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.44302798350915, + 19.904927396929267 + ] + }, + "properties": { + "id": "meter-14175", + "maker": "Maker B", + "model": "Model 14175", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.06980057762043, + 19.734234520001316 + ] + }, + "properties": { + "id": "meter-14176", + "maker": "Maker J", + "model": "Model 14176", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.93134648209998, + 24.699830253325455 + ] + }, + "properties": { + "id": "meter-14177", + "maker": "Maker B", + "model": "Model 14177", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52524098336815, + 25.69697169823333 + ] + }, + "properties": { + "id": "meter-14178", + "maker": "Maker D", + "model": "Model 14178", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.480946700519645, + 23.859410712291666 + ] + }, + "properties": { + "id": "meter-14179", + "maker": "Maker D", + "model": "Model 14179", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.55570828908911, + 24.088757376218933 + ] + }, + "properties": { + "id": "meter-14180", + "maker": "Maker J", + "model": "Model 14180", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.79246290240835, + 26.871077015393787 + ] + }, + "properties": { + "id": "meter-14181", + "maker": "Maker D", + "model": "Model 14181", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.26497870487351, + 20.186937826919227 + ] + }, + "properties": { + "id": "meter-14182", + "maker": "Maker H", + "model": "Model 14182", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.22367367087581, + 22.770077766442515 + ] + }, + "properties": { + "id": "meter-14183", + "maker": "Maker A", + "model": "Model 14183", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.59653519372537, + 27.702229579798242 + ] + }, + "properties": { + "id": "meter-14184", + "maker": "Maker D", + "model": "Model 14184", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.224944465610065, + 25.155125125831997 + ] + }, + "properties": { + "id": "meter-14185", + "maker": "Maker J", + "model": "Model 14185", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.071012946406796, + 27.635217905587655 + ] + }, + "properties": { + "id": "meter-14186", + "maker": "Maker A", + "model": "Model 14186", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.51828407074106, + 22.079176828879746 + ] + }, + "properties": { + "id": "meter-14187", + "maker": "Maker J", + "model": "Model 14187", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.357934204741525, + 25.316095584886135 + ] + }, + "properties": { + "id": "meter-14188", + "maker": "Maker G", + "model": "Model 14188", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.8528653019153, + 23.415068526323616 + ] + }, + "properties": { + "id": "meter-14189", + "maker": "Maker C", + "model": "Model 14189", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.01435438062046, + 27.23967826508445 + ] + }, + "properties": { + "id": "meter-14190", + "maker": "Maker H", + "model": "Model 14190", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.86080416206501, + 27.36668109836179 + ] + }, + "properties": { + "id": "meter-14191", + "maker": "Maker C", + "model": "Model 14191", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.453388957602826, + 18.397726516051325 + ] + }, + "properties": { + "id": "meter-14192", + "maker": "Maker B", + "model": "Model 14192", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.14083268609322, + 28.34197297764075 + ] + }, + "properties": { + "id": "meter-14193", + "maker": "Maker G", + "model": "Model 14193", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.67639301159804, + 22.6988274295403 + ] + }, + "properties": { + "id": "meter-14194", + "maker": "Maker F", + "model": "Model 14194", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.211981373802516, + 22.67316137219224 + ] + }, + "properties": { + "id": "meter-14195", + "maker": "Maker F", + "model": "Model 14195", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.33808535253911, + 26.857682267674285 + ] + }, + "properties": { + "id": "meter-14196", + "maker": "Maker G", + "model": "Model 14196", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.77183069733268, + 24.93885365479357 + ] + }, + "properties": { + "id": "meter-14197", + "maker": "Maker H", + "model": "Model 14197", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.29578496642188, + 21.888627559538417 + ] + }, + "properties": { + "id": "meter-14198", + "maker": "Maker E", + "model": "Model 14198", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.36478421404188, + 26.698895439400513 + ] + }, + "properties": { + "id": "meter-14199", + "maker": "Maker A", + "model": "Model 14199", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53524989281871, + 24.716477286371017 + ] + }, + "properties": { + "id": "meter-14200", + "maker": "Maker C", + "model": "Model 14200", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.82963264758274, + 21.016587294499903 + ] + }, + "properties": { + "id": "meter-14201", + "maker": "Maker A", + "model": "Model 14201", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.15909951637828, + 28.733622522047476 + ] + }, + "properties": { + "id": "meter-14202", + "maker": "Maker G", + "model": "Model 14202", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.76672430789685, + 21.986131141521586 + ] + }, + "properties": { + "id": "meter-14203", + "maker": "Maker C", + "model": "Model 14203", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.573891123149934, + 28.53676187840699 + ] + }, + "properties": { + "id": "meter-14204", + "maker": "Maker B", + "model": "Model 14204", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.25569131584631, + 21.722650835235086 + ] + }, + "properties": { + "id": "meter-14205", + "maker": "Maker I", + "model": "Model 14205", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.20802696997202, + 18.045713948489137 + ] + }, + "properties": { + "id": "meter-14206", + "maker": "Maker A", + "model": "Model 14206", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.764669169474814, + 30.662771953630568 + ] + }, + "properties": { + "id": "meter-14207", + "maker": "Maker C", + "model": "Model 14207", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.237211562617354, + 20.901362542247554 + ] + }, + "properties": { + "id": "meter-14208", + "maker": "Maker I", + "model": "Model 14208", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.1475250439924, + 20.283572051046995 + ] + }, + "properties": { + "id": "meter-14209", + "maker": "Maker D", + "model": "Model 14209", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7897472168387, + 23.224856507712477 + ] + }, + "properties": { + "id": "meter-14210", + "maker": "Maker E", + "model": "Model 14210", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.32203031785517, + 25.828318742903782 + ] + }, + "properties": { + "id": "meter-14211", + "maker": "Maker D", + "model": "Model 14211", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.434951629495636, + 23.869317405531817 + ] + }, + "properties": { + "id": "meter-14212", + "maker": "Maker B", + "model": "Model 14212", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.20005477437945, + 24.17454004573264 + ] + }, + "properties": { + "id": "meter-14213", + "maker": "Maker A", + "model": "Model 14213", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.9735039733991, + 22.307877301677106 + ] + }, + "properties": { + "id": "meter-14214", + "maker": "Maker J", + "model": "Model 14214", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.19990256143665, + 20.97126162457876 + ] + }, + "properties": { + "id": "meter-14215", + "maker": "Maker C", + "model": "Model 14215", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.42268151317361, + 21.246497203331717 + ] + }, + "properties": { + "id": "meter-14216", + "maker": "Maker I", + "model": "Model 14216", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.25058491783458, + 27.644853131575754 + ] + }, + "properties": { + "id": "meter-14217", + "maker": "Maker A", + "model": "Model 14217", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95360522716531, + 21.4689446412073 + ] + }, + "properties": { + "id": "meter-14218", + "maker": "Maker D", + "model": "Model 14218", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.602797107479205, + 28.35404476225054 + ] + }, + "properties": { + "id": "meter-14219", + "maker": "Maker B", + "model": "Model 14219", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.25877571982084, + 27.628483047356077 + ] + }, + "properties": { + "id": "meter-14220", + "maker": "Maker G", + "model": "Model 14220", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.043817295247564, + 23.15475777624989 + ] + }, + "properties": { + "id": "meter-14221", + "maker": "Maker J", + "model": "Model 14221", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65201978211807, + 28.79620948771607 + ] + }, + "properties": { + "id": "meter-14222", + "maker": "Maker F", + "model": "Model 14222", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.19677457726802, + 20.594498735442826 + ] + }, + "properties": { + "id": "meter-14223", + "maker": "Maker G", + "model": "Model 14223", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.74457070719651, + 28.870928214405875 + ] + }, + "properties": { + "id": "meter-14224", + "maker": "Maker B", + "model": "Model 14224", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.22285110212572, + 26.077319174121577 + ] + }, + "properties": { + "id": "meter-14225", + "maker": "Maker A", + "model": "Model 14225", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.80582501612172, + 21.3088048619182 + ] + }, + "properties": { + "id": "meter-14226", + "maker": "Maker B", + "model": "Model 14226", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.008808287523614, + 21.692076031875885 + ] + }, + "properties": { + "id": "meter-14227", + "maker": "Maker D", + "model": "Model 14227", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.141483223801394, + 30.135631605164896 + ] + }, + "properties": { + "id": "meter-14228", + "maker": "Maker I", + "model": "Model 14228", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.49833614596645, + 21.83537273814125 + ] + }, + "properties": { + "id": "meter-14229", + "maker": "Maker D", + "model": "Model 14229", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.207641557831096, + 23.10578250316768 + ] + }, + "properties": { + "id": "meter-14230", + "maker": "Maker I", + "model": "Model 14230", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.11605183592218, + 22.482086112501158 + ] + }, + "properties": { + "id": "meter-14231", + "maker": "Maker F", + "model": "Model 14231", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89007145432873, + 28.400227667023234 + ] + }, + "properties": { + "id": "meter-14232", + "maker": "Maker D", + "model": "Model 14232", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.88945944975178, + 28.097186827924496 + ] + }, + "properties": { + "id": "meter-14233", + "maker": "Maker F", + "model": "Model 14233", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.166066732607845, + 20.86087783682587 + ] + }, + "properties": { + "id": "meter-14234", + "maker": "Maker H", + "model": "Model 14234", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.196653911353295, + 23.926157122270723 + ] + }, + "properties": { + "id": "meter-14235", + "maker": "Maker F", + "model": "Model 14235", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.53571387917515, + 21.75484247452583 + ] + }, + "properties": { + "id": "meter-14236", + "maker": "Maker G", + "model": "Model 14236", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.594638928186136, + 22.11401697118134 + ] + }, + "properties": { + "id": "meter-14237", + "maker": "Maker J", + "model": "Model 14237", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.71113195235358, + 23.962539208409282 + ] + }, + "properties": { + "id": "meter-14238", + "maker": "Maker C", + "model": "Model 14238", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.456155692892416, + 23.63225676484901 + ] + }, + "properties": { + "id": "meter-14239", + "maker": "Maker J", + "model": "Model 14239", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.7471934784317, + 21.858656833628267 + ] + }, + "properties": { + "id": "meter-14240", + "maker": "Maker G", + "model": "Model 14240", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67798865361199, + 24.640711499201643 + ] + }, + "properties": { + "id": "meter-14241", + "maker": "Maker E", + "model": "Model 14241", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.69084940626472, + 23.07839202850314 + ] + }, + "properties": { + "id": "meter-14242", + "maker": "Maker F", + "model": "Model 14242", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.479376040240346, + 24.73984824856907 + ] + }, + "properties": { + "id": "meter-14243", + "maker": "Maker D", + "model": "Model 14243", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.136373199481426, + 28.430373600069185 + ] + }, + "properties": { + "id": "meter-14244", + "maker": "Maker I", + "model": "Model 14244", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.109196116151935, + 25.150296074395847 + ] + }, + "properties": { + "id": "meter-14245", + "maker": "Maker G", + "model": "Model 14245", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.93321453134929, + 20.294737909934774 + ] + }, + "properties": { + "id": "meter-14246", + "maker": "Maker E", + "model": "Model 14246", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.05019463266133, + 22.13553517976008 + ] + }, + "properties": { + "id": "meter-14247", + "maker": "Maker B", + "model": "Model 14247", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.63506629408743, + 22.5242789003456 + ] + }, + "properties": { + "id": "meter-14248", + "maker": "Maker D", + "model": "Model 14248", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.08583139733096, + 24.76871494257257 + ] + }, + "properties": { + "id": "meter-14249", + "maker": "Maker C", + "model": "Model 14249", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.49455209698089, + 18.47269252022897 + ] + }, + "properties": { + "id": "meter-14250", + "maker": "Maker A", + "model": "Model 14250", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70227114738211, + 21.596217749301726 + ] + }, + "properties": { + "id": "meter-14251", + "maker": "Maker I", + "model": "Model 14251", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.2681988130424, + 25.430048713946753 + ] + }, + "properties": { + "id": "meter-14252", + "maker": "Maker G", + "model": "Model 14252", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.804868887583886, + 17.590348494095643 + ] + }, + "properties": { + "id": "meter-14253", + "maker": "Maker B", + "model": "Model 14253", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.69874896879045, + 28.605533111469207 + ] + }, + "properties": { + "id": "meter-14254", + "maker": "Maker F", + "model": "Model 14254", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.62373617506736, + 24.662490563885882 + ] + }, + "properties": { + "id": "meter-14255", + "maker": "Maker J", + "model": "Model 14255", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.78112472564865, + 26.46808067599765 + ] + }, + "properties": { + "id": "meter-14256", + "maker": "Maker H", + "model": "Model 14256", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.136961824468486, + 22.605639877212933 + ] + }, + "properties": { + "id": "meter-14257", + "maker": "Maker C", + "model": "Model 14257", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.88259950600009, + 27.387440152029832 + ] + }, + "properties": { + "id": "meter-14258", + "maker": "Maker G", + "model": "Model 14258", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.94794856247641, + 22.897800889974732 + ] + }, + "properties": { + "id": "meter-14259", + "maker": "Maker H", + "model": "Model 14259", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.44696328267982, + 19.846040922324878 + ] + }, + "properties": { + "id": "meter-14260", + "maker": "Maker E", + "model": "Model 14260", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.24239387807552, + 26.46511141359651 + ] + }, + "properties": { + "id": "meter-14261", + "maker": "Maker E", + "model": "Model 14261", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.1386048130058, + 25.972429080244712 + ] + }, + "properties": { + "id": "meter-14262", + "maker": "Maker J", + "model": "Model 14262", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.96727850842401, + 24.3000461674851 + ] + }, + "properties": { + "id": "meter-14263", + "maker": "Maker A", + "model": "Model 14263", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.03032309200688, + 20.169346270594144 + ] + }, + "properties": { + "id": "meter-14264", + "maker": "Maker H", + "model": "Model 14264", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.37773392796139, + 26.94923669698594 + ] + }, + "properties": { + "id": "meter-14265", + "maker": "Maker A", + "model": "Model 14265", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.41034189193847, + 21.16823002528121 + ] + }, + "properties": { + "id": "meter-14266", + "maker": "Maker I", + "model": "Model 14266", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.89680785612416, + 26.241599244384503 + ] + }, + "properties": { + "id": "meter-14267", + "maker": "Maker C", + "model": "Model 14267", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.89750601356314, + 24.5011776844618 + ] + }, + "properties": { + "id": "meter-14268", + "maker": "Maker E", + "model": "Model 14268", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.8932234445578, + 25.4460731427475 + ] + }, + "properties": { + "id": "meter-14269", + "maker": "Maker H", + "model": "Model 14269", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.84673591294244, + 18.9412812372856 + ] + }, + "properties": { + "id": "meter-14270", + "maker": "Maker C", + "model": "Model 14270", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.68585472395049, + 27.134671304904458 + ] + }, + "properties": { + "id": "meter-14271", + "maker": "Maker D", + "model": "Model 14271", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20963045238586, + 23.802502477150604 + ] + }, + "properties": { + "id": "meter-14272", + "maker": "Maker H", + "model": "Model 14272", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.98720491244206, + 20.036650661485215 + ] + }, + "properties": { + "id": "meter-14273", + "maker": "Maker J", + "model": "Model 14273", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.50578312117752, + 22.8332285688237 + ] + }, + "properties": { + "id": "meter-14274", + "maker": "Maker F", + "model": "Model 14274", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.650228913348506, + 20.242781281140463 + ] + }, + "properties": { + "id": "meter-14275", + "maker": "Maker A", + "model": "Model 14275", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.84085510898615, + 21.69010719797932 + ] + }, + "properties": { + "id": "meter-14276", + "maker": "Maker A", + "model": "Model 14276", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.218580824094175, + 19.95085726771046 + ] + }, + "properties": { + "id": "meter-14277", + "maker": "Maker F", + "model": "Model 14277", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.28579298547872, + 22.966841897501798 + ] + }, + "properties": { + "id": "meter-14278", + "maker": "Maker C", + "model": "Model 14278", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.58044796044574, + 25.63353824026713 + ] + }, + "properties": { + "id": "meter-14279", + "maker": "Maker C", + "model": "Model 14279", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.66257264813523, + 29.464982922577313 + ] + }, + "properties": { + "id": "meter-14280", + "maker": "Maker E", + "model": "Model 14280", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.72672801840705, + 24.07121887185714 + ] + }, + "properties": { + "id": "meter-14281", + "maker": "Maker B", + "model": "Model 14281", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.607302687469875, + 26.330991447862438 + ] + }, + "properties": { + "id": "meter-14282", + "maker": "Maker J", + "model": "Model 14282", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.613588098604495, + 21.304036259692445 + ] + }, + "properties": { + "id": "meter-14283", + "maker": "Maker J", + "model": "Model 14283", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.99111025673528, + 20.170400711734036 + ] + }, + "properties": { + "id": "meter-14284", + "maker": "Maker B", + "model": "Model 14284", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.35617659217393, + 19.22727754088003 + ] + }, + "properties": { + "id": "meter-14285", + "maker": "Maker J", + "model": "Model 14285", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.45354485109763, + 27.389730470611454 + ] + }, + "properties": { + "id": "meter-14286", + "maker": "Maker C", + "model": "Model 14286", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.90736939466541, + 26.792619662034802 + ] + }, + "properties": { + "id": "meter-14287", + "maker": "Maker C", + "model": "Model 14287", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.12965902668904, + 17.46311442989029 + ] + }, + "properties": { + "id": "meter-14288", + "maker": "Maker A", + "model": "Model 14288", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.32690576673794, + 26.047608693976883 + ] + }, + "properties": { + "id": "meter-14289", + "maker": "Maker F", + "model": "Model 14289", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70684398309228, + 28.600084529841503 + ] + }, + "properties": { + "id": "meter-14290", + "maker": "Maker E", + "model": "Model 14290", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.55428540207052, + 21.93833055723944 + ] + }, + "properties": { + "id": "meter-14291", + "maker": "Maker A", + "model": "Model 14291", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.30907446849706, + 20.48375952185144 + ] + }, + "properties": { + "id": "meter-14292", + "maker": "Maker H", + "model": "Model 14292", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.308698110153216, + 23.633494491416158 + ] + }, + "properties": { + "id": "meter-14293", + "maker": "Maker F", + "model": "Model 14293", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.82070248708271, + 19.064971534693914 + ] + }, + "properties": { + "id": "meter-14294", + "maker": "Maker J", + "model": "Model 14294", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.97570326590265, + 19.416839111387755 + ] + }, + "properties": { + "id": "meter-14295", + "maker": "Maker A", + "model": "Model 14295", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.94949749423718, + 23.9246789752254 + ] + }, + "properties": { + "id": "meter-14296", + "maker": "Maker A", + "model": "Model 14296", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.77430509534014, + 22.325098141541247 + ] + }, + "properties": { + "id": "meter-14297", + "maker": "Maker I", + "model": "Model 14297", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.34495481795497, + 18.64895366650509 + ] + }, + "properties": { + "id": "meter-14298", + "maker": "Maker D", + "model": "Model 14298", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.241300169203065, + 19.474075138364267 + ] + }, + "properties": { + "id": "meter-14299", + "maker": "Maker E", + "model": "Model 14299", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.76486657731694, + 24.01240452474493 + ] + }, + "properties": { + "id": "meter-14300", + "maker": "Maker B", + "model": "Model 14300", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.307290458798846, + 26.249592029338753 + ] + }, + "properties": { + "id": "meter-14301", + "maker": "Maker I", + "model": "Model 14301", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.511258110494886, + 26.638360478627916 + ] + }, + "properties": { + "id": "meter-14302", + "maker": "Maker D", + "model": "Model 14302", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.41638845756997, + 27.755765434805074 + ] + }, + "properties": { + "id": "meter-14303", + "maker": "Maker J", + "model": "Model 14303", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.37076012246226, + 21.975437954439045 + ] + }, + "properties": { + "id": "meter-14304", + "maker": "Maker G", + "model": "Model 14304", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.61011014695132, + 28.961470442496932 + ] + }, + "properties": { + "id": "meter-14305", + "maker": "Maker H", + "model": "Model 14305", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.77948691336092, + 25.105874431497156 + ] + }, + "properties": { + "id": "meter-14306", + "maker": "Maker J", + "model": "Model 14306", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.797405523257815, + 29.931023347586596 + ] + }, + "properties": { + "id": "meter-14307", + "maker": "Maker B", + "model": "Model 14307", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.44715969165141, + 18.282932158175537 + ] + }, + "properties": { + "id": "meter-14308", + "maker": "Maker C", + "model": "Model 14308", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.52525333761752, + 20.64449196015852 + ] + }, + "properties": { + "id": "meter-14309", + "maker": "Maker C", + "model": "Model 14309", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.700461092897655, + 21.663874436731064 + ] + }, + "properties": { + "id": "meter-14310", + "maker": "Maker H", + "model": "Model 14310", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.22900209479805, + 20.71483196737067 + ] + }, + "properties": { + "id": "meter-14311", + "maker": "Maker F", + "model": "Model 14311", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.75970559591828, + 26.49039344295172 + ] + }, + "properties": { + "id": "meter-14312", + "maker": "Maker B", + "model": "Model 14312", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.56734207991869, + 25.93089043047229 + ] + }, + "properties": { + "id": "meter-14313", + "maker": "Maker I", + "model": "Model 14313", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.33490322555447, + 28.29105477202952 + ] + }, + "properties": { + "id": "meter-14314", + "maker": "Maker E", + "model": "Model 14314", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.47768490705354, + 24.25570548996689 + ] + }, + "properties": { + "id": "meter-14315", + "maker": "Maker J", + "model": "Model 14315", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.21941992474648, + 18.811346689419636 + ] + }, + "properties": { + "id": "meter-14316", + "maker": "Maker C", + "model": "Model 14316", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.763025178137326, + 24.214137274370415 + ] + }, + "properties": { + "id": "meter-14317", + "maker": "Maker F", + "model": "Model 14317", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.77235868598994, + 24.00799261209913 + ] + }, + "properties": { + "id": "meter-14318", + "maker": "Maker I", + "model": "Model 14318", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.76297023036918, + 19.312678610022747 + ] + }, + "properties": { + "id": "meter-14319", + "maker": "Maker C", + "model": "Model 14319", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.457645783757094, + 21.379489263844633 + ] + }, + "properties": { + "id": "meter-14320", + "maker": "Maker I", + "model": "Model 14320", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.713888556138414, + 30.083185032688256 + ] + }, + "properties": { + "id": "meter-14321", + "maker": "Maker C", + "model": "Model 14321", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.25572117809078, + 27.051672939449546 + ] + }, + "properties": { + "id": "meter-14322", + "maker": "Maker B", + "model": "Model 14322", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.71589736500872, + 27.920530479779426 + ] + }, + "properties": { + "id": "meter-14323", + "maker": "Maker C", + "model": "Model 14323", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.87786631062232, + 21.317833037194557 + ] + }, + "properties": { + "id": "meter-14324", + "maker": "Maker C", + "model": "Model 14324", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.47793110223707, + 26.81314707091676 + ] + }, + "properties": { + "id": "meter-14325", + "maker": "Maker F", + "model": "Model 14325", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.148847519717734, + 23.65733993706195 + ] + }, + "properties": { + "id": "meter-14326", + "maker": "Maker C", + "model": "Model 14326", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.45917227400293, + 29.21573792769044 + ] + }, + "properties": { + "id": "meter-14327", + "maker": "Maker B", + "model": "Model 14327", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.61840536416577, + 26.9170004797369 + ] + }, + "properties": { + "id": "meter-14328", + "maker": "Maker B", + "model": "Model 14328", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.26787217854492, + 28.568464375527356 + ] + }, + "properties": { + "id": "meter-14329", + "maker": "Maker C", + "model": "Model 14329", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.1724480119448, + 25.675936032912897 + ] + }, + "properties": { + "id": "meter-14330", + "maker": "Maker G", + "model": "Model 14330", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.132752841253065, + 22.484437070760848 + ] + }, + "properties": { + "id": "meter-14331", + "maker": "Maker B", + "model": "Model 14331", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.71101901920823, + 20.44801669524216 + ] + }, + "properties": { + "id": "meter-14332", + "maker": "Maker F", + "model": "Model 14332", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.40432312686604, + 28.247028513055113 + ] + }, + "properties": { + "id": "meter-14333", + "maker": "Maker E", + "model": "Model 14333", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.73285171866253, + 20.89543267051961 + ] + }, + "properties": { + "id": "meter-14334", + "maker": "Maker C", + "model": "Model 14334", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.53517951130536, + 29.85274091071922 + ] + }, + "properties": { + "id": "meter-14335", + "maker": "Maker I", + "model": "Model 14335", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61953269284284, + 22.72264619175477 + ] + }, + "properties": { + "id": "meter-14336", + "maker": "Maker E", + "model": "Model 14336", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.778636737124806, + 23.455646658235352 + ] + }, + "properties": { + "id": "meter-14337", + "maker": "Maker C", + "model": "Model 14337", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.8927078111881, + 26.906669904571952 + ] + }, + "properties": { + "id": "meter-14338", + "maker": "Maker F", + "model": "Model 14338", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.532089003382936, + 21.477244455139797 + ] + }, + "properties": { + "id": "meter-14339", + "maker": "Maker H", + "model": "Model 14339", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.24301292035004, + 27.517359252928394 + ] + }, + "properties": { + "id": "meter-14340", + "maker": "Maker I", + "model": "Model 14340", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.51742192853193, + 28.25115038650528 + ] + }, + "properties": { + "id": "meter-14341", + "maker": "Maker E", + "model": "Model 14341", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.09141568882363, + 25.618982988915523 + ] + }, + "properties": { + "id": "meter-14342", + "maker": "Maker E", + "model": "Model 14342", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.929200409653646, + 28.16444159910466 + ] + }, + "properties": { + "id": "meter-14343", + "maker": "Maker B", + "model": "Model 14343", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.62796671651847, + 22.662664771008068 + ] + }, + "properties": { + "id": "meter-14344", + "maker": "Maker A", + "model": "Model 14344", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14884290950634, + 22.842450060652247 + ] + }, + "properties": { + "id": "meter-14345", + "maker": "Maker G", + "model": "Model 14345", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.59492742991228, + 19.53904136086368 + ] + }, + "properties": { + "id": "meter-14346", + "maker": "Maker J", + "model": "Model 14346", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.645923422209115, + 28.713396830099853 + ] + }, + "properties": { + "id": "meter-14347", + "maker": "Maker I", + "model": "Model 14347", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.729059002856566, + 21.610104832834537 + ] + }, + "properties": { + "id": "meter-14348", + "maker": "Maker J", + "model": "Model 14348", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.67407795583442, + 23.407416001088542 + ] + }, + "properties": { + "id": "meter-14349", + "maker": "Maker I", + "model": "Model 14349", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.54955216934553, + 17.35331547014628 + ] + }, + "properties": { + "id": "meter-14350", + "maker": "Maker F", + "model": "Model 14350", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.80004123783671, + 27.4985262744503 + ] + }, + "properties": { + "id": "meter-14351", + "maker": "Maker J", + "model": "Model 14351", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.08709001395396, + 22.116725339211737 + ] + }, + "properties": { + "id": "meter-14352", + "maker": "Maker E", + "model": "Model 14352", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.52199294741225, + 28.087722725150023 + ] + }, + "properties": { + "id": "meter-14353", + "maker": "Maker B", + "model": "Model 14353", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.887085765382565, + 29.701801248205268 + ] + }, + "properties": { + "id": "meter-14354", + "maker": "Maker B", + "model": "Model 14354", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.99356151112937, + 19.470417263956953 + ] + }, + "properties": { + "id": "meter-14355", + "maker": "Maker A", + "model": "Model 14355", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.29401458613265, + 23.783242189113512 + ] + }, + "properties": { + "id": "meter-14356", + "maker": "Maker H", + "model": "Model 14356", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.62798294435835, + 20.292653813153336 + ] + }, + "properties": { + "id": "meter-14357", + "maker": "Maker B", + "model": "Model 14357", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.95887111389777, + 19.184718995802072 + ] + }, + "properties": { + "id": "meter-14358", + "maker": "Maker H", + "model": "Model 14358", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.5650819676886, + 21.914005103189638 + ] + }, + "properties": { + "id": "meter-14359", + "maker": "Maker A", + "model": "Model 14359", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.87659938451398, + 27.491663817831082 + ] + }, + "properties": { + "id": "meter-14360", + "maker": "Maker G", + "model": "Model 14360", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.960221669946, + 26.9639721643168 + ] + }, + "properties": { + "id": "meter-14361", + "maker": "Maker B", + "model": "Model 14361", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.05667633080955, + 21.369661115020435 + ] + }, + "properties": { + "id": "meter-14362", + "maker": "Maker A", + "model": "Model 14362", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.86565436683355, + 27.002147362082113 + ] + }, + "properties": { + "id": "meter-14363", + "maker": "Maker D", + "model": "Model 14363", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.07600219933364, + 28.77119223389701 + ] + }, + "properties": { + "id": "meter-14364", + "maker": "Maker E", + "model": "Model 14364", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.30569659912642, + 31.601235456429528 + ] + }, + "properties": { + "id": "meter-14365", + "maker": "Maker B", + "model": "Model 14365", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.63671992993379, + 20.793969828930933 + ] + }, + "properties": { + "id": "meter-14366", + "maker": "Maker H", + "model": "Model 14366", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.91246704932534, + 23.13529187986213 + ] + }, + "properties": { + "id": "meter-14367", + "maker": "Maker C", + "model": "Model 14367", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.873584976549765, + 27.26567795534334 + ] + }, + "properties": { + "id": "meter-14368", + "maker": "Maker J", + "model": "Model 14368", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.2783986530285, + 23.054686764711327 + ] + }, + "properties": { + "id": "meter-14369", + "maker": "Maker E", + "model": "Model 14369", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.31893155309678, + 18.822849984383488 + ] + }, + "properties": { + "id": "meter-14370", + "maker": "Maker I", + "model": "Model 14370", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.618532272249794, + 25.00625986327945 + ] + }, + "properties": { + "id": "meter-14371", + "maker": "Maker D", + "model": "Model 14371", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.77361353509205, + 20.33638546742303 + ] + }, + "properties": { + "id": "meter-14372", + "maker": "Maker B", + "model": "Model 14372", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.387832836126336, + 30.23039694730261 + ] + }, + "properties": { + "id": "meter-14373", + "maker": "Maker H", + "model": "Model 14373", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.730120384132455, + 21.57343997726355 + ] + }, + "properties": { + "id": "meter-14374", + "maker": "Maker H", + "model": "Model 14374", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.95898063261097, + 30.182755983766576 + ] + }, + "properties": { + "id": "meter-14375", + "maker": "Maker E", + "model": "Model 14375", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.861087565966784, + 27.430598733833705 + ] + }, + "properties": { + "id": "meter-14376", + "maker": "Maker J", + "model": "Model 14376", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.304101581721454, + 25.787878738629804 + ] + }, + "properties": { + "id": "meter-14377", + "maker": "Maker I", + "model": "Model 14377", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01400295312425, + 23.020023262406333 + ] + }, + "properties": { + "id": "meter-14378", + "maker": "Maker A", + "model": "Model 14378", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.22911619143456, + 29.164997726307156 + ] + }, + "properties": { + "id": "meter-14379", + "maker": "Maker D", + "model": "Model 14379", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.726683815135644, + 27.41323800267822 + ] + }, + "properties": { + "id": "meter-14380", + "maker": "Maker J", + "model": "Model 14380", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.75845857816113, + 21.10278410843336 + ] + }, + "properties": { + "id": "meter-14381", + "maker": "Maker D", + "model": "Model 14381", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.12764879822976, + 20.586912852971984 + ] + }, + "properties": { + "id": "meter-14382", + "maker": "Maker E", + "model": "Model 14382", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.77542542824542, + 28.77894179261161 + ] + }, + "properties": { + "id": "meter-14383", + "maker": "Maker I", + "model": "Model 14383", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.07837950155927, + 27.759292897767526 + ] + }, + "properties": { + "id": "meter-14384", + "maker": "Maker F", + "model": "Model 14384", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.86177601896277, + 28.430524452662738 + ] + }, + "properties": { + "id": "meter-14385", + "maker": "Maker I", + "model": "Model 14385", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.27402563036549, + 23.09541698158447 + ] + }, + "properties": { + "id": "meter-14386", + "maker": "Maker D", + "model": "Model 14386", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.795920404652136, + 19.832042830757644 + ] + }, + "properties": { + "id": "meter-14387", + "maker": "Maker I", + "model": "Model 14387", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.197502774606676, + 26.315823521567015 + ] + }, + "properties": { + "id": "meter-14388", + "maker": "Maker B", + "model": "Model 14388", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.939445983857446, + 28.57139912666618 + ] + }, + "properties": { + "id": "meter-14389", + "maker": "Maker C", + "model": "Model 14389", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.60874756210656, + 24.556559401292205 + ] + }, + "properties": { + "id": "meter-14390", + "maker": "Maker J", + "model": "Model 14390", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.921904306102576, + 20.16152242837756 + ] + }, + "properties": { + "id": "meter-14391", + "maker": "Maker F", + "model": "Model 14391", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.10640065958642, + 24.173360754754434 + ] + }, + "properties": { + "id": "meter-14392", + "maker": "Maker C", + "model": "Model 14392", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.69223429767647, + 20.64870516376353 + ] + }, + "properties": { + "id": "meter-14393", + "maker": "Maker E", + "model": "Model 14393", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.685378968193916, + 22.532109349394524 + ] + }, + "properties": { + "id": "meter-14394", + "maker": "Maker J", + "model": "Model 14394", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.30427129464183, + 21.758369117154864 + ] + }, + "properties": { + "id": "meter-14395", + "maker": "Maker G", + "model": "Model 14395", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.31735920730803, + 23.442064471969207 + ] + }, + "properties": { + "id": "meter-14396", + "maker": "Maker G", + "model": "Model 14396", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.938193667300155, + 19.626958870797047 + ] + }, + "properties": { + "id": "meter-14397", + "maker": "Maker G", + "model": "Model 14397", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.82499692894605, + 20.096190870909105 + ] + }, + "properties": { + "id": "meter-14398", + "maker": "Maker D", + "model": "Model 14398", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.57281243168012, + 19.874503417537966 + ] + }, + "properties": { + "id": "meter-14399", + "maker": "Maker A", + "model": "Model 14399", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.70417099353165, + 21.53372039197044 + ] + }, + "properties": { + "id": "meter-14400", + "maker": "Maker J", + "model": "Model 14400", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.726558652671116, + 26.685648522849966 + ] + }, + "properties": { + "id": "meter-14401", + "maker": "Maker F", + "model": "Model 14401", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.50684443334629, + 19.990297296404012 + ] + }, + "properties": { + "id": "meter-14402", + "maker": "Maker G", + "model": "Model 14402", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.92143802638226, + 28.421443538804553 + ] + }, + "properties": { + "id": "meter-14403", + "maker": "Maker I", + "model": "Model 14403", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.504176781607086, + 18.406826765236467 + ] + }, + "properties": { + "id": "meter-14404", + "maker": "Maker A", + "model": "Model 14404", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.0009573893936, + 21.52080583551163 + ] + }, + "properties": { + "id": "meter-14405", + "maker": "Maker A", + "model": "Model 14405", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.18667946422661, + 27.05986243436118 + ] + }, + "properties": { + "id": "meter-14406", + "maker": "Maker D", + "model": "Model 14406", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.11193076702713, + 20.61454548677323 + ] + }, + "properties": { + "id": "meter-14407", + "maker": "Maker F", + "model": "Model 14407", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.68670630323274, + 22.062083383048606 + ] + }, + "properties": { + "id": "meter-14408", + "maker": "Maker I", + "model": "Model 14408", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.88312177028783, + 17.968748682443316 + ] + }, + "properties": { + "id": "meter-14409", + "maker": "Maker J", + "model": "Model 14409", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.20399526477877, + 23.06434688046706 + ] + }, + "properties": { + "id": "meter-14410", + "maker": "Maker F", + "model": "Model 14410", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.74889363427323, + 21.112110678422898 + ] + }, + "properties": { + "id": "meter-14411", + "maker": "Maker F", + "model": "Model 14411", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.254590219353666, + 29.924944773381387 + ] + }, + "properties": { + "id": "meter-14412", + "maker": "Maker J", + "model": "Model 14412", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.03824666260602, + 28.436474487201625 + ] + }, + "properties": { + "id": "meter-14413", + "maker": "Maker I", + "model": "Model 14413", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13334590910236, + 29.079016256843257 + ] + }, + "properties": { + "id": "meter-14414", + "maker": "Maker I", + "model": "Model 14414", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.44015130183474, + 22.766213180992033 + ] + }, + "properties": { + "id": "meter-14415", + "maker": "Maker A", + "model": "Model 14415", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.06801682589588, + 28.752988992710826 + ] + }, + "properties": { + "id": "meter-14416", + "maker": "Maker I", + "model": "Model 14416", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60823247066219, + 21.551679420672397 + ] + }, + "properties": { + "id": "meter-14417", + "maker": "Maker G", + "model": "Model 14417", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.255705215246046, + 19.74746510266722 + ] + }, + "properties": { + "id": "meter-14418", + "maker": "Maker G", + "model": "Model 14418", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12506238031823, + 29.250729221340613 + ] + }, + "properties": { + "id": "meter-14419", + "maker": "Maker A", + "model": "Model 14419", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.9705724227485, + 23.546858789438733 + ] + }, + "properties": { + "id": "meter-14420", + "maker": "Maker F", + "model": "Model 14420", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.905958690697496, + 26.969259813107072 + ] + }, + "properties": { + "id": "meter-14421", + "maker": "Maker B", + "model": "Model 14421", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.51201281575875, + 17.580831695681397 + ] + }, + "properties": { + "id": "meter-14422", + "maker": "Maker B", + "model": "Model 14422", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.554755900845564, + 27.55296880093657 + ] + }, + "properties": { + "id": "meter-14423", + "maker": "Maker J", + "model": "Model 14423", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.63472929844601, + 19.722749570487142 + ] + }, + "properties": { + "id": "meter-14424", + "maker": "Maker B", + "model": "Model 14424", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.982917061117504, + 24.066315363259157 + ] + }, + "properties": { + "id": "meter-14425", + "maker": "Maker B", + "model": "Model 14425", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.682038898646056, + 26.928599250835543 + ] + }, + "properties": { + "id": "meter-14426", + "maker": "Maker F", + "model": "Model 14426", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.00852346838518, + 19.49212182865793 + ] + }, + "properties": { + "id": "meter-14427", + "maker": "Maker G", + "model": "Model 14427", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.32975330326726, + 26.561919890455243 + ] + }, + "properties": { + "id": "meter-14428", + "maker": "Maker F", + "model": "Model 14428", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.63263616770711, + 20.318169086701662 + ] + }, + "properties": { + "id": "meter-14429", + "maker": "Maker C", + "model": "Model 14429", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.91299976466284, + 21.114096740484435 + ] + }, + "properties": { + "id": "meter-14430", + "maker": "Maker A", + "model": "Model 14430", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.54023267095951, + 25.43874858165664 + ] + }, + "properties": { + "id": "meter-14431", + "maker": "Maker E", + "model": "Model 14431", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.645955754722635, + 22.582097753858413 + ] + }, + "properties": { + "id": "meter-14432", + "maker": "Maker C", + "model": "Model 14432", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.48785628435557, + 18.588594625864097 + ] + }, + "properties": { + "id": "meter-14433", + "maker": "Maker D", + "model": "Model 14433", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.29576497329206, + 24.212051130788147 + ] + }, + "properties": { + "id": "meter-14434", + "maker": "Maker F", + "model": "Model 14434", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.151326884370135, + 25.214358022767613 + ] + }, + "properties": { + "id": "meter-14435", + "maker": "Maker G", + "model": "Model 14435", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.3952587148947, + 18.757053386432087 + ] + }, + "properties": { + "id": "meter-14436", + "maker": "Maker F", + "model": "Model 14436", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.85580141974389, + 25.5177632588559 + ] + }, + "properties": { + "id": "meter-14437", + "maker": "Maker D", + "model": "Model 14437", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.82071492592959, + 19.500340477654312 + ] + }, + "properties": { + "id": "meter-14438", + "maker": "Maker D", + "model": "Model 14438", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.88197708009322, + 19.203942137675654 + ] + }, + "properties": { + "id": "meter-14439", + "maker": "Maker B", + "model": "Model 14439", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6599747402968, + 19.80114665105804 + ] + }, + "properties": { + "id": "meter-14440", + "maker": "Maker J", + "model": "Model 14440", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.174699717776136, + 23.196304698928266 + ] + }, + "properties": { + "id": "meter-14441", + "maker": "Maker B", + "model": "Model 14441", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.34683214434358, + 18.615613102546682 + ] + }, + "properties": { + "id": "meter-14442", + "maker": "Maker C", + "model": "Model 14442", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.86907427974404, + 26.653600139461552 + ] + }, + "properties": { + "id": "meter-14443", + "maker": "Maker G", + "model": "Model 14443", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.13036992090932, + 23.973405949030266 + ] + }, + "properties": { + "id": "meter-14444", + "maker": "Maker E", + "model": "Model 14444", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.927982818692584, + 21.916815773190933 + ] + }, + "properties": { + "id": "meter-14445", + "maker": "Maker G", + "model": "Model 14445", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.2966857695502, + 19.96825303538337 + ] + }, + "properties": { + "id": "meter-14446", + "maker": "Maker G", + "model": "Model 14446", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.948291012135684, + 26.83265919732407 + ] + }, + "properties": { + "id": "meter-14447", + "maker": "Maker F", + "model": "Model 14447", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70283576313548, + 26.90043474999503 + ] + }, + "properties": { + "id": "meter-14448", + "maker": "Maker H", + "model": "Model 14448", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.53042370885979, + 23.34697990917457 + ] + }, + "properties": { + "id": "meter-14449", + "maker": "Maker D", + "model": "Model 14449", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.62732369184828, + 24.450963996159132 + ] + }, + "properties": { + "id": "meter-14450", + "maker": "Maker G", + "model": "Model 14450", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.62664135250945, + 20.558781307495067 + ] + }, + "properties": { + "id": "meter-14451", + "maker": "Maker A", + "model": "Model 14451", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.95673616129508, + 22.0826084912912 + ] + }, + "properties": { + "id": "meter-14452", + "maker": "Maker D", + "model": "Model 14452", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.55975838664579, + 21.744474410522905 + ] + }, + "properties": { + "id": "meter-14453", + "maker": "Maker E", + "model": "Model 14453", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.05129786354411, + 26.406097485885894 + ] + }, + "properties": { + "id": "meter-14454", + "maker": "Maker B", + "model": "Model 14454", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.12296026579542, + 23.68239292827005 + ] + }, + "properties": { + "id": "meter-14455", + "maker": "Maker J", + "model": "Model 14455", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.58841306097455, + 25.07773024195974 + ] + }, + "properties": { + "id": "meter-14456", + "maker": "Maker D", + "model": "Model 14456", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.351972357570205, + 20.45975623705565 + ] + }, + "properties": { + "id": "meter-14457", + "maker": "Maker F", + "model": "Model 14457", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.24792153590001, + 22.763077075249377 + ] + }, + "properties": { + "id": "meter-14458", + "maker": "Maker B", + "model": "Model 14458", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.293451808581295, + 26.934864765673282 + ] + }, + "properties": { + "id": "meter-14459", + "maker": "Maker D", + "model": "Model 14459", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.407885475538485, + 23.359899802200154 + ] + }, + "properties": { + "id": "meter-14460", + "maker": "Maker H", + "model": "Model 14460", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.4942685732251, + 28.323582445692434 + ] + }, + "properties": { + "id": "meter-14461", + "maker": "Maker I", + "model": "Model 14461", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.039228946939474, + 26.468381682794224 + ] + }, + "properties": { + "id": "meter-14462", + "maker": "Maker H", + "model": "Model 14462", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.822307143161424, + 19.961697487169815 + ] + }, + "properties": { + "id": "meter-14463", + "maker": "Maker A", + "model": "Model 14463", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.70194175150971, + 19.330231504060446 + ] + }, + "properties": { + "id": "meter-14464", + "maker": "Maker B", + "model": "Model 14464", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.45944668226123, + 28.058580098529212 + ] + }, + "properties": { + "id": "meter-14465", + "maker": "Maker G", + "model": "Model 14465", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.360928050957085, + 29.376066894812368 + ] + }, + "properties": { + "id": "meter-14466", + "maker": "Maker A", + "model": "Model 14466", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.47501374000425, + 25.23040488233849 + ] + }, + "properties": { + "id": "meter-14467", + "maker": "Maker F", + "model": "Model 14467", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.52319629877836, + 22.958280287472164 + ] + }, + "properties": { + "id": "meter-14468", + "maker": "Maker C", + "model": "Model 14468", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.60793354074353, + 26.886695071520073 + ] + }, + "properties": { + "id": "meter-14469", + "maker": "Maker I", + "model": "Model 14469", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.39173077047754, + 21.84234113532301 + ] + }, + "properties": { + "id": "meter-14470", + "maker": "Maker H", + "model": "Model 14470", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.73600778990517, + 25.773166695263583 + ] + }, + "properties": { + "id": "meter-14471", + "maker": "Maker F", + "model": "Model 14471", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.40033515887725, + 22.316465593599048 + ] + }, + "properties": { + "id": "meter-14472", + "maker": "Maker B", + "model": "Model 14472", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.065027265608784, + 24.024694457659017 + ] + }, + "properties": { + "id": "meter-14473", + "maker": "Maker G", + "model": "Model 14473", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.18102678508133, + 24.0084809193656 + ] + }, + "properties": { + "id": "meter-14474", + "maker": "Maker F", + "model": "Model 14474", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.35812739901742, + 27.3505244996678 + ] + }, + "properties": { + "id": "meter-14475", + "maker": "Maker C", + "model": "Model 14475", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.746141949782356, + 20.69739944628845 + ] + }, + "properties": { + "id": "meter-14476", + "maker": "Maker B", + "model": "Model 14476", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.70795499060701, + 19.815683439239457 + ] + }, + "properties": { + "id": "meter-14477", + "maker": "Maker D", + "model": "Model 14477", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.0354314341469, + 28.286951569443247 + ] + }, + "properties": { + "id": "meter-14478", + "maker": "Maker E", + "model": "Model 14478", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.13366079861053, + 18.16303446440607 + ] + }, + "properties": { + "id": "meter-14479", + "maker": "Maker B", + "model": "Model 14479", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.3306815459701, + 31.277244408065258 + ] + }, + "properties": { + "id": "meter-14480", + "maker": "Maker B", + "model": "Model 14480", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.65422923253769, + 19.59378983444406 + ] + }, + "properties": { + "id": "meter-14481", + "maker": "Maker A", + "model": "Model 14481", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.624577493048854, + 31.32684764023538 + ] + }, + "properties": { + "id": "meter-14482", + "maker": "Maker B", + "model": "Model 14482", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.08639917984644, + 20.998469477645898 + ] + }, + "properties": { + "id": "meter-14483", + "maker": "Maker D", + "model": "Model 14483", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.43141283117944, + 21.8193567816571 + ] + }, + "properties": { + "id": "meter-14484", + "maker": "Maker J", + "model": "Model 14484", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.273866390695424, + 19.445460306965096 + ] + }, + "properties": { + "id": "meter-14485", + "maker": "Maker D", + "model": "Model 14485", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.64401768384194, + 22.46868012010252 + ] + }, + "properties": { + "id": "meter-14486", + "maker": "Maker J", + "model": "Model 14486", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.39885830627513, + 21.264170633833597 + ] + }, + "properties": { + "id": "meter-14487", + "maker": "Maker J", + "model": "Model 14487", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.76069105619436, + 22.536641343124494 + ] + }, + "properties": { + "id": "meter-14488", + "maker": "Maker A", + "model": "Model 14488", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.875517003653115, + 25.17109785606937 + ] + }, + "properties": { + "id": "meter-14489", + "maker": "Maker F", + "model": "Model 14489", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.48177491100001, + 27.280548071655467 + ] + }, + "properties": { + "id": "meter-14490", + "maker": "Maker F", + "model": "Model 14490", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.158134731946355, + 21.94091425663917 + ] + }, + "properties": { + "id": "meter-14491", + "maker": "Maker H", + "model": "Model 14491", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.42723386110704, + 30.41435810344845 + ] + }, + "properties": { + "id": "meter-14492", + "maker": "Maker E", + "model": "Model 14492", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0041084138913, + 29.12743058922423 + ] + }, + "properties": { + "id": "meter-14493", + "maker": "Maker D", + "model": "Model 14493", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.530506235623704, + 24.16120615397148 + ] + }, + "properties": { + "id": "meter-14494", + "maker": "Maker H", + "model": "Model 14494", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.11873119095946, + 20.199400465616684 + ] + }, + "properties": { + "id": "meter-14495", + "maker": "Maker E", + "model": "Model 14495", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.31802301256924, + 23.138463307536583 + ] + }, + "properties": { + "id": "meter-14496", + "maker": "Maker D", + "model": "Model 14496", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.828108708104146, + 26.272638084032714 + ] + }, + "properties": { + "id": "meter-14497", + "maker": "Maker C", + "model": "Model 14497", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81594765668704, + 22.252529367425506 + ] + }, + "properties": { + "id": "meter-14498", + "maker": "Maker G", + "model": "Model 14498", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.61386398286087, + 22.985710096851854 + ] + }, + "properties": { + "id": "meter-14499", + "maker": "Maker J", + "model": "Model 14499", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.846491927086, + 19.87842764212794 + ] + }, + "properties": { + "id": "meter-14500", + "maker": "Maker J", + "model": "Model 14500", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.097282529012276, + 25.54330588277788 + ] + }, + "properties": { + "id": "meter-14501", + "maker": "Maker C", + "model": "Model 14501", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.493695254963335, + 21.132326875221345 + ] + }, + "properties": { + "id": "meter-14502", + "maker": "Maker I", + "model": "Model 14502", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.89834899040635, + 21.795364255337383 + ] + }, + "properties": { + "id": "meter-14503", + "maker": "Maker G", + "model": "Model 14503", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.18810214192149, + 27.034927330191245 + ] + }, + "properties": { + "id": "meter-14504", + "maker": "Maker F", + "model": "Model 14504", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.62535808737138, + 17.51999442985503 + ] + }, + "properties": { + "id": "meter-14505", + "maker": "Maker C", + "model": "Model 14505", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.57807939389971, + 23.953500619653845 + ] + }, + "properties": { + "id": "meter-14506", + "maker": "Maker E", + "model": "Model 14506", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.1087864740365, + 27.912487861461905 + ] + }, + "properties": { + "id": "meter-14507", + "maker": "Maker G", + "model": "Model 14507", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.378361954601175, + 17.614717359287877 + ] + }, + "properties": { + "id": "meter-14508", + "maker": "Maker J", + "model": "Model 14508", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.95732209173427, + 28.389788030178263 + ] + }, + "properties": { + "id": "meter-14509", + "maker": "Maker A", + "model": "Model 14509", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.97056877569073, + 23.958473254877205 + ] + }, + "properties": { + "id": "meter-14510", + "maker": "Maker J", + "model": "Model 14510", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.900134784586726, + 24.040443108060103 + ] + }, + "properties": { + "id": "meter-14511", + "maker": "Maker C", + "model": "Model 14511", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.14143033552253, + 19.503046155646615 + ] + }, + "properties": { + "id": "meter-14512", + "maker": "Maker H", + "model": "Model 14512", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23771167492472, + 21.534096082942163 + ] + }, + "properties": { + "id": "meter-14513", + "maker": "Maker C", + "model": "Model 14513", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.80976661183528, + 22.60128635588994 + ] + }, + "properties": { + "id": "meter-14514", + "maker": "Maker H", + "model": "Model 14514", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.045679238629944, + 27.15973603793487 + ] + }, + "properties": { + "id": "meter-14515", + "maker": "Maker C", + "model": "Model 14515", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.55703578022256, + 26.93554746399129 + ] + }, + "properties": { + "id": "meter-14516", + "maker": "Maker C", + "model": "Model 14516", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.32455404398749, + 19.40871461856517 + ] + }, + "properties": { + "id": "meter-14517", + "maker": "Maker I", + "model": "Model 14517", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.84938506620934, + 23.472939289382545 + ] + }, + "properties": { + "id": "meter-14518", + "maker": "Maker A", + "model": "Model 14518", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.69696406444413, + 27.49508607264287 + ] + }, + "properties": { + "id": "meter-14519", + "maker": "Maker G", + "model": "Model 14519", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.29889976751306, + 21.438202353234693 + ] + }, + "properties": { + "id": "meter-14520", + "maker": "Maker J", + "model": "Model 14520", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.13946721517322, + 23.489956496933935 + ] + }, + "properties": { + "id": "meter-14521", + "maker": "Maker C", + "model": "Model 14521", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.030703486927955, + 18.102501489765675 + ] + }, + "properties": { + "id": "meter-14522", + "maker": "Maker G", + "model": "Model 14522", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.433701116044126, + 29.49360910564107 + ] + }, + "properties": { + "id": "meter-14523", + "maker": "Maker F", + "model": "Model 14523", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.95139508200762, + 30.32252170419398 + ] + }, + "properties": { + "id": "meter-14524", + "maker": "Maker E", + "model": "Model 14524", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.92714980958097, + 20.061517673392018 + ] + }, + "properties": { + "id": "meter-14525", + "maker": "Maker C", + "model": "Model 14525", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.8878696795355, + 21.781889358442644 + ] + }, + "properties": { + "id": "meter-14526", + "maker": "Maker D", + "model": "Model 14526", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.23633691275931, + 23.98023390526112 + ] + }, + "properties": { + "id": "meter-14527", + "maker": "Maker E", + "model": "Model 14527", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.85927942247008, + 21.765368072791563 + ] + }, + "properties": { + "id": "meter-14528", + "maker": "Maker H", + "model": "Model 14528", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.32936178287201, + 27.243246125747376 + ] + }, + "properties": { + "id": "meter-14529", + "maker": "Maker H", + "model": "Model 14529", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.83615265391086, + 19.491151281254837 + ] + }, + "properties": { + "id": "meter-14530", + "maker": "Maker J", + "model": "Model 14530", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.82197626154554, + 18.070890854550903 + ] + }, + "properties": { + "id": "meter-14531", + "maker": "Maker F", + "model": "Model 14531", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.903458175367874, + 17.950979581835483 + ] + }, + "properties": { + "id": "meter-14532", + "maker": "Maker H", + "model": "Model 14532", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.908045531675334, + 22.987576988949908 + ] + }, + "properties": { + "id": "meter-14533", + "maker": "Maker H", + "model": "Model 14533", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.012209577915144, + 28.936453387925102 + ] + }, + "properties": { + "id": "meter-14534", + "maker": "Maker H", + "model": "Model 14534", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.479731004347414, + 18.616126822232943 + ] + }, + "properties": { + "id": "meter-14535", + "maker": "Maker E", + "model": "Model 14535", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.56775045834429, + 17.014042616334777 + ] + }, + "properties": { + "id": "meter-14536", + "maker": "Maker E", + "model": "Model 14536", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.84380879944449, + 20.883286973130268 + ] + }, + "properties": { + "id": "meter-14537", + "maker": "Maker F", + "model": "Model 14537", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54947706273428, + 24.275007704701316 + ] + }, + "properties": { + "id": "meter-14538", + "maker": "Maker B", + "model": "Model 14538", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.838848494487046, + 20.708946130408556 + ] + }, + "properties": { + "id": "meter-14539", + "maker": "Maker H", + "model": "Model 14539", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.01901886107728, + 26.677506510035617 + ] + }, + "properties": { + "id": "meter-14540", + "maker": "Maker F", + "model": "Model 14540", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.41401426624497, + 20.26406429492171 + ] + }, + "properties": { + "id": "meter-14541", + "maker": "Maker F", + "model": "Model 14541", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.32064278003277, + 22.396461748781526 + ] + }, + "properties": { + "id": "meter-14542", + "maker": "Maker F", + "model": "Model 14542", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.0400834638063, + 19.60303639476154 + ] + }, + "properties": { + "id": "meter-14543", + "maker": "Maker F", + "model": "Model 14543", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.336071046240576, + 28.13056850566045 + ] + }, + "properties": { + "id": "meter-14544", + "maker": "Maker C", + "model": "Model 14544", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.69272235414205, + 27.138099933183213 + ] + }, + "properties": { + "id": "meter-14545", + "maker": "Maker F", + "model": "Model 14545", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.47382664763361, + 18.967058284078334 + ] + }, + "properties": { + "id": "meter-14546", + "maker": "Maker J", + "model": "Model 14546", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.26153955353659, + 21.11311756365396 + ] + }, + "properties": { + "id": "meter-14547", + "maker": "Maker H", + "model": "Model 14547", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.16998128957895, + 21.393637248245152 + ] + }, + "properties": { + "id": "meter-14548", + "maker": "Maker H", + "model": "Model 14548", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.0561519992458, + 20.37992870016093 + ] + }, + "properties": { + "id": "meter-14549", + "maker": "Maker E", + "model": "Model 14549", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.275046641983366, + 27.986552781131415 + ] + }, + "properties": { + "id": "meter-14550", + "maker": "Maker D", + "model": "Model 14550", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.21638479445566, + 23.864362266227953 + ] + }, + "properties": { + "id": "meter-14551", + "maker": "Maker I", + "model": "Model 14551", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.543141027411295, + 29.53507515061039 + ] + }, + "properties": { + "id": "meter-14552", + "maker": "Maker C", + "model": "Model 14552", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.643901555236226, + 28.849416539284967 + ] + }, + "properties": { + "id": "meter-14553", + "maker": "Maker C", + "model": "Model 14553", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.523461869488045, + 21.955223857582524 + ] + }, + "properties": { + "id": "meter-14554", + "maker": "Maker C", + "model": "Model 14554", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.68063889093387, + 31.047280971876297 + ] + }, + "properties": { + "id": "meter-14555", + "maker": "Maker J", + "model": "Model 14555", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.12350808317396, + 22.392987191498367 + ] + }, + "properties": { + "id": "meter-14556", + "maker": "Maker D", + "model": "Model 14556", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.86065045871894, + 22.72618342218963 + ] + }, + "properties": { + "id": "meter-14557", + "maker": "Maker D", + "model": "Model 14557", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.74505332445895, + 27.11546458109802 + ] + }, + "properties": { + "id": "meter-14558", + "maker": "Maker I", + "model": "Model 14558", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.7905002462775, + 27.57422990010174 + ] + }, + "properties": { + "id": "meter-14559", + "maker": "Maker C", + "model": "Model 14559", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.08872609539348, + 26.901821179418697 + ] + }, + "properties": { + "id": "meter-14560", + "maker": "Maker A", + "model": "Model 14560", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.57836743205783, + 20.36550165798937 + ] + }, + "properties": { + "id": "meter-14561", + "maker": "Maker I", + "model": "Model 14561", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.76805107836514, + 27.64678011709929 + ] + }, + "properties": { + "id": "meter-14562", + "maker": "Maker E", + "model": "Model 14562", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.27320124301951, + 22.066123136068736 + ] + }, + "properties": { + "id": "meter-14563", + "maker": "Maker F", + "model": "Model 14563", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.426712108706006, + 28.701138574645576 + ] + }, + "properties": { + "id": "meter-14564", + "maker": "Maker J", + "model": "Model 14564", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70171230510688, + 24.659561271920808 + ] + }, + "properties": { + "id": "meter-14565", + "maker": "Maker I", + "model": "Model 14565", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.531393012163825, + 25.522610053154526 + ] + }, + "properties": { + "id": "meter-14566", + "maker": "Maker H", + "model": "Model 14566", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.81178189826012, + 19.174621132982992 + ] + }, + "properties": { + "id": "meter-14567", + "maker": "Maker C", + "model": "Model 14567", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.88244294476971, + 23.20646020110496 + ] + }, + "properties": { + "id": "meter-14568", + "maker": "Maker C", + "model": "Model 14568", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.299916317938916, + 26.495756988437456 + ] + }, + "properties": { + "id": "meter-14569", + "maker": "Maker A", + "model": "Model 14569", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.92396837632206, + 26.269650191154952 + ] + }, + "properties": { + "id": "meter-14570", + "maker": "Maker G", + "model": "Model 14570", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.03810080290597, + 25.28842862236682 + ] + }, + "properties": { + "id": "meter-14571", + "maker": "Maker G", + "model": "Model 14571", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.76405288705613, + 24.114791157123868 + ] + }, + "properties": { + "id": "meter-14572", + "maker": "Maker F", + "model": "Model 14572", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.6039753667577, + 22.337988519033203 + ] + }, + "properties": { + "id": "meter-14573", + "maker": "Maker F", + "model": "Model 14573", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.97099676455159, + 30.189117868280377 + ] + }, + "properties": { + "id": "meter-14574", + "maker": "Maker D", + "model": "Model 14574", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.810078002717816, + 19.607285700539833 + ] + }, + "properties": { + "id": "meter-14575", + "maker": "Maker I", + "model": "Model 14575", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.567731690402496, + 24.878657227085824 + ] + }, + "properties": { + "id": "meter-14576", + "maker": "Maker H", + "model": "Model 14576", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.6967937222476, + 23.856006747773574 + ] + }, + "properties": { + "id": "meter-14577", + "maker": "Maker A", + "model": "Model 14577", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.903718930456684, + 18.213650012980736 + ] + }, + "properties": { + "id": "meter-14578", + "maker": "Maker E", + "model": "Model 14578", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.42026461958485, + 17.728616902104417 + ] + }, + "properties": { + "id": "meter-14579", + "maker": "Maker B", + "model": "Model 14579", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.954054235091704, + 26.558732449918757 + ] + }, + "properties": { + "id": "meter-14580", + "maker": "Maker A", + "model": "Model 14580", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.984319285841444, + 26.952405301112975 + ] + }, + "properties": { + "id": "meter-14581", + "maker": "Maker B", + "model": "Model 14581", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.854376091260484, + 27.45837307978826 + ] + }, + "properties": { + "id": "meter-14582", + "maker": "Maker D", + "model": "Model 14582", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.46430334351541, + 24.99733719979989 + ] + }, + "properties": { + "id": "meter-14583", + "maker": "Maker F", + "model": "Model 14583", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.41702569656096, + 19.489764876629987 + ] + }, + "properties": { + "id": "meter-14584", + "maker": "Maker H", + "model": "Model 14584", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.947381933828574, + 22.115240882137 + ] + }, + "properties": { + "id": "meter-14585", + "maker": "Maker I", + "model": "Model 14585", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.92979129792648, + 18.841445076712247 + ] + }, + "properties": { + "id": "meter-14586", + "maker": "Maker F", + "model": "Model 14586", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.03910828034092, + 21.720175131657225 + ] + }, + "properties": { + "id": "meter-14587", + "maker": "Maker J", + "model": "Model 14587", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.34898118445838, + 19.33537506126664 + ] + }, + "properties": { + "id": "meter-14588", + "maker": "Maker A", + "model": "Model 14588", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.51203988271067, + 21.197758677935397 + ] + }, + "properties": { + "id": "meter-14589", + "maker": "Maker E", + "model": "Model 14589", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.862447985622126, + 19.94471659314448 + ] + }, + "properties": { + "id": "meter-14590", + "maker": "Maker G", + "model": "Model 14590", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.85202296984729, + 20.706402717327492 + ] + }, + "properties": { + "id": "meter-14591", + "maker": "Maker E", + "model": "Model 14591", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19633611892856, + 26.251656544627927 + ] + }, + "properties": { + "id": "meter-14592", + "maker": "Maker I", + "model": "Model 14592", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.82138243444291, + 21.75101439180822 + ] + }, + "properties": { + "id": "meter-14593", + "maker": "Maker J", + "model": "Model 14593", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.440326107848044, + 29.113022372930722 + ] + }, + "properties": { + "id": "meter-14594", + "maker": "Maker E", + "model": "Model 14594", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.9558902491083, + 21.979564054297782 + ] + }, + "properties": { + "id": "meter-14595", + "maker": "Maker B", + "model": "Model 14595", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.74291678537959, + 28.58776073370724 + ] + }, + "properties": { + "id": "meter-14596", + "maker": "Maker A", + "model": "Model 14596", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.70207989268231, + 25.10460963346282 + ] + }, + "properties": { + "id": "meter-14597", + "maker": "Maker D", + "model": "Model 14597", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.547978441144, + 20.06247661163387 + ] + }, + "properties": { + "id": "meter-14598", + "maker": "Maker B", + "model": "Model 14598", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.535313705578616, + 21.797319475045423 + ] + }, + "properties": { + "id": "meter-14599", + "maker": "Maker J", + "model": "Model 14599", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.46678483372911, + 24.040945755048373 + ] + }, + "properties": { + "id": "meter-14600", + "maker": "Maker G", + "model": "Model 14600", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.86994383774025, + 17.54200872643936 + ] + }, + "properties": { + "id": "meter-14601", + "maker": "Maker D", + "model": "Model 14601", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.725258357039785, + 27.711027582006146 + ] + }, + "properties": { + "id": "meter-14602", + "maker": "Maker F", + "model": "Model 14602", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.647023858814244, + 21.099022384490134 + ] + }, + "properties": { + "id": "meter-14603", + "maker": "Maker D", + "model": "Model 14603", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.99218701539978, + 28.449800944545242 + ] + }, + "properties": { + "id": "meter-14604", + "maker": "Maker E", + "model": "Model 14604", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.05716498474733, + 22.409603997560026 + ] + }, + "properties": { + "id": "meter-14605", + "maker": "Maker E", + "model": "Model 14605", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.99064056936683, + 20.19721932570361 + ] + }, + "properties": { + "id": "meter-14606", + "maker": "Maker B", + "model": "Model 14606", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.57207256570796, + 23.432177757473468 + ] + }, + "properties": { + "id": "meter-14607", + "maker": "Maker E", + "model": "Model 14607", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.47063679461398, + 24.518690206132003 + ] + }, + "properties": { + "id": "meter-14608", + "maker": "Maker A", + "model": "Model 14608", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.18620298436753, + 20.000047873015056 + ] + }, + "properties": { + "id": "meter-14609", + "maker": "Maker D", + "model": "Model 14609", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.39790776385858, + 23.41420619943785 + ] + }, + "properties": { + "id": "meter-14610", + "maker": "Maker C", + "model": "Model 14610", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.72791342737241, + 26.202909821843548 + ] + }, + "properties": { + "id": "meter-14611", + "maker": "Maker F", + "model": "Model 14611", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.62545887420137, + 21.51063626824928 + ] + }, + "properties": { + "id": "meter-14612", + "maker": "Maker A", + "model": "Model 14612", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.89134223108472, + 21.158978150031835 + ] + }, + "properties": { + "id": "meter-14613", + "maker": "Maker C", + "model": "Model 14613", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.912470172019255, + 25.7026821568212 + ] + }, + "properties": { + "id": "meter-14614", + "maker": "Maker H", + "model": "Model 14614", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.16891285929834, + 24.830373898824668 + ] + }, + "properties": { + "id": "meter-14615", + "maker": "Maker G", + "model": "Model 14615", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.760673813212385, + 19.738620182889264 + ] + }, + "properties": { + "id": "meter-14616", + "maker": "Maker F", + "model": "Model 14616", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.88638266988325, + 18.153248919224204 + ] + }, + "properties": { + "id": "meter-14617", + "maker": "Maker H", + "model": "Model 14617", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.103188992337444, + 23.04874275246666 + ] + }, + "properties": { + "id": "meter-14618", + "maker": "Maker H", + "model": "Model 14618", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.1876967286006, + 20.270270781749087 + ] + }, + "properties": { + "id": "meter-14619", + "maker": "Maker G", + "model": "Model 14619", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.373061458186484, + 21.093460157133848 + ] + }, + "properties": { + "id": "meter-14620", + "maker": "Maker E", + "model": "Model 14620", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.080160148807735, + 18.030969661588166 + ] + }, + "properties": { + "id": "meter-14621", + "maker": "Maker F", + "model": "Model 14621", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.511228162945564, + 21.0570766755797 + ] + }, + "properties": { + "id": "meter-14622", + "maker": "Maker D", + "model": "Model 14622", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.98535694478747, + 18.850005069973328 + ] + }, + "properties": { + "id": "meter-14623", + "maker": "Maker J", + "model": "Model 14623", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.47731336734516, + 18.799165275246054 + ] + }, + "properties": { + "id": "meter-14624", + "maker": "Maker D", + "model": "Model 14624", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.13248515794779, + 28.82283316912082 + ] + }, + "properties": { + "id": "meter-14625", + "maker": "Maker I", + "model": "Model 14625", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.41548092116187, + 30.051078618408738 + ] + }, + "properties": { + "id": "meter-14626", + "maker": "Maker G", + "model": "Model 14626", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.093319637343065, + 25.333081034501767 + ] + }, + "properties": { + "id": "meter-14627", + "maker": "Maker H", + "model": "Model 14627", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.8688617781867, + 21.650789941098896 + ] + }, + "properties": { + "id": "meter-14628", + "maker": "Maker J", + "model": "Model 14628", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.27453898226671, + 20.702105590741297 + ] + }, + "properties": { + "id": "meter-14629", + "maker": "Maker D", + "model": "Model 14629", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.859330346038455, + 26.891932437156704 + ] + }, + "properties": { + "id": "meter-14630", + "maker": "Maker C", + "model": "Model 14630", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.07308428835476, + 21.89316037159145 + ] + }, + "properties": { + "id": "meter-14631", + "maker": "Maker G", + "model": "Model 14631", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.8034686460839, + 27.720154839358372 + ] + }, + "properties": { + "id": "meter-14632", + "maker": "Maker B", + "model": "Model 14632", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.57930594992268, + 24.700255012390844 + ] + }, + "properties": { + "id": "meter-14633", + "maker": "Maker A", + "model": "Model 14633", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.499390697076024, + 18.64148618234134 + ] + }, + "properties": { + "id": "meter-14634", + "maker": "Maker E", + "model": "Model 14634", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.44610388975661, + 26.341416956518056 + ] + }, + "properties": { + "id": "meter-14635", + "maker": "Maker E", + "model": "Model 14635", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87172183494606, + 19.6329072832149 + ] + }, + "properties": { + "id": "meter-14636", + "maker": "Maker C", + "model": "Model 14636", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.99177170273166, + 29.723339190634242 + ] + }, + "properties": { + "id": "meter-14637", + "maker": "Maker E", + "model": "Model 14637", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.531069523965655, + 23.175766212137027 + ] + }, + "properties": { + "id": "meter-14638", + "maker": "Maker E", + "model": "Model 14638", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.27265826220501, + 22.56028912424916 + ] + }, + "properties": { + "id": "meter-14639", + "maker": "Maker H", + "model": "Model 14639", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.2042825707171, + 24.504585116596147 + ] + }, + "properties": { + "id": "meter-14640", + "maker": "Maker J", + "model": "Model 14640", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.90214607828007, + 22.492800663646186 + ] + }, + "properties": { + "id": "meter-14641", + "maker": "Maker F", + "model": "Model 14641", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.88462232702972, + 28.588104274133443 + ] + }, + "properties": { + "id": "meter-14642", + "maker": "Maker D", + "model": "Model 14642", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.23586450567471, + 25.6084359406466 + ] + }, + "properties": { + "id": "meter-14643", + "maker": "Maker B", + "model": "Model 14643", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.3975904909907, + 28.63666148054099 + ] + }, + "properties": { + "id": "meter-14644", + "maker": "Maker E", + "model": "Model 14644", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.64490643543739, + 22.1371061708371 + ] + }, + "properties": { + "id": "meter-14645", + "maker": "Maker H", + "model": "Model 14645", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.651557430928506, + 24.4535940989672 + ] + }, + "properties": { + "id": "meter-14646", + "maker": "Maker C", + "model": "Model 14646", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.11906053835436, + 24.44720473324051 + ] + }, + "properties": { + "id": "meter-14647", + "maker": "Maker J", + "model": "Model 14647", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.069276192830365, + 19.410449342129006 + ] + }, + "properties": { + "id": "meter-14648", + "maker": "Maker B", + "model": "Model 14648", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.611071811759054, + 27.073682410566462 + ] + }, + "properties": { + "id": "meter-14649", + "maker": "Maker E", + "model": "Model 14649", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.50499852841193, + 20.61933679237877 + ] + }, + "properties": { + "id": "meter-14650", + "maker": "Maker E", + "model": "Model 14650", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.44230631179393, + 24.272552678224095 + ] + }, + "properties": { + "id": "meter-14651", + "maker": "Maker A", + "model": "Model 14651", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.5356698165954, + 20.749554876833425 + ] + }, + "properties": { + "id": "meter-14652", + "maker": "Maker H", + "model": "Model 14652", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.326360751219354, + 26.172200481227932 + ] + }, + "properties": { + "id": "meter-14653", + "maker": "Maker D", + "model": "Model 14653", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.411696269917556, + 23.85612071472186 + ] + }, + "properties": { + "id": "meter-14654", + "maker": "Maker J", + "model": "Model 14654", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.744126910148836, + 27.424669747977887 + ] + }, + "properties": { + "id": "meter-14655", + "maker": "Maker G", + "model": "Model 14655", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.26392655662482, + 20.236491811023992 + ] + }, + "properties": { + "id": "meter-14656", + "maker": "Maker F", + "model": "Model 14656", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.80080886247766, + 22.441656933950227 + ] + }, + "properties": { + "id": "meter-14657", + "maker": "Maker F", + "model": "Model 14657", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.72301726740101, + 23.764842928706823 + ] + }, + "properties": { + "id": "meter-14658", + "maker": "Maker C", + "model": "Model 14658", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.532781200968394, + 25.351876528660952 + ] + }, + "properties": { + "id": "meter-14659", + "maker": "Maker D", + "model": "Model 14659", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92080733875244, + 26.74705890698342 + ] + }, + "properties": { + "id": "meter-14660", + "maker": "Maker I", + "model": "Model 14660", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.21832080665637, + 28.228470082781946 + ] + }, + "properties": { + "id": "meter-14661", + "maker": "Maker B", + "model": "Model 14661", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.784487580972154, + 25.27641349914065 + ] + }, + "properties": { + "id": "meter-14662", + "maker": "Maker C", + "model": "Model 14662", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.987261963704256, + 25.200652019727734 + ] + }, + "properties": { + "id": "meter-14663", + "maker": "Maker E", + "model": "Model 14663", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.79147915366663, + 24.07278220197344 + ] + }, + "properties": { + "id": "meter-14664", + "maker": "Maker E", + "model": "Model 14664", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.96872779162997, + 26.426877342896812 + ] + }, + "properties": { + "id": "meter-14665", + "maker": "Maker E", + "model": "Model 14665", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.22578160770476, + 23.76603483328143 + ] + }, + "properties": { + "id": "meter-14666", + "maker": "Maker G", + "model": "Model 14666", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.119739103987115, + 19.834526530030708 + ] + }, + "properties": { + "id": "meter-14667", + "maker": "Maker B", + "model": "Model 14667", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55208117774788, + 26.140351063212435 + ] + }, + "properties": { + "id": "meter-14668", + "maker": "Maker F", + "model": "Model 14668", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.199681891292656, + 27.922478783151888 + ] + }, + "properties": { + "id": "meter-14669", + "maker": "Maker H", + "model": "Model 14669", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.667559138799334, + 22.642652391963537 + ] + }, + "properties": { + "id": "meter-14670", + "maker": "Maker B", + "model": "Model 14670", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.00141724907608, + 22.834578737350583 + ] + }, + "properties": { + "id": "meter-14671", + "maker": "Maker B", + "model": "Model 14671", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.32161909535765, + 22.422041966960315 + ] + }, + "properties": { + "id": "meter-14672", + "maker": "Maker C", + "model": "Model 14672", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.93390698555025, + 19.406202946378343 + ] + }, + "properties": { + "id": "meter-14673", + "maker": "Maker H", + "model": "Model 14673", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.65639559551664, + 30.656064876809687 + ] + }, + "properties": { + "id": "meter-14674", + "maker": "Maker J", + "model": "Model 14674", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.462179281245035, + 23.795714876622547 + ] + }, + "properties": { + "id": "meter-14675", + "maker": "Maker F", + "model": "Model 14675", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.14427428828667, + 28.954423216585955 + ] + }, + "properties": { + "id": "meter-14676", + "maker": "Maker E", + "model": "Model 14676", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.66572981432404, + 26.271378879240324 + ] + }, + "properties": { + "id": "meter-14677", + "maker": "Maker D", + "model": "Model 14677", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.80517568679302, + 22.284572220851732 + ] + }, + "properties": { + "id": "meter-14678", + "maker": "Maker C", + "model": "Model 14678", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.08245711087598, + 23.599604755855463 + ] + }, + "properties": { + "id": "meter-14679", + "maker": "Maker B", + "model": "Model 14679", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.563203626094364, + 22.727736258658418 + ] + }, + "properties": { + "id": "meter-14680", + "maker": "Maker A", + "model": "Model 14680", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.988210958595985, + 27.41544430336355 + ] + }, + "properties": { + "id": "meter-14681", + "maker": "Maker I", + "model": "Model 14681", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.98893007546157, + 28.443397469256187 + ] + }, + "properties": { + "id": "meter-14682", + "maker": "Maker C", + "model": "Model 14682", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.20273429992369, + 20.56332915511763 + ] + }, + "properties": { + "id": "meter-14683", + "maker": "Maker E", + "model": "Model 14683", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.03766297824912, + 18.632313003102027 + ] + }, + "properties": { + "id": "meter-14684", + "maker": "Maker J", + "model": "Model 14684", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11010749402925, + 26.42720510432687 + ] + }, + "properties": { + "id": "meter-14685", + "maker": "Maker G", + "model": "Model 14685", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.77667862339505, + 19.724095170853587 + ] + }, + "properties": { + "id": "meter-14686", + "maker": "Maker G", + "model": "Model 14686", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.820042460964636, + 24.15097696881948 + ] + }, + "properties": { + "id": "meter-14687", + "maker": "Maker J", + "model": "Model 14687", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.963804923717476, + 22.029039826374305 + ] + }, + "properties": { + "id": "meter-14688", + "maker": "Maker J", + "model": "Model 14688", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.272368878678336, + 29.627212617688603 + ] + }, + "properties": { + "id": "meter-14689", + "maker": "Maker A", + "model": "Model 14689", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.96441456928443, + 20.779664412145216 + ] + }, + "properties": { + "id": "meter-14690", + "maker": "Maker B", + "model": "Model 14690", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.3619955984783, + 24.179897778225506 + ] + }, + "properties": { + "id": "meter-14691", + "maker": "Maker B", + "model": "Model 14691", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.432714065335745, + 19.83980034970206 + ] + }, + "properties": { + "id": "meter-14692", + "maker": "Maker B", + "model": "Model 14692", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.04440075724444, + 26.1960732329175 + ] + }, + "properties": { + "id": "meter-14693", + "maker": "Maker C", + "model": "Model 14693", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08430149545314, + 29.03706758884127 + ] + }, + "properties": { + "id": "meter-14694", + "maker": "Maker E", + "model": "Model 14694", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.33290584488703, + 25.815342479053296 + ] + }, + "properties": { + "id": "meter-14695", + "maker": "Maker H", + "model": "Model 14695", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.19260653105669, + 24.59227363933192 + ] + }, + "properties": { + "id": "meter-14696", + "maker": "Maker F", + "model": "Model 14696", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.34069183545863, + 27.002447784388778 + ] + }, + "properties": { + "id": "meter-14697", + "maker": "Maker C", + "model": "Model 14697", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.88660009558105, + 18.821958379626377 + ] + }, + "properties": { + "id": "meter-14698", + "maker": "Maker B", + "model": "Model 14698", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.877533003698225, + 26.25407554228341 + ] + }, + "properties": { + "id": "meter-14699", + "maker": "Maker E", + "model": "Model 14699", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20777245531987, + 21.06072594750959 + ] + }, + "properties": { + "id": "meter-14700", + "maker": "Maker J", + "model": "Model 14700", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.67893777559877, + 22.338220733808477 + ] + }, + "properties": { + "id": "meter-14701", + "maker": "Maker I", + "model": "Model 14701", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.11237361807902, + 26.156874517751735 + ] + }, + "properties": { + "id": "meter-14702", + "maker": "Maker I", + "model": "Model 14702", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.92469493181517, + 19.28247462476083 + ] + }, + "properties": { + "id": "meter-14703", + "maker": "Maker J", + "model": "Model 14703", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.186103479246995, + 21.147394983513788 + ] + }, + "properties": { + "id": "meter-14704", + "maker": "Maker C", + "model": "Model 14704", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.987809894113674, + 17.39557083113348 + ] + }, + "properties": { + "id": "meter-14705", + "maker": "Maker H", + "model": "Model 14705", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.49044039223748, + 28.021164732807776 + ] + }, + "properties": { + "id": "meter-14706", + "maker": "Maker C", + "model": "Model 14706", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.16957752657184, + 25.65709562157284 + ] + }, + "properties": { + "id": "meter-14707", + "maker": "Maker F", + "model": "Model 14707", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.88186562513273, + 28.20038330578753 + ] + }, + "properties": { + "id": "meter-14708", + "maker": "Maker D", + "model": "Model 14708", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.30426412166125, + 25.300287614602368 + ] + }, + "properties": { + "id": "meter-14709", + "maker": "Maker A", + "model": "Model 14709", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.176490195421884, + 22.537519695391836 + ] + }, + "properties": { + "id": "meter-14710", + "maker": "Maker C", + "model": "Model 14710", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.32700843713283, + 23.541941039461815 + ] + }, + "properties": { + "id": "meter-14711", + "maker": "Maker C", + "model": "Model 14711", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.89455577469399, + 28.183229404414227 + ] + }, + "properties": { + "id": "meter-14712", + "maker": "Maker B", + "model": "Model 14712", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.06467748449579, + 28.210621402600744 + ] + }, + "properties": { + "id": "meter-14713", + "maker": "Maker A", + "model": "Model 14713", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.807961472726895, + 27.087571435603735 + ] + }, + "properties": { + "id": "meter-14714", + "maker": "Maker C", + "model": "Model 14714", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20170959654543, + 21.526324792576396 + ] + }, + "properties": { + "id": "meter-14715", + "maker": "Maker D", + "model": "Model 14715", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.01578559738872, + 28.711487696712695 + ] + }, + "properties": { + "id": "meter-14716", + "maker": "Maker D", + "model": "Model 14716", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.76920810443369, + 20.403656475578885 + ] + }, + "properties": { + "id": "meter-14717", + "maker": "Maker G", + "model": "Model 14717", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.1370205822937, + 25.579659002274344 + ] + }, + "properties": { + "id": "meter-14718", + "maker": "Maker H", + "model": "Model 14718", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.53505400477283, + 25.797277565861485 + ] + }, + "properties": { + "id": "meter-14719", + "maker": "Maker C", + "model": "Model 14719", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.60117276907246, + 29.808729355025278 + ] + }, + "properties": { + "id": "meter-14720", + "maker": "Maker G", + "model": "Model 14720", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.531483803207436, + 23.402376155765698 + ] + }, + "properties": { + "id": "meter-14721", + "maker": "Maker C", + "model": "Model 14721", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.384635951275456, + 31.037559928052687 + ] + }, + "properties": { + "id": "meter-14722", + "maker": "Maker I", + "model": "Model 14722", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.96420097621532, + 29.880782001079258 + ] + }, + "properties": { + "id": "meter-14723", + "maker": "Maker E", + "model": "Model 14723", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.53796518936013, + 24.696756903777 + ] + }, + "properties": { + "id": "meter-14724", + "maker": "Maker J", + "model": "Model 14724", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.639654270923295, + 25.25321493857033 + ] + }, + "properties": { + "id": "meter-14725", + "maker": "Maker I", + "model": "Model 14725", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.96009565953218, + 25.55324306797297 + ] + }, + "properties": { + "id": "meter-14726", + "maker": "Maker B", + "model": "Model 14726", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.606584135442056, + 26.854650456300213 + ] + }, + "properties": { + "id": "meter-14727", + "maker": "Maker J", + "model": "Model 14727", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.27125112346186, + 19.597106107215346 + ] + }, + "properties": { + "id": "meter-14728", + "maker": "Maker D", + "model": "Model 14728", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.54448528597912, + 25.170780699869326 + ] + }, + "properties": { + "id": "meter-14729", + "maker": "Maker C", + "model": "Model 14729", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.96588154378104, + 20.928330104266664 + ] + }, + "properties": { + "id": "meter-14730", + "maker": "Maker H", + "model": "Model 14730", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.83861364114962, + 22.39752796879813 + ] + }, + "properties": { + "id": "meter-14731", + "maker": "Maker E", + "model": "Model 14731", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.785745753996466, + 24.6912888665184 + ] + }, + "properties": { + "id": "meter-14732", + "maker": "Maker E", + "model": "Model 14732", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.779065307169844, + 30.667132343274204 + ] + }, + "properties": { + "id": "meter-14733", + "maker": "Maker I", + "model": "Model 14733", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.68693196980913, + 22.79615913229417 + ] + }, + "properties": { + "id": "meter-14734", + "maker": "Maker E", + "model": "Model 14734", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.98417226773576, + 18.68756733685911 + ] + }, + "properties": { + "id": "meter-14735", + "maker": "Maker F", + "model": "Model 14735", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.663011979556074, + 22.80570116414816 + ] + }, + "properties": { + "id": "meter-14736", + "maker": "Maker A", + "model": "Model 14736", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.139476856837646, + 20.872767728407315 + ] + }, + "properties": { + "id": "meter-14737", + "maker": "Maker I", + "model": "Model 14737", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.34133716121997, + 21.967990034268013 + ] + }, + "properties": { + "id": "meter-14738", + "maker": "Maker B", + "model": "Model 14738", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.230921864764994, + 18.2092012533217 + ] + }, + "properties": { + "id": "meter-14739", + "maker": "Maker A", + "model": "Model 14739", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.6022734722655, + 18.578346412006066 + ] + }, + "properties": { + "id": "meter-14740", + "maker": "Maker D", + "model": "Model 14740", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.8944590232997, + 27.991305084124026 + ] + }, + "properties": { + "id": "meter-14741", + "maker": "Maker F", + "model": "Model 14741", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.934288975628974, + 17.745056947461595 + ] + }, + "properties": { + "id": "meter-14742", + "maker": "Maker A", + "model": "Model 14742", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.42764332591647, + 24.506028977787306 + ] + }, + "properties": { + "id": "meter-14743", + "maker": "Maker J", + "model": "Model 14743", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.53986269842537, + 22.665027574979185 + ] + }, + "properties": { + "id": "meter-14744", + "maker": "Maker E", + "model": "Model 14744", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68546970349091, + 26.017337078289025 + ] + }, + "properties": { + "id": "meter-14745", + "maker": "Maker A", + "model": "Model 14745", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.195077467169654, + 27.864163950297083 + ] + }, + "properties": { + "id": "meter-14746", + "maker": "Maker E", + "model": "Model 14746", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.53170392360626, + 29.492783334898142 + ] + }, + "properties": { + "id": "meter-14747", + "maker": "Maker B", + "model": "Model 14747", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.67258925876505, + 21.04510498980855 + ] + }, + "properties": { + "id": "meter-14748", + "maker": "Maker E", + "model": "Model 14748", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.910518970808916, + 29.32359170450572 + ] + }, + "properties": { + "id": "meter-14749", + "maker": "Maker D", + "model": "Model 14749", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.322500286019554, + 22.00358642769894 + ] + }, + "properties": { + "id": "meter-14750", + "maker": "Maker B", + "model": "Model 14750", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.51242161948309, + 25.79541246197173 + ] + }, + "properties": { + "id": "meter-14751", + "maker": "Maker H", + "model": "Model 14751", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.196913653194336, + 21.161709420134052 + ] + }, + "properties": { + "id": "meter-14752", + "maker": "Maker B", + "model": "Model 14752", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.55014835910631, + 28.8216587681356 + ] + }, + "properties": { + "id": "meter-14753", + "maker": "Maker H", + "model": "Model 14753", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.66001570777891, + 24.60018292033408 + ] + }, + "properties": { + "id": "meter-14754", + "maker": "Maker C", + "model": "Model 14754", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.50530615797325, + 25.877478617894315 + ] + }, + "properties": { + "id": "meter-14755", + "maker": "Maker G", + "model": "Model 14755", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.38578319123468, + 23.392402045084445 + ] + }, + "properties": { + "id": "meter-14756", + "maker": "Maker C", + "model": "Model 14756", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04204823228397, + 26.244904609494387 + ] + }, + "properties": { + "id": "meter-14757", + "maker": "Maker I", + "model": "Model 14757", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9270012349317, + 30.542064354489785 + ] + }, + "properties": { + "id": "meter-14758", + "maker": "Maker J", + "model": "Model 14758", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.68712093194583, + 27.532282880040526 + ] + }, + "properties": { + "id": "meter-14759", + "maker": "Maker H", + "model": "Model 14759", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.376926425211366, + 20.44099932942351 + ] + }, + "properties": { + "id": "meter-14760", + "maker": "Maker G", + "model": "Model 14760", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.37644235352737, + 24.775860444406156 + ] + }, + "properties": { + "id": "meter-14761", + "maker": "Maker J", + "model": "Model 14761", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.95575170615729, + 25.192360764383842 + ] + }, + "properties": { + "id": "meter-14762", + "maker": "Maker F", + "model": "Model 14762", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.432027642853825, + 29.42278715339725 + ] + }, + "properties": { + "id": "meter-14763", + "maker": "Maker B", + "model": "Model 14763", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.05141510599565, + 22.909926042859208 + ] + }, + "properties": { + "id": "meter-14764", + "maker": "Maker A", + "model": "Model 14764", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.36543627099171, + 20.440521134861264 + ] + }, + "properties": { + "id": "meter-14765", + "maker": "Maker B", + "model": "Model 14765", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.15520060691338, + 23.65630771890152 + ] + }, + "properties": { + "id": "meter-14766", + "maker": "Maker D", + "model": "Model 14766", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.345378372235615, + 24.555667884266736 + ] + }, + "properties": { + "id": "meter-14767", + "maker": "Maker I", + "model": "Model 14767", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.5015782288839, + 18.337919332032882 + ] + }, + "properties": { + "id": "meter-14768", + "maker": "Maker A", + "model": "Model 14768", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.695823078215035, + 24.69528205465253 + ] + }, + "properties": { + "id": "meter-14769", + "maker": "Maker E", + "model": "Model 14769", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.940140989516905, + 26.756911861850256 + ] + }, + "properties": { + "id": "meter-14770", + "maker": "Maker C", + "model": "Model 14770", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.53439215140339, + 29.12063005744858 + ] + }, + "properties": { + "id": "meter-14771", + "maker": "Maker B", + "model": "Model 14771", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.359148488143425, + 26.239004288249163 + ] + }, + "properties": { + "id": "meter-14772", + "maker": "Maker E", + "model": "Model 14772", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.93922900043563, + 20.281334100471195 + ] + }, + "properties": { + "id": "meter-14773", + "maker": "Maker F", + "model": "Model 14773", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.42456416647498, + 22.382962958717542 + ] + }, + "properties": { + "id": "meter-14774", + "maker": "Maker E", + "model": "Model 14774", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.15068235451971, + 24.60769357038724 + ] + }, + "properties": { + "id": "meter-14775", + "maker": "Maker C", + "model": "Model 14775", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.8002721503565, + 27.850598604541133 + ] + }, + "properties": { + "id": "meter-14776", + "maker": "Maker J", + "model": "Model 14776", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.65570619210875, + 29.294184788430243 + ] + }, + "properties": { + "id": "meter-14777", + "maker": "Maker G", + "model": "Model 14777", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.832510721563565, + 20.841604289670684 + ] + }, + "properties": { + "id": "meter-14778", + "maker": "Maker J", + "model": "Model 14778", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.766607438407235, + 26.56570162875599 + ] + }, + "properties": { + "id": "meter-14779", + "maker": "Maker J", + "model": "Model 14779", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.39376333093164, + 20.827007749817643 + ] + }, + "properties": { + "id": "meter-14780", + "maker": "Maker H", + "model": "Model 14780", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.108116443985494, + 28.560528773863986 + ] + }, + "properties": { + "id": "meter-14781", + "maker": "Maker A", + "model": "Model 14781", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.36162936133403, + 27.71597706641056 + ] + }, + "properties": { + "id": "meter-14782", + "maker": "Maker G", + "model": "Model 14782", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.24940770931603, + 19.093740871606986 + ] + }, + "properties": { + "id": "meter-14783", + "maker": "Maker F", + "model": "Model 14783", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.02393281365452, + 20.18327774132836 + ] + }, + "properties": { + "id": "meter-14784", + "maker": "Maker J", + "model": "Model 14784", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.639527111447826, + 27.04785066961014 + ] + }, + "properties": { + "id": "meter-14785", + "maker": "Maker C", + "model": "Model 14785", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.24314379340489, + 28.28949018901553 + ] + }, + "properties": { + "id": "meter-14786", + "maker": "Maker G", + "model": "Model 14786", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.04822114071136, + 23.15565489116188 + ] + }, + "properties": { + "id": "meter-14787", + "maker": "Maker I", + "model": "Model 14787", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.09773469376194, + 22.840127372513262 + ] + }, + "properties": { + "id": "meter-14788", + "maker": "Maker B", + "model": "Model 14788", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.09733179593457, + 26.884295259161107 + ] + }, + "properties": { + "id": "meter-14789", + "maker": "Maker E", + "model": "Model 14789", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.408872494701896, + 23.820407325601018 + ] + }, + "properties": { + "id": "meter-14790", + "maker": "Maker H", + "model": "Model 14790", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.95731903459598, + 31.190693598321666 + ] + }, + "properties": { + "id": "meter-14791", + "maker": "Maker C", + "model": "Model 14791", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.82715835239222, + 26.379453578690168 + ] + }, + "properties": { + "id": "meter-14792", + "maker": "Maker I", + "model": "Model 14792", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.884138608257516, + 22.022755541351813 + ] + }, + "properties": { + "id": "meter-14793", + "maker": "Maker G", + "model": "Model 14793", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.46491863796416, + 21.646677592399787 + ] + }, + "properties": { + "id": "meter-14794", + "maker": "Maker B", + "model": "Model 14794", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.70348038489765, + 27.533251122332864 + ] + }, + "properties": { + "id": "meter-14795", + "maker": "Maker A", + "model": "Model 14795", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.89177529679434, + 23.26644967259473 + ] + }, + "properties": { + "id": "meter-14796", + "maker": "Maker F", + "model": "Model 14796", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.262976720537054, + 17.558405314848024 + ] + }, + "properties": { + "id": "meter-14797", + "maker": "Maker F", + "model": "Model 14797", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.315878363614026, + 18.507241387059512 + ] + }, + "properties": { + "id": "meter-14798", + "maker": "Maker A", + "model": "Model 14798", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.980552447041326, + 27.148325656465524 + ] + }, + "properties": { + "id": "meter-14799", + "maker": "Maker D", + "model": "Model 14799", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.11432904957693, + 22.94217116294638 + ] + }, + "properties": { + "id": "meter-14800", + "maker": "Maker G", + "model": "Model 14800", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.60792477560655, + 19.163094488826722 + ] + }, + "properties": { + "id": "meter-14801", + "maker": "Maker B", + "model": "Model 14801", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.3272479119402, + 23.76840896099454 + ] + }, + "properties": { + "id": "meter-14802", + "maker": "Maker E", + "model": "Model 14802", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.88785986103561, + 22.604753053801225 + ] + }, + "properties": { + "id": "meter-14803", + "maker": "Maker J", + "model": "Model 14803", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.53409694339088, + 20.990307218625844 + ] + }, + "properties": { + "id": "meter-14804", + "maker": "Maker F", + "model": "Model 14804", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.639237944161565, + 18.868161712321672 + ] + }, + "properties": { + "id": "meter-14805", + "maker": "Maker H", + "model": "Model 14805", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.52357916578764, + 23.228605431047058 + ] + }, + "properties": { + "id": "meter-14806", + "maker": "Maker I", + "model": "Model 14806", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0184691704736, + 27.817658270943788 + ] + }, + "properties": { + "id": "meter-14807", + "maker": "Maker J", + "model": "Model 14807", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.84000220357559, + 19.76751185812835 + ] + }, + "properties": { + "id": "meter-14808", + "maker": "Maker C", + "model": "Model 14808", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.80294632144459, + 31.199360287471684 + ] + }, + "properties": { + "id": "meter-14809", + "maker": "Maker E", + "model": "Model 14809", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.441614632944216, + 25.333721319351312 + ] + }, + "properties": { + "id": "meter-14810", + "maker": "Maker A", + "model": "Model 14810", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.90830104567838, + 24.145010031269873 + ] + }, + "properties": { + "id": "meter-14811", + "maker": "Maker G", + "model": "Model 14811", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.77292315263975, + 25.299176509873654 + ] + }, + "properties": { + "id": "meter-14812", + "maker": "Maker A", + "model": "Model 14812", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45327386466759, + 27.460892432603522 + ] + }, + "properties": { + "id": "meter-14813", + "maker": "Maker B", + "model": "Model 14813", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.7021123497903, + 24.733480815756643 + ] + }, + "properties": { + "id": "meter-14814", + "maker": "Maker H", + "model": "Model 14814", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.34519463677789, + 25.436249381778346 + ] + }, + "properties": { + "id": "meter-14815", + "maker": "Maker E", + "model": "Model 14815", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.546891573260176, + 26.36141881824799 + ] + }, + "properties": { + "id": "meter-14816", + "maker": "Maker E", + "model": "Model 14816", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.648824745382456, + 28.002782538721362 + ] + }, + "properties": { + "id": "meter-14817", + "maker": "Maker F", + "model": "Model 14817", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4753958786756, + 30.076153423492514 + ] + }, + "properties": { + "id": "meter-14818", + "maker": "Maker D", + "model": "Model 14818", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.0831062107404, + 28.537353264106972 + ] + }, + "properties": { + "id": "meter-14819", + "maker": "Maker A", + "model": "Model 14819", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.459193618042875, + 18.969974519018606 + ] + }, + "properties": { + "id": "meter-14820", + "maker": "Maker C", + "model": "Model 14820", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.467041971171284, + 24.362685464157597 + ] + }, + "properties": { + "id": "meter-14821", + "maker": "Maker B", + "model": "Model 14821", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.93555386925541, + 26.395987024459238 + ] + }, + "properties": { + "id": "meter-14822", + "maker": "Maker E", + "model": "Model 14822", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23270105744703, + 22.179422695687524 + ] + }, + "properties": { + "id": "meter-14823", + "maker": "Maker H", + "model": "Model 14823", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.20764517910133, + 26.15634925258768 + ] + }, + "properties": { + "id": "meter-14824", + "maker": "Maker J", + "model": "Model 14824", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.30726036524026, + 29.002732325913176 + ] + }, + "properties": { + "id": "meter-14825", + "maker": "Maker J", + "model": "Model 14825", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.3829025722285, + 27.07061108156448 + ] + }, + "properties": { + "id": "meter-14826", + "maker": "Maker I", + "model": "Model 14826", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.495348882615225, + 24.20654079183339 + ] + }, + "properties": { + "id": "meter-14827", + "maker": "Maker J", + "model": "Model 14827", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.5963845319843, + 24.939871533811544 + ] + }, + "properties": { + "id": "meter-14828", + "maker": "Maker I", + "model": "Model 14828", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.8184317345043, + 22.168712545416533 + ] + }, + "properties": { + "id": "meter-14829", + "maker": "Maker E", + "model": "Model 14829", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.53120213961287, + 25.39875816712578 + ] + }, + "properties": { + "id": "meter-14830", + "maker": "Maker F", + "model": "Model 14830", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.033899059666496, + 27.26112841953193 + ] + }, + "properties": { + "id": "meter-14831", + "maker": "Maker H", + "model": "Model 14831", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.22865666061059, + 27.415547524483287 + ] + }, + "properties": { + "id": "meter-14832", + "maker": "Maker B", + "model": "Model 14832", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.655031632542105, + 29.984427143418838 + ] + }, + "properties": { + "id": "meter-14833", + "maker": "Maker H", + "model": "Model 14833", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.067884182024656, + 22.019582871077365 + ] + }, + "properties": { + "id": "meter-14834", + "maker": "Maker I", + "model": "Model 14834", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05879702653613, + 26.535911754354714 + ] + }, + "properties": { + "id": "meter-14835", + "maker": "Maker G", + "model": "Model 14835", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.71463499559574, + 19.340239265440324 + ] + }, + "properties": { + "id": "meter-14836", + "maker": "Maker H", + "model": "Model 14836", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.37769098231041, + 19.717120310781905 + ] + }, + "properties": { + "id": "meter-14837", + "maker": "Maker E", + "model": "Model 14837", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.131215272210795, + 27.439315379604118 + ] + }, + "properties": { + "id": "meter-14838", + "maker": "Maker G", + "model": "Model 14838", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.80404378139362, + 31.158347968550107 + ] + }, + "properties": { + "id": "meter-14839", + "maker": "Maker E", + "model": "Model 14839", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.13990662399343, + 18.531410723175764 + ] + }, + "properties": { + "id": "meter-14840", + "maker": "Maker H", + "model": "Model 14840", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.78367787846526, + 22.834732246563952 + ] + }, + "properties": { + "id": "meter-14841", + "maker": "Maker B", + "model": "Model 14841", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.82460701076725, + 29.011803752519 + ] + }, + "properties": { + "id": "meter-14842", + "maker": "Maker H", + "model": "Model 14842", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.937753635435904, + 19.637810000942903 + ] + }, + "properties": { + "id": "meter-14843", + "maker": "Maker G", + "model": "Model 14843", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.53598194022561, + 27.72614952568883 + ] + }, + "properties": { + "id": "meter-14844", + "maker": "Maker E", + "model": "Model 14844", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.45136245857264, + 23.68135249868793 + ] + }, + "properties": { + "id": "meter-14845", + "maker": "Maker I", + "model": "Model 14845", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.17537982831806, + 24.72935013342435 + ] + }, + "properties": { + "id": "meter-14846", + "maker": "Maker D", + "model": "Model 14846", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.842049805284596, + 29.339793312889736 + ] + }, + "properties": { + "id": "meter-14847", + "maker": "Maker E", + "model": "Model 14847", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.63747727826397, + 23.3773545765429 + ] + }, + "properties": { + "id": "meter-14848", + "maker": "Maker D", + "model": "Model 14848", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.18968701481173, + 20.920203281683527 + ] + }, + "properties": { + "id": "meter-14849", + "maker": "Maker G", + "model": "Model 14849", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.17201857416404, + 30.396813714629396 + ] + }, + "properties": { + "id": "meter-14850", + "maker": "Maker E", + "model": "Model 14850", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.612238379421704, + 19.837569718724026 + ] + }, + "properties": { + "id": "meter-14851", + "maker": "Maker B", + "model": "Model 14851", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.751440216386115, + 28.549443326811716 + ] + }, + "properties": { + "id": "meter-14852", + "maker": "Maker A", + "model": "Model 14852", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.18798879334663, + 20.61349423923334 + ] + }, + "properties": { + "id": "meter-14853", + "maker": "Maker F", + "model": "Model 14853", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.975055734664316, + 28.325506606352523 + ] + }, + "properties": { + "id": "meter-14854", + "maker": "Maker J", + "model": "Model 14854", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.775641859309346, + 29.003245360723913 + ] + }, + "properties": { + "id": "meter-14855", + "maker": "Maker F", + "model": "Model 14855", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.94972188935302, + 19.83226064470501 + ] + }, + "properties": { + "id": "meter-14856", + "maker": "Maker C", + "model": "Model 14856", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.505667909766245, + 22.412861514612125 + ] + }, + "properties": { + "id": "meter-14857", + "maker": "Maker J", + "model": "Model 14857", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.277743780635824, + 30.009142649478708 + ] + }, + "properties": { + "id": "meter-14858", + "maker": "Maker J", + "model": "Model 14858", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.33957596342709, + 23.801626652969937 + ] + }, + "properties": { + "id": "meter-14859", + "maker": "Maker H", + "model": "Model 14859", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.67446885734843, + 24.250985333578743 + ] + }, + "properties": { + "id": "meter-14860", + "maker": "Maker B", + "model": "Model 14860", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.96962365165685, + 29.022644050207667 + ] + }, + "properties": { + "id": "meter-14861", + "maker": "Maker F", + "model": "Model 14861", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.60601651629672, + 23.06053790095151 + ] + }, + "properties": { + "id": "meter-14862", + "maker": "Maker F", + "model": "Model 14862", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.09024412447271, + 22.675874108835053 + ] + }, + "properties": { + "id": "meter-14863", + "maker": "Maker B", + "model": "Model 14863", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.36097674977725, + 20.092670548302824 + ] + }, + "properties": { + "id": "meter-14864", + "maker": "Maker E", + "model": "Model 14864", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.542884797914226, + 21.37722927308384 + ] + }, + "properties": { + "id": "meter-14865", + "maker": "Maker E", + "model": "Model 14865", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.02319248014426, + 18.951205227003864 + ] + }, + "properties": { + "id": "meter-14866", + "maker": "Maker J", + "model": "Model 14866", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.96449742434246, + 20.256541230266965 + ] + }, + "properties": { + "id": "meter-14867", + "maker": "Maker F", + "model": "Model 14867", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68001588156927, + 18.876902446824975 + ] + }, + "properties": { + "id": "meter-14868", + "maker": "Maker B", + "model": "Model 14868", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.43929258856934, + 28.98334153110957 + ] + }, + "properties": { + "id": "meter-14869", + "maker": "Maker G", + "model": "Model 14869", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.32581849980172, + 28.987031950315373 + ] + }, + "properties": { + "id": "meter-14870", + "maker": "Maker G", + "model": "Model 14870", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.51093168986601, + 25.754589648353324 + ] + }, + "properties": { + "id": "meter-14871", + "maker": "Maker J", + "model": "Model 14871", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.908124633396284, + 24.675775853339406 + ] + }, + "properties": { + "id": "meter-14872", + "maker": "Maker G", + "model": "Model 14872", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.096682340960804, + 20.328934290611233 + ] + }, + "properties": { + "id": "meter-14873", + "maker": "Maker A", + "model": "Model 14873", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.30285604602853, + 21.284708143970292 + ] + }, + "properties": { + "id": "meter-14874", + "maker": "Maker C", + "model": "Model 14874", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.67603935993291, + 17.22370892867134 + ] + }, + "properties": { + "id": "meter-14875", + "maker": "Maker B", + "model": "Model 14875", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.427247486853496, + 24.109764983509304 + ] + }, + "properties": { + "id": "meter-14876", + "maker": "Maker A", + "model": "Model 14876", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.18524555519428, + 17.652307157303788 + ] + }, + "properties": { + "id": "meter-14877", + "maker": "Maker I", + "model": "Model 14877", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.35556037701279, + 27.313408834314355 + ] + }, + "properties": { + "id": "meter-14878", + "maker": "Maker G", + "model": "Model 14878", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.93289252354064, + 27.206044929751258 + ] + }, + "properties": { + "id": "meter-14879", + "maker": "Maker I", + "model": "Model 14879", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.802275104407826, + 20.08003484734954 + ] + }, + "properties": { + "id": "meter-14880", + "maker": "Maker C", + "model": "Model 14880", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.44266540873433, + 29.05047243737539 + ] + }, + "properties": { + "id": "meter-14881", + "maker": "Maker C", + "model": "Model 14881", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.320906730380486, + 17.739203539527693 + ] + }, + "properties": { + "id": "meter-14882", + "maker": "Maker I", + "model": "Model 14882", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.71196093580728, + 28.498628390974964 + ] + }, + "properties": { + "id": "meter-14883", + "maker": "Maker B", + "model": "Model 14883", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.77261469879436, + 25.29003063234025 + ] + }, + "properties": { + "id": "meter-14884", + "maker": "Maker G", + "model": "Model 14884", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.45937576988159, + 24.414102212760753 + ] + }, + "properties": { + "id": "meter-14885", + "maker": "Maker F", + "model": "Model 14885", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.291962603880386, + 23.413319391669358 + ] + }, + "properties": { + "id": "meter-14886", + "maker": "Maker I", + "model": "Model 14886", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.67665202989026, + 18.414990950408026 + ] + }, + "properties": { + "id": "meter-14887", + "maker": "Maker A", + "model": "Model 14887", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.00259514497404, + 25.983681092123856 + ] + }, + "properties": { + "id": "meter-14888", + "maker": "Maker A", + "model": "Model 14888", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.89685092802007, + 27.53910836598849 + ] + }, + "properties": { + "id": "meter-14889", + "maker": "Maker C", + "model": "Model 14889", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.78520509453345, + 24.794280871808397 + ] + }, + "properties": { + "id": "meter-14890", + "maker": "Maker G", + "model": "Model 14890", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.5020623383832, + 27.621406959908967 + ] + }, + "properties": { + "id": "meter-14891", + "maker": "Maker B", + "model": "Model 14891", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.740188465026726, + 20.972198641748175 + ] + }, + "properties": { + "id": "meter-14892", + "maker": "Maker F", + "model": "Model 14892", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.934624143543644, + 26.656903842649463 + ] + }, + "properties": { + "id": "meter-14893", + "maker": "Maker C", + "model": "Model 14893", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.878915668691626, + 18.211115935655474 + ] + }, + "properties": { + "id": "meter-14894", + "maker": "Maker F", + "model": "Model 14894", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.870281619811294, + 29.814458147192102 + ] + }, + "properties": { + "id": "meter-14895", + "maker": "Maker I", + "model": "Model 14895", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.53661642777632, + 26.04795538959404 + ] + }, + "properties": { + "id": "meter-14896", + "maker": "Maker B", + "model": "Model 14896", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.1580493946801, + 27.932726107310934 + ] + }, + "properties": { + "id": "meter-14897", + "maker": "Maker A", + "model": "Model 14897", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.180526534295524, + 20.944175576941248 + ] + }, + "properties": { + "id": "meter-14898", + "maker": "Maker F", + "model": "Model 14898", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.104413651339314, + 25.026630720428223 + ] + }, + "properties": { + "id": "meter-14899", + "maker": "Maker J", + "model": "Model 14899", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.53652088647729, + 25.76085281213043 + ] + }, + "properties": { + "id": "meter-14900", + "maker": "Maker E", + "model": "Model 14900", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.61743228467875, + 24.12603669371994 + ] + }, + "properties": { + "id": "meter-14901", + "maker": "Maker B", + "model": "Model 14901", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.885883669064384, + 27.78071911269322 + ] + }, + "properties": { + "id": "meter-14902", + "maker": "Maker I", + "model": "Model 14902", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.23952183851991, + 30.105375860335215 + ] + }, + "properties": { + "id": "meter-14903", + "maker": "Maker D", + "model": "Model 14903", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.10876914733665, + 28.289322614413642 + ] + }, + "properties": { + "id": "meter-14904", + "maker": "Maker E", + "model": "Model 14904", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24293807027941, + 29.02356089077183 + ] + }, + "properties": { + "id": "meter-14905", + "maker": "Maker C", + "model": "Model 14905", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.59864538687182, + 28.37175877259703 + ] + }, + "properties": { + "id": "meter-14906", + "maker": "Maker D", + "model": "Model 14906", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.14353014324121, + 18.272378420914155 + ] + }, + "properties": { + "id": "meter-14907", + "maker": "Maker B", + "model": "Model 14907", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.872697499349705, + 25.66948875481524 + ] + }, + "properties": { + "id": "meter-14908", + "maker": "Maker F", + "model": "Model 14908", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.25848821856481, + 17.303123799897985 + ] + }, + "properties": { + "id": "meter-14909", + "maker": "Maker F", + "model": "Model 14909", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.75990197864427, + 19.26042674688165 + ] + }, + "properties": { + "id": "meter-14910", + "maker": "Maker J", + "model": "Model 14910", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.09583509349659, + 23.616700892803163 + ] + }, + "properties": { + "id": "meter-14911", + "maker": "Maker A", + "model": "Model 14911", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.414986857774856, + 29.77611347524714 + ] + }, + "properties": { + "id": "meter-14912", + "maker": "Maker E", + "model": "Model 14912", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.57460089040747, + 27.899489822601574 + ] + }, + "properties": { + "id": "meter-14913", + "maker": "Maker G", + "model": "Model 14913", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.8977405626045, + 31.409978835495362 + ] + }, + "properties": { + "id": "meter-14914", + "maker": "Maker J", + "model": "Model 14914", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.26151659061995, + 27.49654927558482 + ] + }, + "properties": { + "id": "meter-14915", + "maker": "Maker A", + "model": "Model 14915", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.61982824344118, + 28.632178609402523 + ] + }, + "properties": { + "id": "meter-14916", + "maker": "Maker E", + "model": "Model 14916", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.317193651388735, + 27.567217150820696 + ] + }, + "properties": { + "id": "meter-14917", + "maker": "Maker D", + "model": "Model 14917", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.89517706061667, + 25.405464980547677 + ] + }, + "properties": { + "id": "meter-14918", + "maker": "Maker J", + "model": "Model 14918", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.66146362811111, + 28.379709385155152 + ] + }, + "properties": { + "id": "meter-14919", + "maker": "Maker G", + "model": "Model 14919", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.357817247781384, + 22.136761514551505 + ] + }, + "properties": { + "id": "meter-14920", + "maker": "Maker F", + "model": "Model 14920", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.80988733826486, + 21.179585343199086 + ] + }, + "properties": { + "id": "meter-14921", + "maker": "Maker B", + "model": "Model 14921", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.501157307767414, + 18.687651751252066 + ] + }, + "properties": { + "id": "meter-14922", + "maker": "Maker D", + "model": "Model 14922", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.33584327919843, + 17.615258643235524 + ] + }, + "properties": { + "id": "meter-14923", + "maker": "Maker F", + "model": "Model 14923", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.895026366006135, + 25.744599620812323 + ] + }, + "properties": { + "id": "meter-14924", + "maker": "Maker F", + "model": "Model 14924", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.00329430175232, + 27.388675215808036 + ] + }, + "properties": { + "id": "meter-14925", + "maker": "Maker B", + "model": "Model 14925", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.61657179634743, + 26.74569354418992 + ] + }, + "properties": { + "id": "meter-14926", + "maker": "Maker C", + "model": "Model 14926", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.89438019557595, + 24.83298593163859 + ] + }, + "properties": { + "id": "meter-14927", + "maker": "Maker D", + "model": "Model 14927", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.63158968047712, + 23.221292137634574 + ] + }, + "properties": { + "id": "meter-14928", + "maker": "Maker D", + "model": "Model 14928", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.19698055031259, + 24.033476945992113 + ] + }, + "properties": { + "id": "meter-14929", + "maker": "Maker D", + "model": "Model 14929", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.6004379949411, + 17.662179864135414 + ] + }, + "properties": { + "id": "meter-14930", + "maker": "Maker D", + "model": "Model 14930", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.843862069965276, + 19.11335214415267 + ] + }, + "properties": { + "id": "meter-14931", + "maker": "Maker J", + "model": "Model 14931", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2906066405454, + 30.82394273980663 + ] + }, + "properties": { + "id": "meter-14932", + "maker": "Maker B", + "model": "Model 14932", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.02327376744903, + 22.43789834868656 + ] + }, + "properties": { + "id": "meter-14933", + "maker": "Maker D", + "model": "Model 14933", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.8061118839161, + 26.439120092849016 + ] + }, + "properties": { + "id": "meter-14934", + "maker": "Maker B", + "model": "Model 14934", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.90776796114513, + 20.48947398933241 + ] + }, + "properties": { + "id": "meter-14935", + "maker": "Maker J", + "model": "Model 14935", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.8065434233622, + 20.294896445362863 + ] + }, + "properties": { + "id": "meter-14936", + "maker": "Maker H", + "model": "Model 14936", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.86925993271979, + 29.17303231342528 + ] + }, + "properties": { + "id": "meter-14937", + "maker": "Maker H", + "model": "Model 14937", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.58450992530493, + 26.78930493258145 + ] + }, + "properties": { + "id": "meter-14938", + "maker": "Maker I", + "model": "Model 14938", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.47171564041836, + 26.595414532172036 + ] + }, + "properties": { + "id": "meter-14939", + "maker": "Maker H", + "model": "Model 14939", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.60139877867324, + 21.650939419420798 + ] + }, + "properties": { + "id": "meter-14940", + "maker": "Maker C", + "model": "Model 14940", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.22279738255928, + 20.090106929664152 + ] + }, + "properties": { + "id": "meter-14941", + "maker": "Maker G", + "model": "Model 14941", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.56155565062673, + 28.90146243256961 + ] + }, + "properties": { + "id": "meter-14942", + "maker": "Maker C", + "model": "Model 14942", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.93819180072547, + 23.91921204506273 + ] + }, + "properties": { + "id": "meter-14943", + "maker": "Maker C", + "model": "Model 14943", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.3573112853287, + 22.78784022661328 + ] + }, + "properties": { + "id": "meter-14944", + "maker": "Maker A", + "model": "Model 14944", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.45623318012299, + 19.381487862718323 + ] + }, + "properties": { + "id": "meter-14945", + "maker": "Maker I", + "model": "Model 14945", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.19205997074685, + 26.037174196633494 + ] + }, + "properties": { + "id": "meter-14946", + "maker": "Maker D", + "model": "Model 14946", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.283789061795524, + 23.079978499390116 + ] + }, + "properties": { + "id": "meter-14947", + "maker": "Maker D", + "model": "Model 14947", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46448254668816, + 27.424830774903562 + ] + }, + "properties": { + "id": "meter-14948", + "maker": "Maker I", + "model": "Model 14948", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.77751287991236, + 29.544907033275866 + ] + }, + "properties": { + "id": "meter-14949", + "maker": "Maker B", + "model": "Model 14949", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.993043330256825, + 17.50856782822911 + ] + }, + "properties": { + "id": "meter-14950", + "maker": "Maker J", + "model": "Model 14950", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.620640761939605, + 24.717867519077984 + ] + }, + "properties": { + "id": "meter-14951", + "maker": "Maker E", + "model": "Model 14951", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.75033528233263, + 26.64922827787695 + ] + }, + "properties": { + "id": "meter-14952", + "maker": "Maker F", + "model": "Model 14952", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.67360053440797, + 20.515492442190276 + ] + }, + "properties": { + "id": "meter-14953", + "maker": "Maker C", + "model": "Model 14953", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.69726043027143, + 28.454866300305525 + ] + }, + "properties": { + "id": "meter-14954", + "maker": "Maker J", + "model": "Model 14954", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.55822743061799, + 24.564162225005955 + ] + }, + "properties": { + "id": "meter-14955", + "maker": "Maker G", + "model": "Model 14955", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.51588907418338, + 25.339718071909182 + ] + }, + "properties": { + "id": "meter-14956", + "maker": "Maker J", + "model": "Model 14956", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.94964166365587, + 21.356405771331758 + ] + }, + "properties": { + "id": "meter-14957", + "maker": "Maker J", + "model": "Model 14957", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.44312264962155, + 24.63554760448986 + ] + }, + "properties": { + "id": "meter-14958", + "maker": "Maker E", + "model": "Model 14958", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.23438901183077, + 19.21546864559987 + ] + }, + "properties": { + "id": "meter-14959", + "maker": "Maker H", + "model": "Model 14959", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.931847187449634, + 21.008457740959347 + ] + }, + "properties": { + "id": "meter-14960", + "maker": "Maker J", + "model": "Model 14960", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.236906649140415, + 22.661674824275533 + ] + }, + "properties": { + "id": "meter-14961", + "maker": "Maker D", + "model": "Model 14961", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.30448781294107, + 20.148754585215205 + ] + }, + "properties": { + "id": "meter-14962", + "maker": "Maker D", + "model": "Model 14962", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.78712721523652, + 24.607672951815047 + ] + }, + "properties": { + "id": "meter-14963", + "maker": "Maker B", + "model": "Model 14963", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.15629287477801, + 23.40336175894804 + ] + }, + "properties": { + "id": "meter-14964", + "maker": "Maker B", + "model": "Model 14964", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.14407880514001, + 29.805119727920065 + ] + }, + "properties": { + "id": "meter-14965", + "maker": "Maker F", + "model": "Model 14965", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.944765504373535, + 24.842754144223832 + ] + }, + "properties": { + "id": "meter-14966", + "maker": "Maker H", + "model": "Model 14966", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.39840714084628, + 26.56646810418976 + ] + }, + "properties": { + "id": "meter-14967", + "maker": "Maker H", + "model": "Model 14967", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.093755091384324, + 23.921399735230644 + ] + }, + "properties": { + "id": "meter-14968", + "maker": "Maker G", + "model": "Model 14968", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.74484907056711, + 26.24431944861053 + ] + }, + "properties": { + "id": "meter-14969", + "maker": "Maker D", + "model": "Model 14969", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.17389716203753, + 27.04539227795548 + ] + }, + "properties": { + "id": "meter-14970", + "maker": "Maker E", + "model": "Model 14970", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.970631740046365, + 19.709346689627967 + ] + }, + "properties": { + "id": "meter-14971", + "maker": "Maker C", + "model": "Model 14971", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.90782307094942, + 19.376430841581797 + ] + }, + "properties": { + "id": "meter-14972", + "maker": "Maker D", + "model": "Model 14972", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.593474525302454, + 24.729926643427074 + ] + }, + "properties": { + "id": "meter-14973", + "maker": "Maker A", + "model": "Model 14973", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.75294794008267, + 22.10544166003206 + ] + }, + "properties": { + "id": "meter-14974", + "maker": "Maker B", + "model": "Model 14974", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.69490924692974, + 26.87084226677725 + ] + }, + "properties": { + "id": "meter-14975", + "maker": "Maker I", + "model": "Model 14975", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.353102078837765, + 20.803749061152338 + ] + }, + "properties": { + "id": "meter-14976", + "maker": "Maker G", + "model": "Model 14976", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.340423885437744, + 24.28353364008371 + ] + }, + "properties": { + "id": "meter-14977", + "maker": "Maker F", + "model": "Model 14977", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.336165156840636, + 19.86569324311438 + ] + }, + "properties": { + "id": "meter-14978", + "maker": "Maker A", + "model": "Model 14978", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.821808169800406, + 21.759423374029012 + ] + }, + "properties": { + "id": "meter-14979", + "maker": "Maker C", + "model": "Model 14979", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.013021191865555, + 23.055492988707872 + ] + }, + "properties": { + "id": "meter-14980", + "maker": "Maker E", + "model": "Model 14980", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.17846504642061, + 27.36980419334683 + ] + }, + "properties": { + "id": "meter-14981", + "maker": "Maker E", + "model": "Model 14981", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17019469253975, + 28.064468733642215 + ] + }, + "properties": { + "id": "meter-14982", + "maker": "Maker D", + "model": "Model 14982", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.90485347454691, + 27.106800726039182 + ] + }, + "properties": { + "id": "meter-14983", + "maker": "Maker E", + "model": "Model 14983", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.50626718838313, + 26.49357386923958 + ] + }, + "properties": { + "id": "meter-14984", + "maker": "Maker I", + "model": "Model 14984", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.33939273511483, + 31.215912262989285 + ] + }, + "properties": { + "id": "meter-14985", + "maker": "Maker D", + "model": "Model 14985", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.96267125069879, + 18.882582579517663 + ] + }, + "properties": { + "id": "meter-14986", + "maker": "Maker B", + "model": "Model 14986", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.33691235133583, + 25.35903310615842 + ] + }, + "properties": { + "id": "meter-14987", + "maker": "Maker H", + "model": "Model 14987", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.96329637620472, + 28.870139301422665 + ] + }, + "properties": { + "id": "meter-14988", + "maker": "Maker E", + "model": "Model 14988", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.586656453348255, + 19.949105944305437 + ] + }, + "properties": { + "id": "meter-14989", + "maker": "Maker B", + "model": "Model 14989", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.32378283419652, + 21.10061756450783 + ] + }, + "properties": { + "id": "meter-14990", + "maker": "Maker I", + "model": "Model 14990", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.21933788816112, + 24.55502359222375 + ] + }, + "properties": { + "id": "meter-14991", + "maker": "Maker D", + "model": "Model 14991", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.15420049616107, + 21.137492929250648 + ] + }, + "properties": { + "id": "meter-14992", + "maker": "Maker F", + "model": "Model 14992", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.07066972984706, + 25.64386082998134 + ] + }, + "properties": { + "id": "meter-14993", + "maker": "Maker I", + "model": "Model 14993", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.564283425232205, + 27.355249871359966 + ] + }, + "properties": { + "id": "meter-14994", + "maker": "Maker F", + "model": "Model 14994", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.51777555412917, + 27.019022138203123 + ] + }, + "properties": { + "id": "meter-14995", + "maker": "Maker D", + "model": "Model 14995", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.139104337419255, + 28.050902454573745 + ] + }, + "properties": { + "id": "meter-14996", + "maker": "Maker E", + "model": "Model 14996", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.97440446634412, + 18.810220899698507 + ] + }, + "properties": { + "id": "meter-14997", + "maker": "Maker B", + "model": "Model 14997", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.07753770771058, + 18.70419077907883 + ] + }, + "properties": { + "id": "meter-14998", + "maker": "Maker C", + "model": "Model 14998", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.976794543726896, + 29.332616196280952 + ] + }, + "properties": { + "id": "meter-14999", + "maker": "Maker G", + "model": "Model 14999", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.55244918066872, + 22.559842047554717 + ] + }, + "properties": { + "id": "meter-15000", + "maker": "Maker H", + "model": "Model 15000", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.90253485615278, + 26.420175716592034 + ] + }, + "properties": { + "id": "meter-15001", + "maker": "Maker B", + "model": "Model 15001", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.42190551795191, + 28.196414731719365 + ] + }, + "properties": { + "id": "meter-15002", + "maker": "Maker B", + "model": "Model 15002", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.306896235738726, + 22.25460244776162 + ] + }, + "properties": { + "id": "meter-15003", + "maker": "Maker G", + "model": "Model 15003", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.69819359608657, + 21.172680985056793 + ] + }, + "properties": { + "id": "meter-15004", + "maker": "Maker D", + "model": "Model 15004", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.18251745857414, + 23.69152673393789 + ] + }, + "properties": { + "id": "meter-15005", + "maker": "Maker D", + "model": "Model 15005", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.66728283681511, + 28.228477785805666 + ] + }, + "properties": { + "id": "meter-15006", + "maker": "Maker C", + "model": "Model 15006", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.43926188351456, + 29.40029355365287 + ] + }, + "properties": { + "id": "meter-15007", + "maker": "Maker B", + "model": "Model 15007", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.36503782573889, + 29.361525583092295 + ] + }, + "properties": { + "id": "meter-15008", + "maker": "Maker A", + "model": "Model 15008", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.50869376751844, + 25.041582309818793 + ] + }, + "properties": { + "id": "meter-15009", + "maker": "Maker A", + "model": "Model 15009", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.055606737471486, + 25.656089432970425 + ] + }, + "properties": { + "id": "meter-15010", + "maker": "Maker C", + "model": "Model 15010", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.12304439925437, + 24.562454465399675 + ] + }, + "properties": { + "id": "meter-15011", + "maker": "Maker G", + "model": "Model 15011", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0977472656652, + 28.843426769617942 + ] + }, + "properties": { + "id": "meter-15012", + "maker": "Maker I", + "model": "Model 15012", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.470316547015386, + 31.490888708526498 + ] + }, + "properties": { + "id": "meter-15013", + "maker": "Maker D", + "model": "Model 15013", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.67277961825485, + 27.403065594121788 + ] + }, + "properties": { + "id": "meter-15014", + "maker": "Maker A", + "model": "Model 15014", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.699110572197064, + 20.30653601264445 + ] + }, + "properties": { + "id": "meter-15015", + "maker": "Maker H", + "model": "Model 15015", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.77054716044653, + 28.624549886257498 + ] + }, + "properties": { + "id": "meter-15016", + "maker": "Maker I", + "model": "Model 15016", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.969375273560644, + 28.901228662370208 + ] + }, + "properties": { + "id": "meter-15017", + "maker": "Maker A", + "model": "Model 15017", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.53703251852578, + 21.219231865004705 + ] + }, + "properties": { + "id": "meter-15018", + "maker": "Maker F", + "model": "Model 15018", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.447545959425085, + 22.068517154981915 + ] + }, + "properties": { + "id": "meter-15019", + "maker": "Maker B", + "model": "Model 15019", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.85048012552102, + 20.93658266157427 + ] + }, + "properties": { + "id": "meter-15020", + "maker": "Maker D", + "model": "Model 15020", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.43874136742113, + 24.32966019183756 + ] + }, + "properties": { + "id": "meter-15021", + "maker": "Maker G", + "model": "Model 15021", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.66821600150308, + 20.571327466814314 + ] + }, + "properties": { + "id": "meter-15022", + "maker": "Maker F", + "model": "Model 15022", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.954140494995364, + 28.50583749031972 + ] + }, + "properties": { + "id": "meter-15023", + "maker": "Maker I", + "model": "Model 15023", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.19803375616196, + 18.290071656268545 + ] + }, + "properties": { + "id": "meter-15024", + "maker": "Maker H", + "model": "Model 15024", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.87091482752868, + 27.155971969222897 + ] + }, + "properties": { + "id": "meter-15025", + "maker": "Maker J", + "model": "Model 15025", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.08435754880131, + 22.50000754081693 + ] + }, + "properties": { + "id": "meter-15026", + "maker": "Maker J", + "model": "Model 15026", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.422419678756654, + 22.53136025103243 + ] + }, + "properties": { + "id": "meter-15027", + "maker": "Maker A", + "model": "Model 15027", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.0276599485785, + 17.495985007087373 + ] + }, + "properties": { + "id": "meter-15028", + "maker": "Maker J", + "model": "Model 15028", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.533831515446735, + 18.777411259502486 + ] + }, + "properties": { + "id": "meter-15029", + "maker": "Maker E", + "model": "Model 15029", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.42794684990298, + 22.58397224340013 + ] + }, + "properties": { + "id": "meter-15030", + "maker": "Maker C", + "model": "Model 15030", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70920855951261, + 18.946458545040716 + ] + }, + "properties": { + "id": "meter-15031", + "maker": "Maker I", + "model": "Model 15031", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00690392327688, + 19.315564669525738 + ] + }, + "properties": { + "id": "meter-15032", + "maker": "Maker G", + "model": "Model 15032", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.91136279631037, + 23.589469214915113 + ] + }, + "properties": { + "id": "meter-15033", + "maker": "Maker G", + "model": "Model 15033", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.124893272972606, + 21.436592215023254 + ] + }, + "properties": { + "id": "meter-15034", + "maker": "Maker F", + "model": "Model 15034", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.76263704278963, + 18.921498891270822 + ] + }, + "properties": { + "id": "meter-15035", + "maker": "Maker A", + "model": "Model 15035", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.955513663225204, + 24.45589703835273 + ] + }, + "properties": { + "id": "meter-15036", + "maker": "Maker C", + "model": "Model 15036", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.555047190960906, + 26.869284600901672 + ] + }, + "properties": { + "id": "meter-15037", + "maker": "Maker B", + "model": "Model 15037", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.002936289031894, + 19.70418754875175 + ] + }, + "properties": { + "id": "meter-15038", + "maker": "Maker G", + "model": "Model 15038", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.190299635095165, + 18.91703224877614 + ] + }, + "properties": { + "id": "meter-15039", + "maker": "Maker D", + "model": "Model 15039", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.54053728931477, + 21.888006114510738 + ] + }, + "properties": { + "id": "meter-15040", + "maker": "Maker E", + "model": "Model 15040", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.46754219182668, + 22.547303250936167 + ] + }, + "properties": { + "id": "meter-15041", + "maker": "Maker I", + "model": "Model 15041", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.39974763286123, + 26.702270420180426 + ] + }, + "properties": { + "id": "meter-15042", + "maker": "Maker F", + "model": "Model 15042", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.537778642519726, + 21.651137091831842 + ] + }, + "properties": { + "id": "meter-15043", + "maker": "Maker A", + "model": "Model 15043", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.6883459803219, + 25.27841940788319 + ] + }, + "properties": { + "id": "meter-15044", + "maker": "Maker J", + "model": "Model 15044", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.084011422192006, + 30.39682560298835 + ] + }, + "properties": { + "id": "meter-15045", + "maker": "Maker J", + "model": "Model 15045", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.64685035986366, + 26.410804697129517 + ] + }, + "properties": { + "id": "meter-15046", + "maker": "Maker B", + "model": "Model 15046", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.8365080843369, + 24.883157339782798 + ] + }, + "properties": { + "id": "meter-15047", + "maker": "Maker J", + "model": "Model 15047", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.55083231093871, + 20.933792978879158 + ] + }, + "properties": { + "id": "meter-15048", + "maker": "Maker A", + "model": "Model 15048", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.68893693000709, + 25.137510650033363 + ] + }, + "properties": { + "id": "meter-15049", + "maker": "Maker J", + "model": "Model 15049", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.56872443226593, + 24.941947384204415 + ] + }, + "properties": { + "id": "meter-15050", + "maker": "Maker G", + "model": "Model 15050", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.42064461322872, + 21.56657222932512 + ] + }, + "properties": { + "id": "meter-15051", + "maker": "Maker G", + "model": "Model 15051", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.0276793403726, + 23.186235392410083 + ] + }, + "properties": { + "id": "meter-15052", + "maker": "Maker G", + "model": "Model 15052", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.57297857170532, + 20.943631117469955 + ] + }, + "properties": { + "id": "meter-15053", + "maker": "Maker G", + "model": "Model 15053", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.17345845984074, + 30.45531641657827 + ] + }, + "properties": { + "id": "meter-15054", + "maker": "Maker G", + "model": "Model 15054", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.05748525406601, + 24.886805113771736 + ] + }, + "properties": { + "id": "meter-15055", + "maker": "Maker E", + "model": "Model 15055", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.91970405379772, + 20.335294851224173 + ] + }, + "properties": { + "id": "meter-15056", + "maker": "Maker E", + "model": "Model 15056", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.35732487924262, + 26.997407405163184 + ] + }, + "properties": { + "id": "meter-15057", + "maker": "Maker I", + "model": "Model 15057", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.890540233232684, + 19.3913303291799 + ] + }, + "properties": { + "id": "meter-15058", + "maker": "Maker D", + "model": "Model 15058", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.047089678819674, + 23.507881979885397 + ] + }, + "properties": { + "id": "meter-15059", + "maker": "Maker H", + "model": "Model 15059", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.754630478201925, + 20.827216865479343 + ] + }, + "properties": { + "id": "meter-15060", + "maker": "Maker F", + "model": "Model 15060", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.19521482338922, + 17.620019436681638 + ] + }, + "properties": { + "id": "meter-15061", + "maker": "Maker C", + "model": "Model 15061", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.908004868720454, + 25.62547740516099 + ] + }, + "properties": { + "id": "meter-15062", + "maker": "Maker F", + "model": "Model 15062", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.12426074389252, + 26.885798437103965 + ] + }, + "properties": { + "id": "meter-15063", + "maker": "Maker F", + "model": "Model 15063", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.5936611779434, + 27.8018302750726 + ] + }, + "properties": { + "id": "meter-15064", + "maker": "Maker I", + "model": "Model 15064", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.7104493415646, + 20.96620480087853 + ] + }, + "properties": { + "id": "meter-15065", + "maker": "Maker A", + "model": "Model 15065", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89524415527476, + 25.190242629029214 + ] + }, + "properties": { + "id": "meter-15066", + "maker": "Maker D", + "model": "Model 15066", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.62336452366695, + 25.44392753240139 + ] + }, + "properties": { + "id": "meter-15067", + "maker": "Maker A", + "model": "Model 15067", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.57008436135878, + 18.07621919377155 + ] + }, + "properties": { + "id": "meter-15068", + "maker": "Maker E", + "model": "Model 15068", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.72065983624553, + 20.839560896267546 + ] + }, + "properties": { + "id": "meter-15069", + "maker": "Maker G", + "model": "Model 15069", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.233663534229656, + 19.497054678089125 + ] + }, + "properties": { + "id": "meter-15070", + "maker": "Maker J", + "model": "Model 15070", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.7437269470874, + 31.685156630656444 + ] + }, + "properties": { + "id": "meter-15071", + "maker": "Maker G", + "model": "Model 15071", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.28191615153133, + 19.741700152010907 + ] + }, + "properties": { + "id": "meter-15072", + "maker": "Maker F", + "model": "Model 15072", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.10188931722003, + 26.97187617715368 + ] + }, + "properties": { + "id": "meter-15073", + "maker": "Maker A", + "model": "Model 15073", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.57303521435706, + 19.903494722288965 + ] + }, + "properties": { + "id": "meter-15074", + "maker": "Maker C", + "model": "Model 15074", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.442552905573066, + 22.63511643226189 + ] + }, + "properties": { + "id": "meter-15075", + "maker": "Maker C", + "model": "Model 15075", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.486549336015315, + 20.976937707117465 + ] + }, + "properties": { + "id": "meter-15076", + "maker": "Maker J", + "model": "Model 15076", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.51095790184448, + 25.942567495092593 + ] + }, + "properties": { + "id": "meter-15077", + "maker": "Maker G", + "model": "Model 15077", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.92436822293707, + 24.019981074564882 + ] + }, + "properties": { + "id": "meter-15078", + "maker": "Maker J", + "model": "Model 15078", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.18776119409842, + 24.60826352480234 + ] + }, + "properties": { + "id": "meter-15079", + "maker": "Maker E", + "model": "Model 15079", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.77431671495377, + 27.096778476876857 + ] + }, + "properties": { + "id": "meter-15080", + "maker": "Maker B", + "model": "Model 15080", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.17180937567595, + 21.893290603103218 + ] + }, + "properties": { + "id": "meter-15081", + "maker": "Maker A", + "model": "Model 15081", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52904859969734, + 18.33944570713568 + ] + }, + "properties": { + "id": "meter-15082", + "maker": "Maker I", + "model": "Model 15082", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.50864990456686, + 21.565682567374463 + ] + }, + "properties": { + "id": "meter-15083", + "maker": "Maker D", + "model": "Model 15083", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.10761668442523, + 24.588354071629716 + ] + }, + "properties": { + "id": "meter-15084", + "maker": "Maker J", + "model": "Model 15084", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.83680744012128, + 25.958990823033282 + ] + }, + "properties": { + "id": "meter-15085", + "maker": "Maker F", + "model": "Model 15085", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.24814952789177, + 29.37968632730101 + ] + }, + "properties": { + "id": "meter-15086", + "maker": "Maker I", + "model": "Model 15086", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.59325732961267, + 26.39051325659032 + ] + }, + "properties": { + "id": "meter-15087", + "maker": "Maker G", + "model": "Model 15087", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.5416728873999, + 25.114128755685545 + ] + }, + "properties": { + "id": "meter-15088", + "maker": "Maker D", + "model": "Model 15088", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.928705383229854, + 25.356913005235633 + ] + }, + "properties": { + "id": "meter-15089", + "maker": "Maker G", + "model": "Model 15089", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.83574577746476, + 27.833935768736232 + ] + }, + "properties": { + "id": "meter-15090", + "maker": "Maker J", + "model": "Model 15090", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.30053811719995, + 22.061017711415005 + ] + }, + "properties": { + "id": "meter-15091", + "maker": "Maker H", + "model": "Model 15091", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.944542673389044, + 22.574944961427263 + ] + }, + "properties": { + "id": "meter-15092", + "maker": "Maker F", + "model": "Model 15092", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.13834201008585, + 28.869932775776945 + ] + }, + "properties": { + "id": "meter-15093", + "maker": "Maker J", + "model": "Model 15093", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.437312740065664, + 31.811417758492638 + ] + }, + "properties": { + "id": "meter-15094", + "maker": "Maker A", + "model": "Model 15094", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.368748910813125, + 22.022255157907146 + ] + }, + "properties": { + "id": "meter-15095", + "maker": "Maker G", + "model": "Model 15095", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.721947707413925, + 27.192540448057628 + ] + }, + "properties": { + "id": "meter-15096", + "maker": "Maker G", + "model": "Model 15096", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.50381562265451, + 26.53032000389348 + ] + }, + "properties": { + "id": "meter-15097", + "maker": "Maker D", + "model": "Model 15097", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.70744932979544, + 22.768964726366423 + ] + }, + "properties": { + "id": "meter-15098", + "maker": "Maker A", + "model": "Model 15098", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.11190327247077, + 21.188205364981734 + ] + }, + "properties": { + "id": "meter-15099", + "maker": "Maker H", + "model": "Model 15099", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.85039310845778, + 20.694198428501306 + ] + }, + "properties": { + "id": "meter-15100", + "maker": "Maker C", + "model": "Model 15100", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.73360500270578, + 26.26473004415339 + ] + }, + "properties": { + "id": "meter-15101", + "maker": "Maker G", + "model": "Model 15101", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.05069091580728, + 27.211883803918482 + ] + }, + "properties": { + "id": "meter-15102", + "maker": "Maker G", + "model": "Model 15102", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.24520803819192, + 19.779972100769356 + ] + }, + "properties": { + "id": "meter-15103", + "maker": "Maker F", + "model": "Model 15103", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.97859745166288, + 21.351289289067793 + ] + }, + "properties": { + "id": "meter-15104", + "maker": "Maker F", + "model": "Model 15104", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.81904248194008, + 23.980106959792835 + ] + }, + "properties": { + "id": "meter-15105", + "maker": "Maker G", + "model": "Model 15105", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.08075546532935, + 25.80623303440753 + ] + }, + "properties": { + "id": "meter-15106", + "maker": "Maker E", + "model": "Model 15106", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73457842383419, + 29.00985727670503 + ] + }, + "properties": { + "id": "meter-15107", + "maker": "Maker D", + "model": "Model 15107", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.36716229728098, + 18.1042437266494 + ] + }, + "properties": { + "id": "meter-15108", + "maker": "Maker E", + "model": "Model 15108", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.84048960267832, + 22.863960922571586 + ] + }, + "properties": { + "id": "meter-15109", + "maker": "Maker F", + "model": "Model 15109", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.07044069982167, + 21.611165027165796 + ] + }, + "properties": { + "id": "meter-15110", + "maker": "Maker H", + "model": "Model 15110", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.467179042608564, + 27.190330385163275 + ] + }, + "properties": { + "id": "meter-15111", + "maker": "Maker A", + "model": "Model 15111", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.458687973819735, + 18.90327294056961 + ] + }, + "properties": { + "id": "meter-15112", + "maker": "Maker A", + "model": "Model 15112", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.92780441421832, + 25.405336642626146 + ] + }, + "properties": { + "id": "meter-15113", + "maker": "Maker G", + "model": "Model 15113", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.1035415173325, + 22.28599841992137 + ] + }, + "properties": { + "id": "meter-15114", + "maker": "Maker H", + "model": "Model 15114", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.885349262459684, + 26.582145111532544 + ] + }, + "properties": { + "id": "meter-15115", + "maker": "Maker D", + "model": "Model 15115", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.53583279459852, + 27.544848386687228 + ] + }, + "properties": { + "id": "meter-15116", + "maker": "Maker A", + "model": "Model 15116", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.640624406221306, + 25.928506759409665 + ] + }, + "properties": { + "id": "meter-15117", + "maker": "Maker B", + "model": "Model 15117", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62347909678762, + 21.049969546139934 + ] + }, + "properties": { + "id": "meter-15118", + "maker": "Maker J", + "model": "Model 15118", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.60324287335158, + 25.78575956601356 + ] + }, + "properties": { + "id": "meter-15119", + "maker": "Maker B", + "model": "Model 15119", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.41642803627897, + 23.514846848728254 + ] + }, + "properties": { + "id": "meter-15120", + "maker": "Maker G", + "model": "Model 15120", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.51277720444721, + 27.39179744387304 + ] + }, + "properties": { + "id": "meter-15121", + "maker": "Maker E", + "model": "Model 15121", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.26029612912758, + 27.168264527383894 + ] + }, + "properties": { + "id": "meter-15122", + "maker": "Maker C", + "model": "Model 15122", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.176124456804786, + 25.818642366639004 + ] + }, + "properties": { + "id": "meter-15123", + "maker": "Maker I", + "model": "Model 15123", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.7426930521772, + 26.32445516895281 + ] + }, + "properties": { + "id": "meter-15124", + "maker": "Maker A", + "model": "Model 15124", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.19487771771258, + 22.08178364728019 + ] + }, + "properties": { + "id": "meter-15125", + "maker": "Maker D", + "model": "Model 15125", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68107768587339, + 21.760750269025927 + ] + }, + "properties": { + "id": "meter-15126", + "maker": "Maker G", + "model": "Model 15126", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.38638406684379, + 23.133032225522985 + ] + }, + "properties": { + "id": "meter-15127", + "maker": "Maker F", + "model": "Model 15127", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.79250259612333, + 24.52592285496016 + ] + }, + "properties": { + "id": "meter-15128", + "maker": "Maker H", + "model": "Model 15128", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.5720486736429, + 21.92822139764821 + ] + }, + "properties": { + "id": "meter-15129", + "maker": "Maker C", + "model": "Model 15129", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.90338338548678, + 23.780580377868684 + ] + }, + "properties": { + "id": "meter-15130", + "maker": "Maker B", + "model": "Model 15130", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.807829538078494, + 25.784506261803884 + ] + }, + "properties": { + "id": "meter-15131", + "maker": "Maker I", + "model": "Model 15131", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.860723804517114, + 25.17429119059562 + ] + }, + "properties": { + "id": "meter-15132", + "maker": "Maker C", + "model": "Model 15132", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.02162218691083, + 24.906364743033087 + ] + }, + "properties": { + "id": "meter-15133", + "maker": "Maker B", + "model": "Model 15133", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.809941775493996, + 21.18673667689145 + ] + }, + "properties": { + "id": "meter-15134", + "maker": "Maker G", + "model": "Model 15134", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.825225240320115, + 27.129320036979863 + ] + }, + "properties": { + "id": "meter-15135", + "maker": "Maker F", + "model": "Model 15135", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.296872405597185, + 17.493054550112742 + ] + }, + "properties": { + "id": "meter-15136", + "maker": "Maker C", + "model": "Model 15136", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.68619444934852, + 24.341914245042073 + ] + }, + "properties": { + "id": "meter-15137", + "maker": "Maker B", + "model": "Model 15137", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.78965970381203, + 25.251294630961322 + ] + }, + "properties": { + "id": "meter-15138", + "maker": "Maker D", + "model": "Model 15138", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.99265500320344, + 22.40269171266376 + ] + }, + "properties": { + "id": "meter-15139", + "maker": "Maker E", + "model": "Model 15139", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.86409260176563, + 21.67276069271322 + ] + }, + "properties": { + "id": "meter-15140", + "maker": "Maker J", + "model": "Model 15140", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.62837406728638, + 27.18658522445113 + ] + }, + "properties": { + "id": "meter-15141", + "maker": "Maker D", + "model": "Model 15141", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.288620185174594, + 22.626484135465518 + ] + }, + "properties": { + "id": "meter-15142", + "maker": "Maker E", + "model": "Model 15142", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.41039279481019, + 22.05232239913235 + ] + }, + "properties": { + "id": "meter-15143", + "maker": "Maker I", + "model": "Model 15143", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.88758304724917, + 17.9928542604382 + ] + }, + "properties": { + "id": "meter-15144", + "maker": "Maker D", + "model": "Model 15144", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.89828684872609, + 26.457392224073217 + ] + }, + "properties": { + "id": "meter-15145", + "maker": "Maker B", + "model": "Model 15145", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.21945945629365, + 23.995735852286558 + ] + }, + "properties": { + "id": "meter-15146", + "maker": "Maker H", + "model": "Model 15146", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.95087667505368, + 25.04739860091331 + ] + }, + "properties": { + "id": "meter-15147", + "maker": "Maker D", + "model": "Model 15147", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.159822204698145, + 21.002780946667762 + ] + }, + "properties": { + "id": "meter-15148", + "maker": "Maker C", + "model": "Model 15148", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.04745433465716, + 29.703983886510294 + ] + }, + "properties": { + "id": "meter-15149", + "maker": "Maker H", + "model": "Model 15149", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.42733908153139, + 18.65006146458735 + ] + }, + "properties": { + "id": "meter-15150", + "maker": "Maker C", + "model": "Model 15150", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47906888289793, + 23.062982968894858 + ] + }, + "properties": { + "id": "meter-15151", + "maker": "Maker A", + "model": "Model 15151", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.23915287505202, + 26.023393018631943 + ] + }, + "properties": { + "id": "meter-15152", + "maker": "Maker A", + "model": "Model 15152", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.80766760572909, + 28.010776739464596 + ] + }, + "properties": { + "id": "meter-15153", + "maker": "Maker J", + "model": "Model 15153", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.5441628323728, + 27.03477751510681 + ] + }, + "properties": { + "id": "meter-15154", + "maker": "Maker J", + "model": "Model 15154", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.203325437722825, + 19.485239307345502 + ] + }, + "properties": { + "id": "meter-15155", + "maker": "Maker F", + "model": "Model 15155", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.746248856628796, + 30.55091781999733 + ] + }, + "properties": { + "id": "meter-15156", + "maker": "Maker B", + "model": "Model 15156", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.518740437245945, + 27.323066504165098 + ] + }, + "properties": { + "id": "meter-15157", + "maker": "Maker C", + "model": "Model 15157", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.66490943857566, + 30.58698162239089 + ] + }, + "properties": { + "id": "meter-15158", + "maker": "Maker A", + "model": "Model 15158", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.643448387327496, + 27.252706615612926 + ] + }, + "properties": { + "id": "meter-15159", + "maker": "Maker I", + "model": "Model 15159", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.5247991923041, + 26.83974309005499 + ] + }, + "properties": { + "id": "meter-15160", + "maker": "Maker J", + "model": "Model 15160", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.5554059820658, + 17.810918809624745 + ] + }, + "properties": { + "id": "meter-15161", + "maker": "Maker A", + "model": "Model 15161", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.16153598445187, + 21.563300903987567 + ] + }, + "properties": { + "id": "meter-15162", + "maker": "Maker E", + "model": "Model 15162", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.67603925380333, + 26.569584896789006 + ] + }, + "properties": { + "id": "meter-15163", + "maker": "Maker G", + "model": "Model 15163", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.34792442249629, + 19.919944467092314 + ] + }, + "properties": { + "id": "meter-15164", + "maker": "Maker E", + "model": "Model 15164", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.99445130494114, + 27.976236822298148 + ] + }, + "properties": { + "id": "meter-15165", + "maker": "Maker A", + "model": "Model 15165", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.08650596509862, + 19.83997018013857 + ] + }, + "properties": { + "id": "meter-15166", + "maker": "Maker D", + "model": "Model 15166", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.98024504846094, + 19.080665063963252 + ] + }, + "properties": { + "id": "meter-15167", + "maker": "Maker B", + "model": "Model 15167", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.957207158542666, + 25.798710631256363 + ] + }, + "properties": { + "id": "meter-15168", + "maker": "Maker C", + "model": "Model 15168", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.466915165030706, + 30.645014656414226 + ] + }, + "properties": { + "id": "meter-15169", + "maker": "Maker F", + "model": "Model 15169", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45482002543208, + 31.22027823037369 + ] + }, + "properties": { + "id": "meter-15170", + "maker": "Maker G", + "model": "Model 15170", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.60592342340096, + 23.98148718865105 + ] + }, + "properties": { + "id": "meter-15171", + "maker": "Maker C", + "model": "Model 15171", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.29885541542178, + 25.280215196034007 + ] + }, + "properties": { + "id": "meter-15172", + "maker": "Maker D", + "model": "Model 15172", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.06041681536533, + 25.49124140082067 + ] + }, + "properties": { + "id": "meter-15173", + "maker": "Maker J", + "model": "Model 15173", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.77475296028602, + 17.503957388631797 + ] + }, + "properties": { + "id": "meter-15174", + "maker": "Maker J", + "model": "Model 15174", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.605716795685815, + 25.793841025328483 + ] + }, + "properties": { + "id": "meter-15175", + "maker": "Maker D", + "model": "Model 15175", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.90915270099824, + 20.99697885888333 + ] + }, + "properties": { + "id": "meter-15176", + "maker": "Maker A", + "model": "Model 15176", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.0404655937532, + 31.007516828689944 + ] + }, + "properties": { + "id": "meter-15177", + "maker": "Maker J", + "model": "Model 15177", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.885045040987876, + 27.99351343279273 + ] + }, + "properties": { + "id": "meter-15178", + "maker": "Maker E", + "model": "Model 15178", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.41908445548274, + 19.13598751868514 + ] + }, + "properties": { + "id": "meter-15179", + "maker": "Maker G", + "model": "Model 15179", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.27544885642323, + 24.670746270064246 + ] + }, + "properties": { + "id": "meter-15180", + "maker": "Maker J", + "model": "Model 15180", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.187760673103426, + 20.16538448138852 + ] + }, + "properties": { + "id": "meter-15181", + "maker": "Maker E", + "model": "Model 15181", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.56876593209327, + 21.4727906169023 + ] + }, + "properties": { + "id": "meter-15182", + "maker": "Maker I", + "model": "Model 15182", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.833104419167796, + 20.71595799610686 + ] + }, + "properties": { + "id": "meter-15183", + "maker": "Maker G", + "model": "Model 15183", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.402381348791224, + 30.05131852579573 + ] + }, + "properties": { + "id": "meter-15184", + "maker": "Maker C", + "model": "Model 15184", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.05311612110512, + 24.42046875666394 + ] + }, + "properties": { + "id": "meter-15185", + "maker": "Maker D", + "model": "Model 15185", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.211847837250055, + 19.432781483858783 + ] + }, + "properties": { + "id": "meter-15186", + "maker": "Maker B", + "model": "Model 15186", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15060426702951, + 23.37363372673032 + ] + }, + "properties": { + "id": "meter-15187", + "maker": "Maker C", + "model": "Model 15187", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.639197613194064, + 28.02553440924744 + ] + }, + "properties": { + "id": "meter-15188", + "maker": "Maker H", + "model": "Model 15188", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.31468583175103, + 22.308986943234054 + ] + }, + "properties": { + "id": "meter-15189", + "maker": "Maker G", + "model": "Model 15189", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.89433348875119, + 22.64015493380405 + ] + }, + "properties": { + "id": "meter-15190", + "maker": "Maker E", + "model": "Model 15190", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.93553530666111, + 20.29887902638531 + ] + }, + "properties": { + "id": "meter-15191", + "maker": "Maker E", + "model": "Model 15191", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.31716749889909, + 19.083902832556213 + ] + }, + "properties": { + "id": "meter-15192", + "maker": "Maker E", + "model": "Model 15192", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.254678510003174, + 19.626810079409935 + ] + }, + "properties": { + "id": "meter-15193", + "maker": "Maker D", + "model": "Model 15193", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.060594088903834, + 20.58577377877197 + ] + }, + "properties": { + "id": "meter-15194", + "maker": "Maker D", + "model": "Model 15194", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.06500924030158, + 19.856146853273515 + ] + }, + "properties": { + "id": "meter-15195", + "maker": "Maker B", + "model": "Model 15195", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.19723962238273, + 31.620132927169216 + ] + }, + "properties": { + "id": "meter-15196", + "maker": "Maker J", + "model": "Model 15196", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.149086647254535, + 23.320284566510487 + ] + }, + "properties": { + "id": "meter-15197", + "maker": "Maker B", + "model": "Model 15197", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09856259536006, + 31.36896706738241 + ] + }, + "properties": { + "id": "meter-15198", + "maker": "Maker A", + "model": "Model 15198", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.08981979378735, + 28.774960402692447 + ] + }, + "properties": { + "id": "meter-15199", + "maker": "Maker F", + "model": "Model 15199", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.789395735384346, + 21.66703193369347 + ] + }, + "properties": { + "id": "meter-15200", + "maker": "Maker A", + "model": "Model 15200", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.14379409513415, + 24.36078789407728 + ] + }, + "properties": { + "id": "meter-15201", + "maker": "Maker H", + "model": "Model 15201", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.42625178005058, + 21.639973886793946 + ] + }, + "properties": { + "id": "meter-15202", + "maker": "Maker C", + "model": "Model 15202", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.67572234573579, + 21.790863217694366 + ] + }, + "properties": { + "id": "meter-15203", + "maker": "Maker H", + "model": "Model 15203", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.66655482770775, + 23.066717384997844 + ] + }, + "properties": { + "id": "meter-15204", + "maker": "Maker I", + "model": "Model 15204", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.1114924935116, + 30.317584587821834 + ] + }, + "properties": { + "id": "meter-15205", + "maker": "Maker J", + "model": "Model 15205", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.96832832866509, + 20.441461006174258 + ] + }, + "properties": { + "id": "meter-15206", + "maker": "Maker A", + "model": "Model 15206", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.8833299685401, + 21.69429173265404 + ] + }, + "properties": { + "id": "meter-15207", + "maker": "Maker I", + "model": "Model 15207", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.85658608989334, + 19.590380780202814 + ] + }, + "properties": { + "id": "meter-15208", + "maker": "Maker H", + "model": "Model 15208", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.58444987261322, + 26.749043747974923 + ] + }, + "properties": { + "id": "meter-15209", + "maker": "Maker C", + "model": "Model 15209", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.9200080808948, + 21.671969934309157 + ] + }, + "properties": { + "id": "meter-15210", + "maker": "Maker J", + "model": "Model 15210", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.560299828854376, + 21.28377329426519 + ] + }, + "properties": { + "id": "meter-15211", + "maker": "Maker D", + "model": "Model 15211", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.25509416912252, + 20.743722124547194 + ] + }, + "properties": { + "id": "meter-15212", + "maker": "Maker J", + "model": "Model 15212", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.295616142949925, + 25.62762035700235 + ] + }, + "properties": { + "id": "meter-15213", + "maker": "Maker B", + "model": "Model 15213", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.26781275865435, + 21.339975431521026 + ] + }, + "properties": { + "id": "meter-15214", + "maker": "Maker I", + "model": "Model 15214", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.86971801665374, + 28.145199163547293 + ] + }, + "properties": { + "id": "meter-15215", + "maker": "Maker E", + "model": "Model 15215", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.04946672725117, + 19.962266893011467 + ] + }, + "properties": { + "id": "meter-15216", + "maker": "Maker I", + "model": "Model 15216", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.89080875025196, + 24.866285112624396 + ] + }, + "properties": { + "id": "meter-15217", + "maker": "Maker E", + "model": "Model 15217", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.368431078714316, + 22.456123320137454 + ] + }, + "properties": { + "id": "meter-15218", + "maker": "Maker H", + "model": "Model 15218", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.96757028875899, + 22.244185949295073 + ] + }, + "properties": { + "id": "meter-15219", + "maker": "Maker H", + "model": "Model 15219", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.73998770956753, + 24.855825635812757 + ] + }, + "properties": { + "id": "meter-15220", + "maker": "Maker F", + "model": "Model 15220", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.24651960769046, + 26.069601816708317 + ] + }, + "properties": { + "id": "meter-15221", + "maker": "Maker F", + "model": "Model 15221", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.44093013858546, + 17.36521438350207 + ] + }, + "properties": { + "id": "meter-15222", + "maker": "Maker G", + "model": "Model 15222", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.182793359493346, + 25.33719375291573 + ] + }, + "properties": { + "id": "meter-15223", + "maker": "Maker D", + "model": "Model 15223", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.40504220698855, + 26.261756427091775 + ] + }, + "properties": { + "id": "meter-15224", + "maker": "Maker D", + "model": "Model 15224", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.989284741976256, + 23.97024352001618 + ] + }, + "properties": { + "id": "meter-15225", + "maker": "Maker A", + "model": "Model 15225", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.2553482751495, + 24.75613222382944 + ] + }, + "properties": { + "id": "meter-15226", + "maker": "Maker J", + "model": "Model 15226", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.48113444823592, + 30.508602761160653 + ] + }, + "properties": { + "id": "meter-15227", + "maker": "Maker D", + "model": "Model 15227", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.41673538930467, + 29.414868283267754 + ] + }, + "properties": { + "id": "meter-15228", + "maker": "Maker F", + "model": "Model 15228", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.12326213540546, + 19.945782376355652 + ] + }, + "properties": { + "id": "meter-15229", + "maker": "Maker B", + "model": "Model 15229", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.7986055536148, + 27.735707600018692 + ] + }, + "properties": { + "id": "meter-15230", + "maker": "Maker I", + "model": "Model 15230", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.59545113565173, + 22.078698859531233 + ] + }, + "properties": { + "id": "meter-15231", + "maker": "Maker B", + "model": "Model 15231", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.501069589181625, + 21.160236662883914 + ] + }, + "properties": { + "id": "meter-15232", + "maker": "Maker A", + "model": "Model 15232", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.25292406441127, + 18.54086011583615 + ] + }, + "properties": { + "id": "meter-15233", + "maker": "Maker I", + "model": "Model 15233", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.8820902309034, + 28.827748606781675 + ] + }, + "properties": { + "id": "meter-15234", + "maker": "Maker D", + "model": "Model 15234", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.07595699201669, + 23.092651099458337 + ] + }, + "properties": { + "id": "meter-15235", + "maker": "Maker F", + "model": "Model 15235", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.90735498830614, + 23.48548624664108 + ] + }, + "properties": { + "id": "meter-15236", + "maker": "Maker F", + "model": "Model 15236", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.220121980626786, + 27.133913760412128 + ] + }, + "properties": { + "id": "meter-15237", + "maker": "Maker B", + "model": "Model 15237", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.755550840676335, + 22.988624979613107 + ] + }, + "properties": { + "id": "meter-15238", + "maker": "Maker G", + "model": "Model 15238", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.844149074296375, + 22.252725580559133 + ] + }, + "properties": { + "id": "meter-15239", + "maker": "Maker I", + "model": "Model 15239", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.47278740130393, + 25.714364692735522 + ] + }, + "properties": { + "id": "meter-15240", + "maker": "Maker E", + "model": "Model 15240", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.22496285135526, + 28.272820810993252 + ] + }, + "properties": { + "id": "meter-15241", + "maker": "Maker F", + "model": "Model 15241", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.250768304708245, + 30.95955247410641 + ] + }, + "properties": { + "id": "meter-15242", + "maker": "Maker A", + "model": "Model 15242", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.71934082908336, + 22.38759538143549 + ] + }, + "properties": { + "id": "meter-15243", + "maker": "Maker G", + "model": "Model 15243", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.20785607186734, + 20.138603625163643 + ] + }, + "properties": { + "id": "meter-15244", + "maker": "Maker F", + "model": "Model 15244", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.68623253670501, + 23.934487231575414 + ] + }, + "properties": { + "id": "meter-15245", + "maker": "Maker H", + "model": "Model 15245", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.80771803499644, + 23.358656784553695 + ] + }, + "properties": { + "id": "meter-15246", + "maker": "Maker F", + "model": "Model 15246", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.566929636627385, + 27.902231055886915 + ] + }, + "properties": { + "id": "meter-15247", + "maker": "Maker I", + "model": "Model 15247", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.79776913392497, + 22.237165865664426 + ] + }, + "properties": { + "id": "meter-15248", + "maker": "Maker C", + "model": "Model 15248", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.224500040779084, + 26.321116995367905 + ] + }, + "properties": { + "id": "meter-15249", + "maker": "Maker F", + "model": "Model 15249", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.02625583354351, + 25.667195779350628 + ] + }, + "properties": { + "id": "meter-15250", + "maker": "Maker G", + "model": "Model 15250", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.85004867410055, + 26.41067940303956 + ] + }, + "properties": { + "id": "meter-15251", + "maker": "Maker F", + "model": "Model 15251", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.098893540816945, + 24.197473326722427 + ] + }, + "properties": { + "id": "meter-15252", + "maker": "Maker E", + "model": "Model 15252", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.60059845347757, + 22.482318407166517 + ] + }, + "properties": { + "id": "meter-15253", + "maker": "Maker E", + "model": "Model 15253", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.79379471631219, + 21.472960225306654 + ] + }, + "properties": { + "id": "meter-15254", + "maker": "Maker G", + "model": "Model 15254", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.51188304573316, + 21.123204705240138 + ] + }, + "properties": { + "id": "meter-15255", + "maker": "Maker G", + "model": "Model 15255", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.73723092894424, + 28.86794508390939 + ] + }, + "properties": { + "id": "meter-15256", + "maker": "Maker B", + "model": "Model 15256", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.4712710109292, + 24.081146231780348 + ] + }, + "properties": { + "id": "meter-15257", + "maker": "Maker I", + "model": "Model 15257", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.93943550042638, + 20.352059593419682 + ] + }, + "properties": { + "id": "meter-15258", + "maker": "Maker J", + "model": "Model 15258", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.112295627701016, + 29.562258794562446 + ] + }, + "properties": { + "id": "meter-15259", + "maker": "Maker C", + "model": "Model 15259", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.83836043110331, + 24.220351188551987 + ] + }, + "properties": { + "id": "meter-15260", + "maker": "Maker F", + "model": "Model 15260", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.40773970658409, + 20.5819638139365 + ] + }, + "properties": { + "id": "meter-15261", + "maker": "Maker J", + "model": "Model 15261", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.71325305904479, + 18.676590327382005 + ] + }, + "properties": { + "id": "meter-15262", + "maker": "Maker I", + "model": "Model 15262", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.657610523757256, + 26.84301678521323 + ] + }, + "properties": { + "id": "meter-15263", + "maker": "Maker C", + "model": "Model 15263", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.42332800347284, + 29.434114713646956 + ] + }, + "properties": { + "id": "meter-15264", + "maker": "Maker I", + "model": "Model 15264", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.69282523868166, + 23.011438546941438 + ] + }, + "properties": { + "id": "meter-15265", + "maker": "Maker E", + "model": "Model 15265", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.2840940291089, + 27.487451460804607 + ] + }, + "properties": { + "id": "meter-15266", + "maker": "Maker H", + "model": "Model 15266", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.262641839072764, + 25.37039868784447 + ] + }, + "properties": { + "id": "meter-15267", + "maker": "Maker D", + "model": "Model 15267", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.62325788578977, + 28.906450472508105 + ] + }, + "properties": { + "id": "meter-15268", + "maker": "Maker A", + "model": "Model 15268", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.82113050470525, + 21.698863704393588 + ] + }, + "properties": { + "id": "meter-15269", + "maker": "Maker C", + "model": "Model 15269", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.28780845568977, + 22.444304001760223 + ] + }, + "properties": { + "id": "meter-15270", + "maker": "Maker G", + "model": "Model 15270", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.011688653354966, + 25.025816056537185 + ] + }, + "properties": { + "id": "meter-15271", + "maker": "Maker H", + "model": "Model 15271", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.96127605234297, + 19.870352981613998 + ] + }, + "properties": { + "id": "meter-15272", + "maker": "Maker A", + "model": "Model 15272", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.20339515267938, + 20.72216097096231 + ] + }, + "properties": { + "id": "meter-15273", + "maker": "Maker H", + "model": "Model 15273", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.25413437004384, + 18.791884963628057 + ] + }, + "properties": { + "id": "meter-15274", + "maker": "Maker H", + "model": "Model 15274", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.890256944387914, + 22.699781020684433 + ] + }, + "properties": { + "id": "meter-15275", + "maker": "Maker C", + "model": "Model 15275", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.45809651552193, + 29.010686896841875 + ] + }, + "properties": { + "id": "meter-15276", + "maker": "Maker G", + "model": "Model 15276", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.549673572342336, + 21.050108986354807 + ] + }, + "properties": { + "id": "meter-15277", + "maker": "Maker A", + "model": "Model 15277", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.94386329301982, + 19.821652782784074 + ] + }, + "properties": { + "id": "meter-15278", + "maker": "Maker C", + "model": "Model 15278", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.637558332934184, + 22.020024287503897 + ] + }, + "properties": { + "id": "meter-15279", + "maker": "Maker J", + "model": "Model 15279", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.06584099526995, + 20.205053062835518 + ] + }, + "properties": { + "id": "meter-15280", + "maker": "Maker C", + "model": "Model 15280", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.61903236498695, + 26.047541088807037 + ] + }, + "properties": { + "id": "meter-15281", + "maker": "Maker D", + "model": "Model 15281", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.85094050961976, + 20.01764357128676 + ] + }, + "properties": { + "id": "meter-15282", + "maker": "Maker D", + "model": "Model 15282", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.33834174815633, + 29.021981800683783 + ] + }, + "properties": { + "id": "meter-15283", + "maker": "Maker E", + "model": "Model 15283", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.72419236247194, + 29.015043263757413 + ] + }, + "properties": { + "id": "meter-15284", + "maker": "Maker C", + "model": "Model 15284", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.662721017906634, + 27.41730216273596 + ] + }, + "properties": { + "id": "meter-15285", + "maker": "Maker I", + "model": "Model 15285", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.008020085935996, + 18.124662202954294 + ] + }, + "properties": { + "id": "meter-15286", + "maker": "Maker A", + "model": "Model 15286", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.37694659307484, + 17.816273071026465 + ] + }, + "properties": { + "id": "meter-15287", + "maker": "Maker J", + "model": "Model 15287", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92059945258242, + 24.721408837320265 + ] + }, + "properties": { + "id": "meter-15288", + "maker": "Maker G", + "model": "Model 15288", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.00321663697853, + 26.058964574030085 + ] + }, + "properties": { + "id": "meter-15289", + "maker": "Maker H", + "model": "Model 15289", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.694594589046176, + 22.633325165154115 + ] + }, + "properties": { + "id": "meter-15290", + "maker": "Maker E", + "model": "Model 15290", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.87035110949384, + 25.41471463593822 + ] + }, + "properties": { + "id": "meter-15291", + "maker": "Maker F", + "model": "Model 15291", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.2847043601484, + 18.24741670089196 + ] + }, + "properties": { + "id": "meter-15292", + "maker": "Maker D", + "model": "Model 15292", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.74109993944869, + 21.316696424213333 + ] + }, + "properties": { + "id": "meter-15293", + "maker": "Maker B", + "model": "Model 15293", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.552612640973386, + 29.154358380955614 + ] + }, + "properties": { + "id": "meter-15294", + "maker": "Maker F", + "model": "Model 15294", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.52391247085738, + 25.091369479597887 + ] + }, + "properties": { + "id": "meter-15295", + "maker": "Maker H", + "model": "Model 15295", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.863164476626736, + 21.574362116233416 + ] + }, + "properties": { + "id": "meter-15296", + "maker": "Maker B", + "model": "Model 15296", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.69861545877301, + 20.426331470117468 + ] + }, + "properties": { + "id": "meter-15297", + "maker": "Maker I", + "model": "Model 15297", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.073514247625056, + 21.778110081679756 + ] + }, + "properties": { + "id": "meter-15298", + "maker": "Maker A", + "model": "Model 15298", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.829707183783285, + 29.90386656114307 + ] + }, + "properties": { + "id": "meter-15299", + "maker": "Maker A", + "model": "Model 15299", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.009564783538664, + 19.73951671644767 + ] + }, + "properties": { + "id": "meter-15300", + "maker": "Maker H", + "model": "Model 15300", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.75922467951562, + 19.929483984652883 + ] + }, + "properties": { + "id": "meter-15301", + "maker": "Maker G", + "model": "Model 15301", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.34142517566263, + 27.2860196138993 + ] + }, + "properties": { + "id": "meter-15302", + "maker": "Maker F", + "model": "Model 15302", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.03823921801047, + 25.79690893206136 + ] + }, + "properties": { + "id": "meter-15303", + "maker": "Maker I", + "model": "Model 15303", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.01580956271619, + 22.618010399490114 + ] + }, + "properties": { + "id": "meter-15304", + "maker": "Maker E", + "model": "Model 15304", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.057521759354984, + 24.893184224102136 + ] + }, + "properties": { + "id": "meter-15305", + "maker": "Maker J", + "model": "Model 15305", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.353420903443535, + 29.066903654987144 + ] + }, + "properties": { + "id": "meter-15306", + "maker": "Maker F", + "model": "Model 15306", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.1943379901079, + 25.405638206751206 + ] + }, + "properties": { + "id": "meter-15307", + "maker": "Maker H", + "model": "Model 15307", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.4852534555353, + 24.083398964713 + ] + }, + "properties": { + "id": "meter-15308", + "maker": "Maker A", + "model": "Model 15308", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.06029457893037, + 24.89671803674299 + ] + }, + "properties": { + "id": "meter-15309", + "maker": "Maker I", + "model": "Model 15309", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.945672893285206, + 17.537332107616752 + ] + }, + "properties": { + "id": "meter-15310", + "maker": "Maker J", + "model": "Model 15310", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09545630291602, + 30.23011578016052 + ] + }, + "properties": { + "id": "meter-15311", + "maker": "Maker H", + "model": "Model 15311", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.62043521743276, + 17.880856152518138 + ] + }, + "properties": { + "id": "meter-15312", + "maker": "Maker J", + "model": "Model 15312", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.378306802796374, + 23.194033906086737 + ] + }, + "properties": { + "id": "meter-15313", + "maker": "Maker F", + "model": "Model 15313", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.62640617379324, + 21.244989037642632 + ] + }, + "properties": { + "id": "meter-15314", + "maker": "Maker D", + "model": "Model 15314", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.986706051385205, + 25.771658305571925 + ] + }, + "properties": { + "id": "meter-15315", + "maker": "Maker J", + "model": "Model 15315", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.76664426354383, + 18.912555303899993 + ] + }, + "properties": { + "id": "meter-15316", + "maker": "Maker F", + "model": "Model 15316", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.8531113944452, + 26.443371440408757 + ] + }, + "properties": { + "id": "meter-15317", + "maker": "Maker J", + "model": "Model 15317", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.38737524527012, + 21.24033990473268 + ] + }, + "properties": { + "id": "meter-15318", + "maker": "Maker B", + "model": "Model 15318", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.60616127048415, + 21.097231654239526 + ] + }, + "properties": { + "id": "meter-15319", + "maker": "Maker B", + "model": "Model 15319", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.16906746737672, + 18.947271991596367 + ] + }, + "properties": { + "id": "meter-15320", + "maker": "Maker D", + "model": "Model 15320", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.498398288959386, + 28.039940750516955 + ] + }, + "properties": { + "id": "meter-15321", + "maker": "Maker D", + "model": "Model 15321", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.898562916032056, + 17.153575722272514 + ] + }, + "properties": { + "id": "meter-15322", + "maker": "Maker E", + "model": "Model 15322", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.05237219579369, + 28.67502036936711 + ] + }, + "properties": { + "id": "meter-15323", + "maker": "Maker H", + "model": "Model 15323", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.53158969060414, + 21.71469735975777 + ] + }, + "properties": { + "id": "meter-15324", + "maker": "Maker E", + "model": "Model 15324", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.17232300621054, + 23.61475808098949 + ] + }, + "properties": { + "id": "meter-15325", + "maker": "Maker I", + "model": "Model 15325", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.86879610860352, + 26.087056440972454 + ] + }, + "properties": { + "id": "meter-15326", + "maker": "Maker A", + "model": "Model 15326", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.021766049085024, + 20.03733396728811 + ] + }, + "properties": { + "id": "meter-15327", + "maker": "Maker J", + "model": "Model 15327", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.33393412514266, + 20.409884150489933 + ] + }, + "properties": { + "id": "meter-15328", + "maker": "Maker H", + "model": "Model 15328", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.54214995095326, + 29.07975969313319 + ] + }, + "properties": { + "id": "meter-15329", + "maker": "Maker B", + "model": "Model 15329", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.147546736286266, + 23.96140128765867 + ] + }, + "properties": { + "id": "meter-15330", + "maker": "Maker E", + "model": "Model 15330", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.02572501098271, + 24.440469886296402 + ] + }, + "properties": { + "id": "meter-15331", + "maker": "Maker H", + "model": "Model 15331", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.71757871806234, + 23.061806279673956 + ] + }, + "properties": { + "id": "meter-15332", + "maker": "Maker G", + "model": "Model 15332", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.106601355918976, + 29.78552037534824 + ] + }, + "properties": { + "id": "meter-15333", + "maker": "Maker A", + "model": "Model 15333", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.82906157965403, + 20.47955711190316 + ] + }, + "properties": { + "id": "meter-15334", + "maker": "Maker G", + "model": "Model 15334", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.58553100369878, + 20.7814157397298 + ] + }, + "properties": { + "id": "meter-15335", + "maker": "Maker H", + "model": "Model 15335", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.004439561178046, + 22.484367407025914 + ] + }, + "properties": { + "id": "meter-15336", + "maker": "Maker G", + "model": "Model 15336", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.39064230766475, + 29.3951368560754 + ] + }, + "properties": { + "id": "meter-15337", + "maker": "Maker I", + "model": "Model 15337", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.11346532097433, + 21.205705270148496 + ] + }, + "properties": { + "id": "meter-15338", + "maker": "Maker D", + "model": "Model 15338", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.03339101702426, + 28.020153039782432 + ] + }, + "properties": { + "id": "meter-15339", + "maker": "Maker H", + "model": "Model 15339", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55483720893889, + 31.087942538103153 + ] + }, + "properties": { + "id": "meter-15340", + "maker": "Maker H", + "model": "Model 15340", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.23591089676238, + 24.078952800439538 + ] + }, + "properties": { + "id": "meter-15341", + "maker": "Maker E", + "model": "Model 15341", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.01234438227508, + 28.432705939445366 + ] + }, + "properties": { + "id": "meter-15342", + "maker": "Maker A", + "model": "Model 15342", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.15966320296667, + 24.55518679444794 + ] + }, + "properties": { + "id": "meter-15343", + "maker": "Maker H", + "model": "Model 15343", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.48550485384849, + 17.77596921288237 + ] + }, + "properties": { + "id": "meter-15344", + "maker": "Maker B", + "model": "Model 15344", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.346313693832194, + 26.992460435978952 + ] + }, + "properties": { + "id": "meter-15345", + "maker": "Maker B", + "model": "Model 15345", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.26174226251645, + 26.61331022501367 + ] + }, + "properties": { + "id": "meter-15346", + "maker": "Maker G", + "model": "Model 15346", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07688498724159, + 30.896035096103304 + ] + }, + "properties": { + "id": "meter-15347", + "maker": "Maker B", + "model": "Model 15347", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.90806490558474, + 29.360743241238183 + ] + }, + "properties": { + "id": "meter-15348", + "maker": "Maker G", + "model": "Model 15348", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.30722254638173, + 28.20165014955359 + ] + }, + "properties": { + "id": "meter-15349", + "maker": "Maker E", + "model": "Model 15349", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07859790873571, + 30.11181902647189 + ] + }, + "properties": { + "id": "meter-15350", + "maker": "Maker H", + "model": "Model 15350", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.66642380960577, + 25.353041106863802 + ] + }, + "properties": { + "id": "meter-15351", + "maker": "Maker F", + "model": "Model 15351", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.99203178270084, + 23.33994410650923 + ] + }, + "properties": { + "id": "meter-15352", + "maker": "Maker C", + "model": "Model 15352", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.919585268359995, + 25.29110366562611 + ] + }, + "properties": { + "id": "meter-15353", + "maker": "Maker E", + "model": "Model 15353", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.06965959272343, + 20.74343375289915 + ] + }, + "properties": { + "id": "meter-15354", + "maker": "Maker B", + "model": "Model 15354", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67432673333764, + 22.67300922419432 + ] + }, + "properties": { + "id": "meter-15355", + "maker": "Maker F", + "model": "Model 15355", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.10022044251702, + 23.03780029971692 + ] + }, + "properties": { + "id": "meter-15356", + "maker": "Maker H", + "model": "Model 15356", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.083290615674876, + 21.5183078973929 + ] + }, + "properties": { + "id": "meter-15357", + "maker": "Maker J", + "model": "Model 15357", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.51794723818891, + 28.430569238354863 + ] + }, + "properties": { + "id": "meter-15358", + "maker": "Maker E", + "model": "Model 15358", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.32894307766595, + 19.184264573074273 + ] + }, + "properties": { + "id": "meter-15359", + "maker": "Maker B", + "model": "Model 15359", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.245260252063616, + 24.619887757177686 + ] + }, + "properties": { + "id": "meter-15360", + "maker": "Maker H", + "model": "Model 15360", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.127034043136945, + 24.761445129018938 + ] + }, + "properties": { + "id": "meter-15361", + "maker": "Maker G", + "model": "Model 15361", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.58788903338855, + 22.88011572994582 + ] + }, + "properties": { + "id": "meter-15362", + "maker": "Maker D", + "model": "Model 15362", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.97646129685108, + 18.85582535140847 + ] + }, + "properties": { + "id": "meter-15363", + "maker": "Maker H", + "model": "Model 15363", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.00186272123285, + 20.16911111807357 + ] + }, + "properties": { + "id": "meter-15364", + "maker": "Maker A", + "model": "Model 15364", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.64262145140999, + 18.91689503932475 + ] + }, + "properties": { + "id": "meter-15365", + "maker": "Maker H", + "model": "Model 15365", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67816927053687, + 24.185657984408127 + ] + }, + "properties": { + "id": "meter-15366", + "maker": "Maker B", + "model": "Model 15366", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.35004573923777, + 22.887569169122862 + ] + }, + "properties": { + "id": "meter-15367", + "maker": "Maker I", + "model": "Model 15367", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.934657826940146, + 26.876532759953953 + ] + }, + "properties": { + "id": "meter-15368", + "maker": "Maker B", + "model": "Model 15368", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.61203456963476, + 18.58577157406213 + ] + }, + "properties": { + "id": "meter-15369", + "maker": "Maker F", + "model": "Model 15369", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.627498141432035, + 25.39680843532406 + ] + }, + "properties": { + "id": "meter-15370", + "maker": "Maker E", + "model": "Model 15370", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.842773407187124, + 25.24608358176291 + ] + }, + "properties": { + "id": "meter-15371", + "maker": "Maker I", + "model": "Model 15371", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.105179448493935, + 17.366828906310396 + ] + }, + "properties": { + "id": "meter-15372", + "maker": "Maker J", + "model": "Model 15372", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.16838688052606, + 29.974537621101565 + ] + }, + "properties": { + "id": "meter-15373", + "maker": "Maker B", + "model": "Model 15373", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.86266368710523, + 20.13283783124612 + ] + }, + "properties": { + "id": "meter-15374", + "maker": "Maker J", + "model": "Model 15374", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.014085319777124, + 21.089033528075166 + ] + }, + "properties": { + "id": "meter-15375", + "maker": "Maker C", + "model": "Model 15375", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.17802351362772, + 18.802568803700716 + ] + }, + "properties": { + "id": "meter-15376", + "maker": "Maker J", + "model": "Model 15376", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47991565348009, + 26.599230919549036 + ] + }, + "properties": { + "id": "meter-15377", + "maker": "Maker J", + "model": "Model 15377", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.532325214700464, + 19.382595576188663 + ] + }, + "properties": { + "id": "meter-15378", + "maker": "Maker B", + "model": "Model 15378", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69799891986938, + 21.990160628416174 + ] + }, + "properties": { + "id": "meter-15379", + "maker": "Maker F", + "model": "Model 15379", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.77781081662765, + 25.463192210050483 + ] + }, + "properties": { + "id": "meter-15380", + "maker": "Maker D", + "model": "Model 15380", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.29855506063405, + 28.307865895704918 + ] + }, + "properties": { + "id": "meter-15381", + "maker": "Maker I", + "model": "Model 15381", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.77581507002158, + 21.03484017821133 + ] + }, + "properties": { + "id": "meter-15382", + "maker": "Maker C", + "model": "Model 15382", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.005791215466175, + 27.362215097072216 + ] + }, + "properties": { + "id": "meter-15383", + "maker": "Maker J", + "model": "Model 15383", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.012895297324796, + 23.547152393482044 + ] + }, + "properties": { + "id": "meter-15384", + "maker": "Maker G", + "model": "Model 15384", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.81368258705973, + 28.701291129631482 + ] + }, + "properties": { + "id": "meter-15385", + "maker": "Maker J", + "model": "Model 15385", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.93071384776046, + 25.81870528475072 + ] + }, + "properties": { + "id": "meter-15386", + "maker": "Maker D", + "model": "Model 15386", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.64346433343925, + 25.502571555881513 + ] + }, + "properties": { + "id": "meter-15387", + "maker": "Maker D", + "model": "Model 15387", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.99795138473513, + 17.890772785616402 + ] + }, + "properties": { + "id": "meter-15388", + "maker": "Maker F", + "model": "Model 15388", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.93713165692284, + 18.924454930177106 + ] + }, + "properties": { + "id": "meter-15389", + "maker": "Maker A", + "model": "Model 15389", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.97039200946605, + 17.360062588159096 + ] + }, + "properties": { + "id": "meter-15390", + "maker": "Maker B", + "model": "Model 15390", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.46260434246915, + 26.682461056305925 + ] + }, + "properties": { + "id": "meter-15391", + "maker": "Maker H", + "model": "Model 15391", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.11703471506164, + 25.360960617411582 + ] + }, + "properties": { + "id": "meter-15392", + "maker": "Maker I", + "model": "Model 15392", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.5477567299356, + 26.410871869245096 + ] + }, + "properties": { + "id": "meter-15393", + "maker": "Maker B", + "model": "Model 15393", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.934695272134206, + 22.30195263327367 + ] + }, + "properties": { + "id": "meter-15394", + "maker": "Maker F", + "model": "Model 15394", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.51677293791162, + 25.30465382255962 + ] + }, + "properties": { + "id": "meter-15395", + "maker": "Maker I", + "model": "Model 15395", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.52310242073428, + 24.813268414807833 + ] + }, + "properties": { + "id": "meter-15396", + "maker": "Maker E", + "model": "Model 15396", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.2099937949918, + 24.341759735895202 + ] + }, + "properties": { + "id": "meter-15397", + "maker": "Maker C", + "model": "Model 15397", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.61612674181884, + 25.073035390620717 + ] + }, + "properties": { + "id": "meter-15398", + "maker": "Maker G", + "model": "Model 15398", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.52306216708456, + 23.838786566707284 + ] + }, + "properties": { + "id": "meter-15399", + "maker": "Maker B", + "model": "Model 15399", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.871015527649526, + 24.30817760373756 + ] + }, + "properties": { + "id": "meter-15400", + "maker": "Maker A", + "model": "Model 15400", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.335907644428495, + 23.247391451114247 + ] + }, + "properties": { + "id": "meter-15401", + "maker": "Maker F", + "model": "Model 15401", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.97300516834541, + 17.26049987374798 + ] + }, + "properties": { + "id": "meter-15402", + "maker": "Maker H", + "model": "Model 15402", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.61866505228414, + 23.33347135894031 + ] + }, + "properties": { + "id": "meter-15403", + "maker": "Maker D", + "model": "Model 15403", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.727234510193625, + 20.62852525776101 + ] + }, + "properties": { + "id": "meter-15404", + "maker": "Maker E", + "model": "Model 15404", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.90751831291213, + 22.380657090732573 + ] + }, + "properties": { + "id": "meter-15405", + "maker": "Maker J", + "model": "Model 15405", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.126501098690156, + 22.888535648423268 + ] + }, + "properties": { + "id": "meter-15406", + "maker": "Maker I", + "model": "Model 15406", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89953599695245, + 24.24767902370279 + ] + }, + "properties": { + "id": "meter-15407", + "maker": "Maker E", + "model": "Model 15407", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.233547778282556, + 22.242184001985393 + ] + }, + "properties": { + "id": "meter-15408", + "maker": "Maker H", + "model": "Model 15408", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.88481429238416, + 21.480119489468823 + ] + }, + "properties": { + "id": "meter-15409", + "maker": "Maker B", + "model": "Model 15409", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.920484509158285, + 30.183507158116647 + ] + }, + "properties": { + "id": "meter-15410", + "maker": "Maker A", + "model": "Model 15410", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.334756793868635, + 31.47412579565026 + ] + }, + "properties": { + "id": "meter-15411", + "maker": "Maker G", + "model": "Model 15411", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.34466282942899, + 19.60628297289385 + ] + }, + "properties": { + "id": "meter-15412", + "maker": "Maker A", + "model": "Model 15412", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.0593724563641, + 22.972452085303416 + ] + }, + "properties": { + "id": "meter-15413", + "maker": "Maker C", + "model": "Model 15413", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.73230091010586, + 20.085003094771608 + ] + }, + "properties": { + "id": "meter-15414", + "maker": "Maker D", + "model": "Model 15414", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.919370351909585, + 20.31230740560919 + ] + }, + "properties": { + "id": "meter-15415", + "maker": "Maker B", + "model": "Model 15415", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.042005892389, + 19.98572337072423 + ] + }, + "properties": { + "id": "meter-15416", + "maker": "Maker H", + "model": "Model 15416", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.6167351352163, + 22.083086369012946 + ] + }, + "properties": { + "id": "meter-15417", + "maker": "Maker E", + "model": "Model 15417", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.61014138639412, + 26.472305399913935 + ] + }, + "properties": { + "id": "meter-15418", + "maker": "Maker D", + "model": "Model 15418", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.816192817613896, + 17.778946498184702 + ] + }, + "properties": { + "id": "meter-15419", + "maker": "Maker G", + "model": "Model 15419", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.548867329923986, + 21.30082576735268 + ] + }, + "properties": { + "id": "meter-15420", + "maker": "Maker F", + "model": "Model 15420", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.59994944907835, + 28.91563666863584 + ] + }, + "properties": { + "id": "meter-15421", + "maker": "Maker I", + "model": "Model 15421", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.487859740692926, + 25.665386618971425 + ] + }, + "properties": { + "id": "meter-15422", + "maker": "Maker A", + "model": "Model 15422", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.98227127896172, + 20.96464812955953 + ] + }, + "properties": { + "id": "meter-15423", + "maker": "Maker F", + "model": "Model 15423", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.4346258379773, + 28.667214508291615 + ] + }, + "properties": { + "id": "meter-15424", + "maker": "Maker J", + "model": "Model 15424", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.25778639338433, + 17.620312001555185 + ] + }, + "properties": { + "id": "meter-15425", + "maker": "Maker E", + "model": "Model 15425", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.278550861677346, + 25.02186975105655 + ] + }, + "properties": { + "id": "meter-15426", + "maker": "Maker A", + "model": "Model 15426", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.262763249316365, + 27.49278520210654 + ] + }, + "properties": { + "id": "meter-15427", + "maker": "Maker H", + "model": "Model 15427", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.78602672037479, + 19.971382244458816 + ] + }, + "properties": { + "id": "meter-15428", + "maker": "Maker J", + "model": "Model 15428", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.49241604579283, + 29.430875015085363 + ] + }, + "properties": { + "id": "meter-15429", + "maker": "Maker J", + "model": "Model 15429", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.677991022595656, + 21.133838076523684 + ] + }, + "properties": { + "id": "meter-15430", + "maker": "Maker C", + "model": "Model 15430", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.69694700369959, + 25.93210701136805 + ] + }, + "properties": { + "id": "meter-15431", + "maker": "Maker F", + "model": "Model 15431", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.322625085811495, + 30.781287052030876 + ] + }, + "properties": { + "id": "meter-15432", + "maker": "Maker F", + "model": "Model 15432", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.74822605811022, + 18.340433146790037 + ] + }, + "properties": { + "id": "meter-15433", + "maker": "Maker E", + "model": "Model 15433", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.74143496988709, + 22.43183541329453 + ] + }, + "properties": { + "id": "meter-15434", + "maker": "Maker G", + "model": "Model 15434", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52353585481, + 26.18559234750861 + ] + }, + "properties": { + "id": "meter-15435", + "maker": "Maker F", + "model": "Model 15435", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.21917791897729, + 21.36029488342342 + ] + }, + "properties": { + "id": "meter-15436", + "maker": "Maker J", + "model": "Model 15436", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.95806562362057, + 20.219589822775074 + ] + }, + "properties": { + "id": "meter-15437", + "maker": "Maker I", + "model": "Model 15437", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.86379163279788, + 24.65087742354752 + ] + }, + "properties": { + "id": "meter-15438", + "maker": "Maker J", + "model": "Model 15438", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.63244155282071, + 22.317872360714762 + ] + }, + "properties": { + "id": "meter-15439", + "maker": "Maker E", + "model": "Model 15439", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.62609380259235, + 30.37600241141525 + ] + }, + "properties": { + "id": "meter-15440", + "maker": "Maker D", + "model": "Model 15440", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.44475370483558, + 26.452416848243658 + ] + }, + "properties": { + "id": "meter-15441", + "maker": "Maker F", + "model": "Model 15441", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.17282752817251, + 22.447807106976867 + ] + }, + "properties": { + "id": "meter-15442", + "maker": "Maker D", + "model": "Model 15442", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.973871255359384, + 27.81292304446702 + ] + }, + "properties": { + "id": "meter-15443", + "maker": "Maker B", + "model": "Model 15443", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.80589268219726, + 20.2777461806882 + ] + }, + "properties": { + "id": "meter-15444", + "maker": "Maker C", + "model": "Model 15444", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.7461302283295, + 30.991300736806696 + ] + }, + "properties": { + "id": "meter-15445", + "maker": "Maker H", + "model": "Model 15445", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.89934605882695, + 21.031585124492526 + ] + }, + "properties": { + "id": "meter-15446", + "maker": "Maker D", + "model": "Model 15446", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.246043269093164, + 28.685622887814837 + ] + }, + "properties": { + "id": "meter-15447", + "maker": "Maker G", + "model": "Model 15447", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.56016107371721, + 23.2146331394767 + ] + }, + "properties": { + "id": "meter-15448", + "maker": "Maker A", + "model": "Model 15448", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.10379645098245, + 20.33479265630325 + ] + }, + "properties": { + "id": "meter-15449", + "maker": "Maker H", + "model": "Model 15449", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.147399517871975, + 26.552001082271694 + ] + }, + "properties": { + "id": "meter-15450", + "maker": "Maker F", + "model": "Model 15450", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.16704469991767, + 30.952695232618996 + ] + }, + "properties": { + "id": "meter-15451", + "maker": "Maker D", + "model": "Model 15451", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.581030074877106, + 18.59280082274565 + ] + }, + "properties": { + "id": "meter-15452", + "maker": "Maker F", + "model": "Model 15452", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.588605916490124, + 29.66824714276928 + ] + }, + "properties": { + "id": "meter-15453", + "maker": "Maker I", + "model": "Model 15453", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02274955512919, + 27.233354216339343 + ] + }, + "properties": { + "id": "meter-15454", + "maker": "Maker D", + "model": "Model 15454", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.420289310638786, + 27.304473643130713 + ] + }, + "properties": { + "id": "meter-15455", + "maker": "Maker J", + "model": "Model 15455", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.03111408362504, + 19.169915368590424 + ] + }, + "properties": { + "id": "meter-15456", + "maker": "Maker G", + "model": "Model 15456", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92380530791537, + 29.218192267794983 + ] + }, + "properties": { + "id": "meter-15457", + "maker": "Maker I", + "model": "Model 15457", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85669143096515, + 20.882003370538214 + ] + }, + "properties": { + "id": "meter-15458", + "maker": "Maker H", + "model": "Model 15458", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.62948088020274, + 22.180671312158246 + ] + }, + "properties": { + "id": "meter-15459", + "maker": "Maker D", + "model": "Model 15459", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.013799037022295, + 19.236709651058632 + ] + }, + "properties": { + "id": "meter-15460", + "maker": "Maker D", + "model": "Model 15460", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.03208214468746, + 23.67190888206951 + ] + }, + "properties": { + "id": "meter-15461", + "maker": "Maker G", + "model": "Model 15461", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.89382801671746, + 26.33409498750931 + ] + }, + "properties": { + "id": "meter-15462", + "maker": "Maker F", + "model": "Model 15462", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.878961412229835, + 25.264999358070014 + ] + }, + "properties": { + "id": "meter-15463", + "maker": "Maker I", + "model": "Model 15463", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.13854127908719, + 26.133077150894206 + ] + }, + "properties": { + "id": "meter-15464", + "maker": "Maker I", + "model": "Model 15464", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.604073119026424, + 23.373089156578956 + ] + }, + "properties": { + "id": "meter-15465", + "maker": "Maker B", + "model": "Model 15465", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.65623543129455, + 27.27863487073119 + ] + }, + "properties": { + "id": "meter-15466", + "maker": "Maker E", + "model": "Model 15466", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.07977136409766, + 20.965614742982233 + ] + }, + "properties": { + "id": "meter-15467", + "maker": "Maker B", + "model": "Model 15467", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.81145450351696, + 23.34876969876379 + ] + }, + "properties": { + "id": "meter-15468", + "maker": "Maker A", + "model": "Model 15468", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.29722401856837, + 28.708545563922144 + ] + }, + "properties": { + "id": "meter-15469", + "maker": "Maker F", + "model": "Model 15469", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.457714689927855, + 22.938311008966338 + ] + }, + "properties": { + "id": "meter-15470", + "maker": "Maker B", + "model": "Model 15470", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88331823677203, + 26.92801902977853 + ] + }, + "properties": { + "id": "meter-15471", + "maker": "Maker H", + "model": "Model 15471", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.77042433176879, + 20.13438577324951 + ] + }, + "properties": { + "id": "meter-15472", + "maker": "Maker A", + "model": "Model 15472", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.3446207649457, + 22.114045632770196 + ] + }, + "properties": { + "id": "meter-15473", + "maker": "Maker A", + "model": "Model 15473", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.31286178619483, + 26.50484678568634 + ] + }, + "properties": { + "id": "meter-15474", + "maker": "Maker C", + "model": "Model 15474", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.358827820579606, + 19.99469421351816 + ] + }, + "properties": { + "id": "meter-15475", + "maker": "Maker I", + "model": "Model 15475", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.15015199416335, + 21.593015249194625 + ] + }, + "properties": { + "id": "meter-15476", + "maker": "Maker G", + "model": "Model 15476", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.613844250069015, + 19.475149016127958 + ] + }, + "properties": { + "id": "meter-15477", + "maker": "Maker A", + "model": "Model 15477", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.4585908028573, + 20.318362507616406 + ] + }, + "properties": { + "id": "meter-15478", + "maker": "Maker D", + "model": "Model 15478", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.562406955723205, + 25.836815524476936 + ] + }, + "properties": { + "id": "meter-15479", + "maker": "Maker E", + "model": "Model 15479", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.82782259662861, + 22.952150884413783 + ] + }, + "properties": { + "id": "meter-15480", + "maker": "Maker B", + "model": "Model 15480", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.37987590098466, + 22.50332128373489 + ] + }, + "properties": { + "id": "meter-15481", + "maker": "Maker G", + "model": "Model 15481", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.93619046205822, + 29.443396095302166 + ] + }, + "properties": { + "id": "meter-15482", + "maker": "Maker B", + "model": "Model 15482", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.349411604923375, + 20.251387659297784 + ] + }, + "properties": { + "id": "meter-15483", + "maker": "Maker J", + "model": "Model 15483", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.63776405303355, + 21.501583913953425 + ] + }, + "properties": { + "id": "meter-15484", + "maker": "Maker I", + "model": "Model 15484", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.54184040316759, + 29.836125298381255 + ] + }, + "properties": { + "id": "meter-15485", + "maker": "Maker E", + "model": "Model 15485", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.854284640497994, + 26.2509724352938 + ] + }, + "properties": { + "id": "meter-15486", + "maker": "Maker D", + "model": "Model 15486", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25380725587433, + 21.446870773575835 + ] + }, + "properties": { + "id": "meter-15487", + "maker": "Maker H", + "model": "Model 15487", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.645487491895246, + 30.580910740974375 + ] + }, + "properties": { + "id": "meter-15488", + "maker": "Maker J", + "model": "Model 15488", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.257116025644095, + 25.688589138560957 + ] + }, + "properties": { + "id": "meter-15489", + "maker": "Maker J", + "model": "Model 15489", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.43503463163569, + 30.82418161270313 + ] + }, + "properties": { + "id": "meter-15490", + "maker": "Maker F", + "model": "Model 15490", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.167534983681065, + 24.797495644917948 + ] + }, + "properties": { + "id": "meter-15491", + "maker": "Maker E", + "model": "Model 15491", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.21358627338789, + 29.158469349221 + ] + }, + "properties": { + "id": "meter-15492", + "maker": "Maker H", + "model": "Model 15492", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.984504610845214, + 29.792468703407756 + ] + }, + "properties": { + "id": "meter-15493", + "maker": "Maker D", + "model": "Model 15493", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.34687988664615, + 20.987750991475988 + ] + }, + "properties": { + "id": "meter-15494", + "maker": "Maker I", + "model": "Model 15494", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.64090102069964, + 23.24966818217178 + ] + }, + "properties": { + "id": "meter-15495", + "maker": "Maker D", + "model": "Model 15495", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.89936726443524, + 27.406896250990886 + ] + }, + "properties": { + "id": "meter-15496", + "maker": "Maker E", + "model": "Model 15496", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.36849134594396, + 21.07233169534986 + ] + }, + "properties": { + "id": "meter-15497", + "maker": "Maker H", + "model": "Model 15497", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.78157178173261, + 19.16554182183414 + ] + }, + "properties": { + "id": "meter-15498", + "maker": "Maker A", + "model": "Model 15498", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.48825637392046, + 22.63360931633676 + ] + }, + "properties": { + "id": "meter-15499", + "maker": "Maker F", + "model": "Model 15499", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.04702745462336, + 21.03087200294735 + ] + }, + "properties": { + "id": "meter-15500", + "maker": "Maker B", + "model": "Model 15500", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.14337206970043, + 18.000026506900173 + ] + }, + "properties": { + "id": "meter-15501", + "maker": "Maker F", + "model": "Model 15501", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.25709371302103, + 21.41477942062192 + ] + }, + "properties": { + "id": "meter-15502", + "maker": "Maker H", + "model": "Model 15502", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.051904881384985, + 20.75997549728392 + ] + }, + "properties": { + "id": "meter-15503", + "maker": "Maker H", + "model": "Model 15503", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.83163092471782, + 20.857804997584175 + ] + }, + "properties": { + "id": "meter-15504", + "maker": "Maker H", + "model": "Model 15504", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.254190095894266, + 22.540177102195408 + ] + }, + "properties": { + "id": "meter-15505", + "maker": "Maker A", + "model": "Model 15505", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.77985804191059, + 30.3811637834703 + ] + }, + "properties": { + "id": "meter-15506", + "maker": "Maker H", + "model": "Model 15506", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.23950842804841, + 23.371671507973527 + ] + }, + "properties": { + "id": "meter-15507", + "maker": "Maker J", + "model": "Model 15507", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.5997350935443, + 26.33393211291942 + ] + }, + "properties": { + "id": "meter-15508", + "maker": "Maker H", + "model": "Model 15508", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.146405290685145, + 24.92231148280273 + ] + }, + "properties": { + "id": "meter-15509", + "maker": "Maker B", + "model": "Model 15509", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.088249252922, + 19.25598610383496 + ] + }, + "properties": { + "id": "meter-15510", + "maker": "Maker F", + "model": "Model 15510", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.756133187960494, + 23.636719612086146 + ] + }, + "properties": { + "id": "meter-15511", + "maker": "Maker A", + "model": "Model 15511", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.32112726797153, + 26.37022583905487 + ] + }, + "properties": { + "id": "meter-15512", + "maker": "Maker E", + "model": "Model 15512", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.207758556777286, + 23.98166810307669 + ] + }, + "properties": { + "id": "meter-15513", + "maker": "Maker J", + "model": "Model 15513", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.70484057481288, + 23.078677195079578 + ] + }, + "properties": { + "id": "meter-15514", + "maker": "Maker F", + "model": "Model 15514", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.74623445258665, + 20.400962069598428 + ] + }, + "properties": { + "id": "meter-15515", + "maker": "Maker G", + "model": "Model 15515", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.119147561528095, + 22.6437657887749 + ] + }, + "properties": { + "id": "meter-15516", + "maker": "Maker G", + "model": "Model 15516", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.23556327454444, + 27.270420022265455 + ] + }, + "properties": { + "id": "meter-15517", + "maker": "Maker G", + "model": "Model 15517", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.11270130689589, + 27.90569098251013 + ] + }, + "properties": { + "id": "meter-15518", + "maker": "Maker J", + "model": "Model 15518", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.306270430405036, + 21.136035216496428 + ] + }, + "properties": { + "id": "meter-15519", + "maker": "Maker B", + "model": "Model 15519", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.24955274605926, + 25.191362287486776 + ] + }, + "properties": { + "id": "meter-15520", + "maker": "Maker D", + "model": "Model 15520", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.548736436621645, + 22.020202224640673 + ] + }, + "properties": { + "id": "meter-15521", + "maker": "Maker A", + "model": "Model 15521", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.816225948164266, + 28.66767849049903 + ] + }, + "properties": { + "id": "meter-15522", + "maker": "Maker I", + "model": "Model 15522", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.08933519328068, + 28.210361338418537 + ] + }, + "properties": { + "id": "meter-15523", + "maker": "Maker A", + "model": "Model 15523", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.21764070829854, + 28.153925311498213 + ] + }, + "properties": { + "id": "meter-15524", + "maker": "Maker I", + "model": "Model 15524", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.917954880068535, + 20.9339180764448 + ] + }, + "properties": { + "id": "meter-15525", + "maker": "Maker J", + "model": "Model 15525", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.12824585741137, + 29.65332969571649 + ] + }, + "properties": { + "id": "meter-15526", + "maker": "Maker C", + "model": "Model 15526", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.74512389872301, + 31.050312096171233 + ] + }, + "properties": { + "id": "meter-15527", + "maker": "Maker J", + "model": "Model 15527", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.54749236135052, + 22.283308378071702 + ] + }, + "properties": { + "id": "meter-15528", + "maker": "Maker C", + "model": "Model 15528", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.176197024745534, + 26.49640313694277 + ] + }, + "properties": { + "id": "meter-15529", + "maker": "Maker F", + "model": "Model 15529", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.77969067716623, + 27.43001945950426 + ] + }, + "properties": { + "id": "meter-15530", + "maker": "Maker D", + "model": "Model 15530", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.866227107755826, + 27.3090569453377 + ] + }, + "properties": { + "id": "meter-15531", + "maker": "Maker C", + "model": "Model 15531", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.164747775405225, + 26.598668527500436 + ] + }, + "properties": { + "id": "meter-15532", + "maker": "Maker E", + "model": "Model 15532", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.64999080757637, + 17.936011306976987 + ] + }, + "properties": { + "id": "meter-15533", + "maker": "Maker F", + "model": "Model 15533", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.495873388761595, + 21.344211588328584 + ] + }, + "properties": { + "id": "meter-15534", + "maker": "Maker A", + "model": "Model 15534", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.316572864676, + 28.05492237647157 + ] + }, + "properties": { + "id": "meter-15535", + "maker": "Maker C", + "model": "Model 15535", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.23821716397052, + 27.6149790822027 + ] + }, + "properties": { + "id": "meter-15536", + "maker": "Maker J", + "model": "Model 15536", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.01017643413346, + 22.343875669086522 + ] + }, + "properties": { + "id": "meter-15537", + "maker": "Maker C", + "model": "Model 15537", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.51292345720524, + 27.829559659236573 + ] + }, + "properties": { + "id": "meter-15538", + "maker": "Maker B", + "model": "Model 15538", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.68646582906841, + 27.611534346600898 + ] + }, + "properties": { + "id": "meter-15539", + "maker": "Maker B", + "model": "Model 15539", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.016328944682336, + 28.226970555576365 + ] + }, + "properties": { + "id": "meter-15540", + "maker": "Maker J", + "model": "Model 15540", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.38676897039576, + 20.384151500498117 + ] + }, + "properties": { + "id": "meter-15541", + "maker": "Maker I", + "model": "Model 15541", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.99423476021347, + 26.600342000629503 + ] + }, + "properties": { + "id": "meter-15542", + "maker": "Maker A", + "model": "Model 15542", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.14914985270024, + 25.607260340205382 + ] + }, + "properties": { + "id": "meter-15543", + "maker": "Maker G", + "model": "Model 15543", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.87354359942504, + 23.57923693667655 + ] + }, + "properties": { + "id": "meter-15544", + "maker": "Maker B", + "model": "Model 15544", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.78288069971031, + 19.85379133796657 + ] + }, + "properties": { + "id": "meter-15545", + "maker": "Maker C", + "model": "Model 15545", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.359350304880316, + 21.41095275939078 + ] + }, + "properties": { + "id": "meter-15546", + "maker": "Maker E", + "model": "Model 15546", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.22836073042264, + 24.64751177527185 + ] + }, + "properties": { + "id": "meter-15547", + "maker": "Maker J", + "model": "Model 15547", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.63479277340344, + 22.63076066721786 + ] + }, + "properties": { + "id": "meter-15548", + "maker": "Maker E", + "model": "Model 15548", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.93821243395416, + 19.8112821233687 + ] + }, + "properties": { + "id": "meter-15549", + "maker": "Maker A", + "model": "Model 15549", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.677657698619484, + 19.67369031495174 + ] + }, + "properties": { + "id": "meter-15550", + "maker": "Maker C", + "model": "Model 15550", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.269027651381684, + 25.267010638477963 + ] + }, + "properties": { + "id": "meter-15551", + "maker": "Maker F", + "model": "Model 15551", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.276214579604556, + 18.151806235828975 + ] + }, + "properties": { + "id": "meter-15552", + "maker": "Maker J", + "model": "Model 15552", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.631994737152056, + 21.39308255633238 + ] + }, + "properties": { + "id": "meter-15553", + "maker": "Maker I", + "model": "Model 15553", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.87807258528021, + 25.740396149375847 + ] + }, + "properties": { + "id": "meter-15554", + "maker": "Maker A", + "model": "Model 15554", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.476213176869855, + 19.119077964354382 + ] + }, + "properties": { + "id": "meter-15555", + "maker": "Maker E", + "model": "Model 15555", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.56584643692406, + 22.79772800950838 + ] + }, + "properties": { + "id": "meter-15556", + "maker": "Maker H", + "model": "Model 15556", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.61594545360431, + 23.151826888905873 + ] + }, + "properties": { + "id": "meter-15557", + "maker": "Maker H", + "model": "Model 15557", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.23185545342266, + 19.591429980549037 + ] + }, + "properties": { + "id": "meter-15558", + "maker": "Maker D", + "model": "Model 15558", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.96374004659697, + 30.765133560597356 + ] + }, + "properties": { + "id": "meter-15559", + "maker": "Maker E", + "model": "Model 15559", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9596001088251, + 22.562486840572085 + ] + }, + "properties": { + "id": "meter-15560", + "maker": "Maker C", + "model": "Model 15560", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.24724265051981, + 21.162978983216846 + ] + }, + "properties": { + "id": "meter-15561", + "maker": "Maker D", + "model": "Model 15561", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.920144895306954, + 24.587296131472137 + ] + }, + "properties": { + "id": "meter-15562", + "maker": "Maker E", + "model": "Model 15562", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.56731803092107, + 26.20080756480857 + ] + }, + "properties": { + "id": "meter-15563", + "maker": "Maker F", + "model": "Model 15563", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.088612673173145, + 25.51597782309143 + ] + }, + "properties": { + "id": "meter-15564", + "maker": "Maker H", + "model": "Model 15564", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.20927398339156, + 20.814748936531863 + ] + }, + "properties": { + "id": "meter-15565", + "maker": "Maker H", + "model": "Model 15565", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.22829806785699, + 26.21374466320856 + ] + }, + "properties": { + "id": "meter-15566", + "maker": "Maker I", + "model": "Model 15566", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.56803656485556, + 18.18068951500362 + ] + }, + "properties": { + "id": "meter-15567", + "maker": "Maker B", + "model": "Model 15567", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.098442831360465, + 21.033885319146986 + ] + }, + "properties": { + "id": "meter-15568", + "maker": "Maker G", + "model": "Model 15568", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.58182889909115, + 29.349645067986803 + ] + }, + "properties": { + "id": "meter-15569", + "maker": "Maker E", + "model": "Model 15569", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.96002361056844, + 25.135873536468946 + ] + }, + "properties": { + "id": "meter-15570", + "maker": "Maker E", + "model": "Model 15570", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.00177845302337, + 25.821896053809436 + ] + }, + "properties": { + "id": "meter-15571", + "maker": "Maker H", + "model": "Model 15571", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.65381426776929, + 27.52610751272059 + ] + }, + "properties": { + "id": "meter-15572", + "maker": "Maker J", + "model": "Model 15572", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.67194538762039, + 23.768581740569324 + ] + }, + "properties": { + "id": "meter-15573", + "maker": "Maker E", + "model": "Model 15573", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.86448697951654, + 29.49969114292356 + ] + }, + "properties": { + "id": "meter-15574", + "maker": "Maker J", + "model": "Model 15574", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.185632501222955, + 28.347700942799484 + ] + }, + "properties": { + "id": "meter-15575", + "maker": "Maker I", + "model": "Model 15575", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.00586515101598, + 23.81608610381152 + ] + }, + "properties": { + "id": "meter-15576", + "maker": "Maker F", + "model": "Model 15576", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.86663015002712, + 25.561843455803 + ] + }, + "properties": { + "id": "meter-15577", + "maker": "Maker D", + "model": "Model 15577", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.147860187742204, + 20.07811590618342 + ] + }, + "properties": { + "id": "meter-15578", + "maker": "Maker B", + "model": "Model 15578", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.396647254787155, + 25.481084762620206 + ] + }, + "properties": { + "id": "meter-15579", + "maker": "Maker E", + "model": "Model 15579", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.367227256438774, + 19.1093173450326 + ] + }, + "properties": { + "id": "meter-15580", + "maker": "Maker B", + "model": "Model 15580", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.77856140808433, + 24.495728528998256 + ] + }, + "properties": { + "id": "meter-15581", + "maker": "Maker G", + "model": "Model 15581", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.795945820626784, + 24.896182140396597 + ] + }, + "properties": { + "id": "meter-15582", + "maker": "Maker B", + "model": "Model 15582", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.15661990057207, + 20.14462933058596 + ] + }, + "properties": { + "id": "meter-15583", + "maker": "Maker G", + "model": "Model 15583", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.769921138760914, + 30.547212937685792 + ] + }, + "properties": { + "id": "meter-15584", + "maker": "Maker H", + "model": "Model 15584", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.448176170799, + 28.661669764629142 + ] + }, + "properties": { + "id": "meter-15585", + "maker": "Maker H", + "model": "Model 15585", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.34126592708118, + 21.457217228479735 + ] + }, + "properties": { + "id": "meter-15586", + "maker": "Maker I", + "model": "Model 15586", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.026549742156064, + 24.623054995350234 + ] + }, + "properties": { + "id": "meter-15587", + "maker": "Maker A", + "model": "Model 15587", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.723045856304516, + 21.507852440675507 + ] + }, + "properties": { + "id": "meter-15588", + "maker": "Maker H", + "model": "Model 15588", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.82527661151553, + 24.38863567774851 + ] + }, + "properties": { + "id": "meter-15589", + "maker": "Maker J", + "model": "Model 15589", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.07768305207115, + 26.372546857725368 + ] + }, + "properties": { + "id": "meter-15590", + "maker": "Maker H", + "model": "Model 15590", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.372781156178995, + 23.556197508147044 + ] + }, + "properties": { + "id": "meter-15591", + "maker": "Maker A", + "model": "Model 15591", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.56393622462879, + 20.37825196830371 + ] + }, + "properties": { + "id": "meter-15592", + "maker": "Maker E", + "model": "Model 15592", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.96728675044055, + 30.59853255914204 + ] + }, + "properties": { + "id": "meter-15593", + "maker": "Maker F", + "model": "Model 15593", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.695788808812566, + 19.72342543791789 + ] + }, + "properties": { + "id": "meter-15594", + "maker": "Maker H", + "model": "Model 15594", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.24218876664272, + 24.805879177056635 + ] + }, + "properties": { + "id": "meter-15595", + "maker": "Maker C", + "model": "Model 15595", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.76238496840705, + 23.151094334974445 + ] + }, + "properties": { + "id": "meter-15596", + "maker": "Maker E", + "model": "Model 15596", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.78016686549123, + 25.94544229329061 + ] + }, + "properties": { + "id": "meter-15597", + "maker": "Maker B", + "model": "Model 15597", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.85606704825267, + 22.53539282112268 + ] + }, + "properties": { + "id": "meter-15598", + "maker": "Maker B", + "model": "Model 15598", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.41353881340055, + 23.00477860633244 + ] + }, + "properties": { + "id": "meter-15599", + "maker": "Maker F", + "model": "Model 15599", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.957019581863456, + 19.710379775667356 + ] + }, + "properties": { + "id": "meter-15600", + "maker": "Maker F", + "model": "Model 15600", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.92162091594451, + 19.15671325955594 + ] + }, + "properties": { + "id": "meter-15601", + "maker": "Maker F", + "model": "Model 15601", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1031512666887, + 21.677822668439422 + ] + }, + "properties": { + "id": "meter-15602", + "maker": "Maker E", + "model": "Model 15602", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.83158469601048, + 21.92117500284248 + ] + }, + "properties": { + "id": "meter-15603", + "maker": "Maker A", + "model": "Model 15603", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.85151504560039, + 25.61283991828952 + ] + }, + "properties": { + "id": "meter-15604", + "maker": "Maker F", + "model": "Model 15604", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.18725268199661, + 28.773061987668438 + ] + }, + "properties": { + "id": "meter-15605", + "maker": "Maker I", + "model": "Model 15605", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.95239265788042, + 28.77578777900884 + ] + }, + "properties": { + "id": "meter-15606", + "maker": "Maker C", + "model": "Model 15606", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.232784266741106, + 18.498518882773766 + ] + }, + "properties": { + "id": "meter-15607", + "maker": "Maker E", + "model": "Model 15607", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.5729734832082, + 17.639299523282812 + ] + }, + "properties": { + "id": "meter-15608", + "maker": "Maker E", + "model": "Model 15608", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.893950003591875, + 29.1795978093648 + ] + }, + "properties": { + "id": "meter-15609", + "maker": "Maker G", + "model": "Model 15609", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.437107200909125, + 27.605979045061936 + ] + }, + "properties": { + "id": "meter-15610", + "maker": "Maker E", + "model": "Model 15610", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.07000325152742, + 19.59853968231363 + ] + }, + "properties": { + "id": "meter-15611", + "maker": "Maker E", + "model": "Model 15611", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.83626557442604, + 22.614131363072808 + ] + }, + "properties": { + "id": "meter-15612", + "maker": "Maker E", + "model": "Model 15612", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.18505361433588, + 28.050607019187137 + ] + }, + "properties": { + "id": "meter-15613", + "maker": "Maker A", + "model": "Model 15613", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.75488790439849, + 20.803950358649722 + ] + }, + "properties": { + "id": "meter-15614", + "maker": "Maker B", + "model": "Model 15614", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.46066733040181, + 19.328698222521936 + ] + }, + "properties": { + "id": "meter-15615", + "maker": "Maker B", + "model": "Model 15615", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.93293689977217, + 20.89063582428756 + ] + }, + "properties": { + "id": "meter-15616", + "maker": "Maker C", + "model": "Model 15616", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.52797678473985, + 19.898644757308627 + ] + }, + "properties": { + "id": "meter-15617", + "maker": "Maker C", + "model": "Model 15617", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.00632660531271, + 28.52792723953766 + ] + }, + "properties": { + "id": "meter-15618", + "maker": "Maker F", + "model": "Model 15618", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.553002291856124, + 20.832792860295445 + ] + }, + "properties": { + "id": "meter-15619", + "maker": "Maker E", + "model": "Model 15619", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.29340845369306, + 22.427209975824407 + ] + }, + "properties": { + "id": "meter-15620", + "maker": "Maker H", + "model": "Model 15620", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.283825898424844, + 17.59491966454886 + ] + }, + "properties": { + "id": "meter-15621", + "maker": "Maker G", + "model": "Model 15621", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.14324583041882, + 26.866006392993373 + ] + }, + "properties": { + "id": "meter-15622", + "maker": "Maker E", + "model": "Model 15622", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.493163165486706, + 18.86229084266579 + ] + }, + "properties": { + "id": "meter-15623", + "maker": "Maker F", + "model": "Model 15623", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.861380298340336, + 27.064765412831292 + ] + }, + "properties": { + "id": "meter-15624", + "maker": "Maker J", + "model": "Model 15624", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.578690690871255, + 25.81478486180722 + ] + }, + "properties": { + "id": "meter-15625", + "maker": "Maker G", + "model": "Model 15625", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.12866553412571, + 28.97210859683562 + ] + }, + "properties": { + "id": "meter-15626", + "maker": "Maker B", + "model": "Model 15626", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.19628996175737, + 19.77178655855856 + ] + }, + "properties": { + "id": "meter-15627", + "maker": "Maker J", + "model": "Model 15627", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.68789518405364, + 22.6371369569605 + ] + }, + "properties": { + "id": "meter-15628", + "maker": "Maker D", + "model": "Model 15628", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.41477390103923, + 21.710447459269414 + ] + }, + "properties": { + "id": "meter-15629", + "maker": "Maker I", + "model": "Model 15629", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.75090402274727, + 22.062921680909497 + ] + }, + "properties": { + "id": "meter-15630", + "maker": "Maker J", + "model": "Model 15630", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.301553536731916, + 25.984072228391092 + ] + }, + "properties": { + "id": "meter-15631", + "maker": "Maker G", + "model": "Model 15631", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.006244616757925, + 19.660373437557652 + ] + }, + "properties": { + "id": "meter-15632", + "maker": "Maker E", + "model": "Model 15632", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.14020280857581, + 27.991980666635172 + ] + }, + "properties": { + "id": "meter-15633", + "maker": "Maker C", + "model": "Model 15633", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.31488059828142, + 28.800399701490395 + ] + }, + "properties": { + "id": "meter-15634", + "maker": "Maker D", + "model": "Model 15634", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.01801146900971, + 22.47893379615354 + ] + }, + "properties": { + "id": "meter-15635", + "maker": "Maker J", + "model": "Model 15635", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.233461951070254, + 23.07981296584707 + ] + }, + "properties": { + "id": "meter-15636", + "maker": "Maker E", + "model": "Model 15636", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.780104116158434, + 21.030428786118705 + ] + }, + "properties": { + "id": "meter-15637", + "maker": "Maker I", + "model": "Model 15637", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.356922929927, + 18.251317842194428 + ] + }, + "properties": { + "id": "meter-15638", + "maker": "Maker D", + "model": "Model 15638", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.706224219971304, + 24.562979221614395 + ] + }, + "properties": { + "id": "meter-15639", + "maker": "Maker E", + "model": "Model 15639", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.9860464412028, + 19.694081608354498 + ] + }, + "properties": { + "id": "meter-15640", + "maker": "Maker H", + "model": "Model 15640", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.15776507563751, + 21.35023468213185 + ] + }, + "properties": { + "id": "meter-15641", + "maker": "Maker H", + "model": "Model 15641", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.03266267657858, + 22.675909593177845 + ] + }, + "properties": { + "id": "meter-15642", + "maker": "Maker A", + "model": "Model 15642", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.63370201262138, + 24.04249581357916 + ] + }, + "properties": { + "id": "meter-15643", + "maker": "Maker D", + "model": "Model 15643", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.421345367680914, + 27.54635946506879 + ] + }, + "properties": { + "id": "meter-15644", + "maker": "Maker E", + "model": "Model 15644", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.26051884881362, + 23.116277670058086 + ] + }, + "properties": { + "id": "meter-15645", + "maker": "Maker H", + "model": "Model 15645", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.52697506589746, + 25.763734980742935 + ] + }, + "properties": { + "id": "meter-15646", + "maker": "Maker E", + "model": "Model 15646", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.39838524857777, + 20.319346256267625 + ] + }, + "properties": { + "id": "meter-15647", + "maker": "Maker E", + "model": "Model 15647", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.58718538084829, + 23.75332866935647 + ] + }, + "properties": { + "id": "meter-15648", + "maker": "Maker D", + "model": "Model 15648", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.77636402506811, + 25.904802989849138 + ] + }, + "properties": { + "id": "meter-15649", + "maker": "Maker B", + "model": "Model 15649", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.8016353372971, + 22.163165107211576 + ] + }, + "properties": { + "id": "meter-15650", + "maker": "Maker I", + "model": "Model 15650", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.36543468821242, + 18.110900774252016 + ] + }, + "properties": { + "id": "meter-15651", + "maker": "Maker F", + "model": "Model 15651", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.55057217339044, + 23.00879219456131 + ] + }, + "properties": { + "id": "meter-15652", + "maker": "Maker E", + "model": "Model 15652", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.14019121361474, + 20.605084236518252 + ] + }, + "properties": { + "id": "meter-15653", + "maker": "Maker D", + "model": "Model 15653", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.447036023418434, + 27.68361376079571 + ] + }, + "properties": { + "id": "meter-15654", + "maker": "Maker C", + "model": "Model 15654", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.1405081219843, + 25.1707057101249 + ] + }, + "properties": { + "id": "meter-15655", + "maker": "Maker D", + "model": "Model 15655", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.13243199132579, + 21.492032043912825 + ] + }, + "properties": { + "id": "meter-15656", + "maker": "Maker H", + "model": "Model 15656", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.867965960021024, + 21.50981872753257 + ] + }, + "properties": { + "id": "meter-15657", + "maker": "Maker G", + "model": "Model 15657", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.81921746268594, + 23.770316860541644 + ] + }, + "properties": { + "id": "meter-15658", + "maker": "Maker H", + "model": "Model 15658", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.123879545279124, + 25.373677693859456 + ] + }, + "properties": { + "id": "meter-15659", + "maker": "Maker B", + "model": "Model 15659", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.63805369698004, + 26.120269215227054 + ] + }, + "properties": { + "id": "meter-15660", + "maker": "Maker C", + "model": "Model 15660", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.1998036951037, + 21.569917859916945 + ] + }, + "properties": { + "id": "meter-15661", + "maker": "Maker F", + "model": "Model 15661", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.68365037263535, + 24.452308242533135 + ] + }, + "properties": { + "id": "meter-15662", + "maker": "Maker E", + "model": "Model 15662", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.94405933447417, + 22.53699483649439 + ] + }, + "properties": { + "id": "meter-15663", + "maker": "Maker D", + "model": "Model 15663", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.297331317932425, + 27.9653164984152 + ] + }, + "properties": { + "id": "meter-15664", + "maker": "Maker E", + "model": "Model 15664", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.33593178451423, + 23.771642164172214 + ] + }, + "properties": { + "id": "meter-15665", + "maker": "Maker D", + "model": "Model 15665", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.552983112017614, + 19.09419530718483 + ] + }, + "properties": { + "id": "meter-15666", + "maker": "Maker D", + "model": "Model 15666", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.903283681327025, + 26.733660099361792 + ] + }, + "properties": { + "id": "meter-15667", + "maker": "Maker G", + "model": "Model 15667", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.78064253267736, + 19.77330072378324 + ] + }, + "properties": { + "id": "meter-15668", + "maker": "Maker A", + "model": "Model 15668", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.21277307816312, + 25.87323478055157 + ] + }, + "properties": { + "id": "meter-15669", + "maker": "Maker G", + "model": "Model 15669", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.955051331340115, + 18.724000949355176 + ] + }, + "properties": { + "id": "meter-15670", + "maker": "Maker J", + "model": "Model 15670", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.22825437641893, + 27.31985479151372 + ] + }, + "properties": { + "id": "meter-15671", + "maker": "Maker E", + "model": "Model 15671", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.75862810084677, + 26.778010694709437 + ] + }, + "properties": { + "id": "meter-15672", + "maker": "Maker F", + "model": "Model 15672", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.79047603726929, + 26.202067618009657 + ] + }, + "properties": { + "id": "meter-15673", + "maker": "Maker H", + "model": "Model 15673", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.42272993295473, + 23.71141898393072 + ] + }, + "properties": { + "id": "meter-15674", + "maker": "Maker E", + "model": "Model 15674", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.00150335472607, + 24.815300684359666 + ] + }, + "properties": { + "id": "meter-15675", + "maker": "Maker C", + "model": "Model 15675", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.26843365206915, + 20.726409724198096 + ] + }, + "properties": { + "id": "meter-15676", + "maker": "Maker B", + "model": "Model 15676", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.53462620482979, + 21.602287624326845 + ] + }, + "properties": { + "id": "meter-15677", + "maker": "Maker I", + "model": "Model 15677", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.275621689099175, + 25.016712290206215 + ] + }, + "properties": { + "id": "meter-15678", + "maker": "Maker H", + "model": "Model 15678", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.52119005592089, + 21.93326399042494 + ] + }, + "properties": { + "id": "meter-15679", + "maker": "Maker J", + "model": "Model 15679", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.632690383924626, + 18.551921789131725 + ] + }, + "properties": { + "id": "meter-15680", + "maker": "Maker G", + "model": "Model 15680", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.987772846876304, + 20.724878271071272 + ] + }, + "properties": { + "id": "meter-15681", + "maker": "Maker I", + "model": "Model 15681", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.24734065837256, + 26.94311041506179 + ] + }, + "properties": { + "id": "meter-15682", + "maker": "Maker A", + "model": "Model 15682", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.70679872242059, + 20.99655037782606 + ] + }, + "properties": { + "id": "meter-15683", + "maker": "Maker G", + "model": "Model 15683", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.39481042872149, + 28.20771716288821 + ] + }, + "properties": { + "id": "meter-15684", + "maker": "Maker A", + "model": "Model 15684", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.89289875418074, + 20.453563858189828 + ] + }, + "properties": { + "id": "meter-15685", + "maker": "Maker I", + "model": "Model 15685", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.495020288062, + 24.820602453579923 + ] + }, + "properties": { + "id": "meter-15686", + "maker": "Maker F", + "model": "Model 15686", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.833396042624464, + 22.395557167791512 + ] + }, + "properties": { + "id": "meter-15687", + "maker": "Maker H", + "model": "Model 15687", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.032047839808165, + 21.42759277082473 + ] + }, + "properties": { + "id": "meter-15688", + "maker": "Maker H", + "model": "Model 15688", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.06624331816498, + 23.074647039553643 + ] + }, + "properties": { + "id": "meter-15689", + "maker": "Maker H", + "model": "Model 15689", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.875351901631724, + 21.973104912113083 + ] + }, + "properties": { + "id": "meter-15690", + "maker": "Maker D", + "model": "Model 15690", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.2389070054964, + 27.468074077038192 + ] + }, + "properties": { + "id": "meter-15691", + "maker": "Maker J", + "model": "Model 15691", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.115143075020974, + 23.424893949115962 + ] + }, + "properties": { + "id": "meter-15692", + "maker": "Maker D", + "model": "Model 15692", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.56873357894777, + 22.624376653410874 + ] + }, + "properties": { + "id": "meter-15693", + "maker": "Maker F", + "model": "Model 15693", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.659239886400066, + 25.772265377604292 + ] + }, + "properties": { + "id": "meter-15694", + "maker": "Maker B", + "model": "Model 15694", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.15262673974617, + 22.071817308685635 + ] + }, + "properties": { + "id": "meter-15695", + "maker": "Maker B", + "model": "Model 15695", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.72452833645563, + 26.79238873753334 + ] + }, + "properties": { + "id": "meter-15696", + "maker": "Maker H", + "model": "Model 15696", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.59296579153545, + 19.729664037941898 + ] + }, + "properties": { + "id": "meter-15697", + "maker": "Maker H", + "model": "Model 15697", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.543891117910945, + 20.04304880078405 + ] + }, + "properties": { + "id": "meter-15698", + "maker": "Maker J", + "model": "Model 15698", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.05569241170253, + 22.60477486985649 + ] + }, + "properties": { + "id": "meter-15699", + "maker": "Maker I", + "model": "Model 15699", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.231317964198254, + 21.236860486021776 + ] + }, + "properties": { + "id": "meter-15700", + "maker": "Maker G", + "model": "Model 15700", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.664910092288295, + 26.948177488847698 + ] + }, + "properties": { + "id": "meter-15701", + "maker": "Maker I", + "model": "Model 15701", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.01414199887476, + 30.2553257266583 + ] + }, + "properties": { + "id": "meter-15702", + "maker": "Maker G", + "model": "Model 15702", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.645476031650006, + 27.51420426204101 + ] + }, + "properties": { + "id": "meter-15703", + "maker": "Maker H", + "model": "Model 15703", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.805734789485996, + 27.985622629718982 + ] + }, + "properties": { + "id": "meter-15704", + "maker": "Maker J", + "model": "Model 15704", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.034689761657525, + 25.40626897123351 + ] + }, + "properties": { + "id": "meter-15705", + "maker": "Maker B", + "model": "Model 15705", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.733483339160614, + 24.953146783984433 + ] + }, + "properties": { + "id": "meter-15706", + "maker": "Maker H", + "model": "Model 15706", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.09285519072542, + 18.85655149073941 + ] + }, + "properties": { + "id": "meter-15707", + "maker": "Maker D", + "model": "Model 15707", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.94503729478198, + 21.97398734817245 + ] + }, + "properties": { + "id": "meter-15708", + "maker": "Maker A", + "model": "Model 15708", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.943989539586866, + 25.19212506446577 + ] + }, + "properties": { + "id": "meter-15709", + "maker": "Maker B", + "model": "Model 15709", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.38885866451953, + 27.33901623047266 + ] + }, + "properties": { + "id": "meter-15710", + "maker": "Maker B", + "model": "Model 15710", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.1069383004654, + 21.960776591466725 + ] + }, + "properties": { + "id": "meter-15711", + "maker": "Maker E", + "model": "Model 15711", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.789279486540394, + 23.272661953798156 + ] + }, + "properties": { + "id": "meter-15712", + "maker": "Maker H", + "model": "Model 15712", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.3213098105721, + 21.753447986656884 + ] + }, + "properties": { + "id": "meter-15713", + "maker": "Maker E", + "model": "Model 15713", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92710401099731, + 28.060668025962755 + ] + }, + "properties": { + "id": "meter-15714", + "maker": "Maker D", + "model": "Model 15714", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.1035488406765, + 24.017542769162233 + ] + }, + "properties": { + "id": "meter-15715", + "maker": "Maker B", + "model": "Model 15715", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.878898756483146, + 18.97036981284501 + ] + }, + "properties": { + "id": "meter-15716", + "maker": "Maker I", + "model": "Model 15716", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.574549144026435, + 24.835582624422628 + ] + }, + "properties": { + "id": "meter-15717", + "maker": "Maker B", + "model": "Model 15717", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.66312122686743, + 21.18086498625464 + ] + }, + "properties": { + "id": "meter-15718", + "maker": "Maker B", + "model": "Model 15718", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.78143026066357, + 27.799470286570994 + ] + }, + "properties": { + "id": "meter-15719", + "maker": "Maker D", + "model": "Model 15719", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.03582192899962, + 23.69737635399649 + ] + }, + "properties": { + "id": "meter-15720", + "maker": "Maker D", + "model": "Model 15720", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.16203855063245, + 18.286603456756385 + ] + }, + "properties": { + "id": "meter-15721", + "maker": "Maker J", + "model": "Model 15721", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.33139900628651, + 27.74650469862494 + ] + }, + "properties": { + "id": "meter-15722", + "maker": "Maker E", + "model": "Model 15722", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.60503077915858, + 23.407853006830884 + ] + }, + "properties": { + "id": "meter-15723", + "maker": "Maker E", + "model": "Model 15723", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.23916729336405, + 28.492892060359903 + ] + }, + "properties": { + "id": "meter-15724", + "maker": "Maker C", + "model": "Model 15724", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.566726285146075, + 19.96806632242901 + ] + }, + "properties": { + "id": "meter-15725", + "maker": "Maker J", + "model": "Model 15725", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.32278045129437, + 27.659688980325313 + ] + }, + "properties": { + "id": "meter-15726", + "maker": "Maker E", + "model": "Model 15726", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.2489228770786, + 21.441456229313456 + ] + }, + "properties": { + "id": "meter-15727", + "maker": "Maker I", + "model": "Model 15727", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.46839205070738, + 27.42000372574648 + ] + }, + "properties": { + "id": "meter-15728", + "maker": "Maker G", + "model": "Model 15728", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.372002867539535, + 21.75626862902098 + ] + }, + "properties": { + "id": "meter-15729", + "maker": "Maker F", + "model": "Model 15729", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.23856490267424, + 23.693242339390977 + ] + }, + "properties": { + "id": "meter-15730", + "maker": "Maker J", + "model": "Model 15730", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.64677671824827, + 26.35614576198863 + ] + }, + "properties": { + "id": "meter-15731", + "maker": "Maker E", + "model": "Model 15731", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.25278962563975, + 24.851112170940276 + ] + }, + "properties": { + "id": "meter-15732", + "maker": "Maker G", + "model": "Model 15732", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.35673829605737, + 24.241468967390446 + ] + }, + "properties": { + "id": "meter-15733", + "maker": "Maker B", + "model": "Model 15733", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.040897422725, + 20.468077275120592 + ] + }, + "properties": { + "id": "meter-15734", + "maker": "Maker C", + "model": "Model 15734", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.55004869515131, + 26.77265352216527 + ] + }, + "properties": { + "id": "meter-15735", + "maker": "Maker B", + "model": "Model 15735", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.99884845774143, + 26.990753057130853 + ] + }, + "properties": { + "id": "meter-15736", + "maker": "Maker J", + "model": "Model 15736", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.92728617293173, + 27.392687504626835 + ] + }, + "properties": { + "id": "meter-15737", + "maker": "Maker I", + "model": "Model 15737", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.26623922349228, + 23.337010048900083 + ] + }, + "properties": { + "id": "meter-15738", + "maker": "Maker I", + "model": "Model 15738", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.68882852621849, + 26.131231537331818 + ] + }, + "properties": { + "id": "meter-15739", + "maker": "Maker J", + "model": "Model 15739", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26037094836891, + 23.835862010565762 + ] + }, + "properties": { + "id": "meter-15740", + "maker": "Maker J", + "model": "Model 15740", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.65655354364071, + 28.787277521858947 + ] + }, + "properties": { + "id": "meter-15741", + "maker": "Maker E", + "model": "Model 15741", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.549299059647076, + 27.700673034663954 + ] + }, + "properties": { + "id": "meter-15742", + "maker": "Maker H", + "model": "Model 15742", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.259921959714575, + 20.288772867475814 + ] + }, + "properties": { + "id": "meter-15743", + "maker": "Maker F", + "model": "Model 15743", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.696424549713356, + 23.375767360730563 + ] + }, + "properties": { + "id": "meter-15744", + "maker": "Maker A", + "model": "Model 15744", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.980644991103, + 23.38124858760493 + ] + }, + "properties": { + "id": "meter-15745", + "maker": "Maker C", + "model": "Model 15745", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.62761915167684, + 23.768182010626646 + ] + }, + "properties": { + "id": "meter-15746", + "maker": "Maker C", + "model": "Model 15746", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.32332756507636, + 25.16277574020046 + ] + }, + "properties": { + "id": "meter-15747", + "maker": "Maker B", + "model": "Model 15747", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.254091352954774, + 22.484535100299112 + ] + }, + "properties": { + "id": "meter-15748", + "maker": "Maker E", + "model": "Model 15748", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.11325850521933, + 20.85584811517386 + ] + }, + "properties": { + "id": "meter-15749", + "maker": "Maker H", + "model": "Model 15749", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.42139886947728, + 20.418022269973306 + ] + }, + "properties": { + "id": "meter-15750", + "maker": "Maker E", + "model": "Model 15750", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.43521250479223, + 25.70432267007284 + ] + }, + "properties": { + "id": "meter-15751", + "maker": "Maker A", + "model": "Model 15751", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.42474878741356, + 25.684996591510732 + ] + }, + "properties": { + "id": "meter-15752", + "maker": "Maker D", + "model": "Model 15752", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.693200703519686, + 23.69114903273247 + ] + }, + "properties": { + "id": "meter-15753", + "maker": "Maker H", + "model": "Model 15753", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.291874281979176, + 24.910979394055264 + ] + }, + "properties": { + "id": "meter-15754", + "maker": "Maker F", + "model": "Model 15754", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.29115713334172, + 24.37581048165778 + ] + }, + "properties": { + "id": "meter-15755", + "maker": "Maker B", + "model": "Model 15755", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.74068357944384, + 21.523200109299268 + ] + }, + "properties": { + "id": "meter-15756", + "maker": "Maker I", + "model": "Model 15756", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04231999348093, + 24.542157510286067 + ] + }, + "properties": { + "id": "meter-15757", + "maker": "Maker F", + "model": "Model 15757", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.54511301501284, + 26.497836413051605 + ] + }, + "properties": { + "id": "meter-15758", + "maker": "Maker C", + "model": "Model 15758", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.96456373267197, + 28.886735973902734 + ] + }, + "properties": { + "id": "meter-15759", + "maker": "Maker H", + "model": "Model 15759", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12634259124934, + 24.441389236090128 + ] + }, + "properties": { + "id": "meter-15760", + "maker": "Maker G", + "model": "Model 15760", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.19916321280342, + 27.400132403461306 + ] + }, + "properties": { + "id": "meter-15761", + "maker": "Maker D", + "model": "Model 15761", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.071826874226616, + 17.67899543591451 + ] + }, + "properties": { + "id": "meter-15762", + "maker": "Maker H", + "model": "Model 15762", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.45577398244562, + 21.735623867344007 + ] + }, + "properties": { + "id": "meter-15763", + "maker": "Maker A", + "model": "Model 15763", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10560612478435, + 24.398290655230053 + ] + }, + "properties": { + "id": "meter-15764", + "maker": "Maker C", + "model": "Model 15764", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.349225440469475, + 29.91148847762011 + ] + }, + "properties": { + "id": "meter-15765", + "maker": "Maker I", + "model": "Model 15765", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.14120687338627, + 25.28814071662339 + ] + }, + "properties": { + "id": "meter-15766", + "maker": "Maker A", + "model": "Model 15766", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.658022574266454, + 27.653597508752483 + ] + }, + "properties": { + "id": "meter-15767", + "maker": "Maker E", + "model": "Model 15767", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.48423148810875, + 21.703759165415242 + ] + }, + "properties": { + "id": "meter-15768", + "maker": "Maker G", + "model": "Model 15768", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.560245664391495, + 21.754616899980988 + ] + }, + "properties": { + "id": "meter-15769", + "maker": "Maker I", + "model": "Model 15769", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.57765611729615, + 21.548106412119374 + ] + }, + "properties": { + "id": "meter-15770", + "maker": "Maker E", + "model": "Model 15770", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.44418651121828, + 25.35955783436865 + ] + }, + "properties": { + "id": "meter-15771", + "maker": "Maker B", + "model": "Model 15771", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.25746384132776, + 18.91357244461606 + ] + }, + "properties": { + "id": "meter-15772", + "maker": "Maker E", + "model": "Model 15772", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.63290214822841, + 24.98898576271065 + ] + }, + "properties": { + "id": "meter-15773", + "maker": "Maker C", + "model": "Model 15773", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.138277747402675, + 30.177515544744068 + ] + }, + "properties": { + "id": "meter-15774", + "maker": "Maker B", + "model": "Model 15774", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.252041313246465, + 22.311959007845083 + ] + }, + "properties": { + "id": "meter-15775", + "maker": "Maker J", + "model": "Model 15775", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.60117056007237, + 26.59440271495162 + ] + }, + "properties": { + "id": "meter-15776", + "maker": "Maker D", + "model": "Model 15776", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.26056150457466, + 26.09893578777052 + ] + }, + "properties": { + "id": "meter-15777", + "maker": "Maker A", + "model": "Model 15777", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.308691393481396, + 25.238469592511837 + ] + }, + "properties": { + "id": "meter-15778", + "maker": "Maker I", + "model": "Model 15778", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.15025502534311, + 29.951356339162245 + ] + }, + "properties": { + "id": "meter-15779", + "maker": "Maker H", + "model": "Model 15779", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.80658326649591, + 25.813601898679032 + ] + }, + "properties": { + "id": "meter-15780", + "maker": "Maker A", + "model": "Model 15780", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.87320737860672, + 20.86021569491528 + ] + }, + "properties": { + "id": "meter-15781", + "maker": "Maker F", + "model": "Model 15781", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.853716989763136, + 27.0302927501695 + ] + }, + "properties": { + "id": "meter-15782", + "maker": "Maker E", + "model": "Model 15782", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.060971228227515, + 29.18892814638506 + ] + }, + "properties": { + "id": "meter-15783", + "maker": "Maker A", + "model": "Model 15783", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.147275896861316, + 26.990198040069124 + ] + }, + "properties": { + "id": "meter-15784", + "maker": "Maker C", + "model": "Model 15784", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.63347279242663, + 29.50614865342159 + ] + }, + "properties": { + "id": "meter-15785", + "maker": "Maker E", + "model": "Model 15785", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.20907974160237, + 19.70143845366661 + ] + }, + "properties": { + "id": "meter-15786", + "maker": "Maker D", + "model": "Model 15786", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.38510156408843, + 23.01922124732063 + ] + }, + "properties": { + "id": "meter-15787", + "maker": "Maker F", + "model": "Model 15787", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.31608972754555, + 20.60861323710112 + ] + }, + "properties": { + "id": "meter-15788", + "maker": "Maker H", + "model": "Model 15788", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.49198659886514, + 28.665219456738313 + ] + }, + "properties": { + "id": "meter-15789", + "maker": "Maker A", + "model": "Model 15789", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.09654747990845, + 30.519570595770286 + ] + }, + "properties": { + "id": "meter-15790", + "maker": "Maker E", + "model": "Model 15790", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.38361011274512, + 18.989784149668914 + ] + }, + "properties": { + "id": "meter-15791", + "maker": "Maker D", + "model": "Model 15791", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.297396017887394, + 17.912898899675625 + ] + }, + "properties": { + "id": "meter-15792", + "maker": "Maker I", + "model": "Model 15792", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.41362709653722, + 28.78331026790924 + ] + }, + "properties": { + "id": "meter-15793", + "maker": "Maker B", + "model": "Model 15793", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.495744359075246, + 22.655836328026222 + ] + }, + "properties": { + "id": "meter-15794", + "maker": "Maker F", + "model": "Model 15794", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.57129631377059, + 21.599025277256096 + ] + }, + "properties": { + "id": "meter-15795", + "maker": "Maker F", + "model": "Model 15795", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.79397574281225, + 29.999199214386067 + ] + }, + "properties": { + "id": "meter-15796", + "maker": "Maker G", + "model": "Model 15796", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.354134416101644, + 25.307694423095654 + ] + }, + "properties": { + "id": "meter-15797", + "maker": "Maker H", + "model": "Model 15797", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.795953509286235, + 22.296311116936685 + ] + }, + "properties": { + "id": "meter-15798", + "maker": "Maker C", + "model": "Model 15798", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.162012484266135, + 25.31966472034598 + ] + }, + "properties": { + "id": "meter-15799", + "maker": "Maker D", + "model": "Model 15799", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.45668833425526, + 24.53373924881476 + ] + }, + "properties": { + "id": "meter-15800", + "maker": "Maker E", + "model": "Model 15800", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.66093111672856, + 28.477234664396065 + ] + }, + "properties": { + "id": "meter-15801", + "maker": "Maker F", + "model": "Model 15801", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.447748266755696, + 23.325315588993107 + ] + }, + "properties": { + "id": "meter-15802", + "maker": "Maker C", + "model": "Model 15802", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.54719143220482, + 26.90808174764404 + ] + }, + "properties": { + "id": "meter-15803", + "maker": "Maker C", + "model": "Model 15803", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.83288316088466, + 17.842961786888328 + ] + }, + "properties": { + "id": "meter-15804", + "maker": "Maker D", + "model": "Model 15804", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.15143385146574, + 21.14861158243644 + ] + }, + "properties": { + "id": "meter-15805", + "maker": "Maker C", + "model": "Model 15805", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.81934841679797, + 29.36756350718591 + ] + }, + "properties": { + "id": "meter-15806", + "maker": "Maker D", + "model": "Model 15806", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.58342593874196, + 26.8459029640752 + ] + }, + "properties": { + "id": "meter-15807", + "maker": "Maker D", + "model": "Model 15807", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2501253828224, + 26.32645718273664 + ] + }, + "properties": { + "id": "meter-15808", + "maker": "Maker A", + "model": "Model 15808", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.98247565028013, + 21.421754707496618 + ] + }, + "properties": { + "id": "meter-15809", + "maker": "Maker D", + "model": "Model 15809", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.762630485835984, + 25.75536796150586 + ] + }, + "properties": { + "id": "meter-15810", + "maker": "Maker D", + "model": "Model 15810", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.02532802273535, + 24.738618793588717 + ] + }, + "properties": { + "id": "meter-15811", + "maker": "Maker F", + "model": "Model 15811", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.328145707141715, + 28.144878455644875 + ] + }, + "properties": { + "id": "meter-15812", + "maker": "Maker I", + "model": "Model 15812", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.266185907051735, + 23.571172201593537 + ] + }, + "properties": { + "id": "meter-15813", + "maker": "Maker I", + "model": "Model 15813", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.25525237826137, + 22.996343133049493 + ] + }, + "properties": { + "id": "meter-15814", + "maker": "Maker C", + "model": "Model 15814", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.908293026453975, + 22.577140233348345 + ] + }, + "properties": { + "id": "meter-15815", + "maker": "Maker B", + "model": "Model 15815", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.40567641035874, + 26.690960742616213 + ] + }, + "properties": { + "id": "meter-15816", + "maker": "Maker I", + "model": "Model 15816", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.910316219322766, + 19.29554388851649 + ] + }, + "properties": { + "id": "meter-15817", + "maker": "Maker I", + "model": "Model 15817", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.205731863702674, + 27.646863748743517 + ] + }, + "properties": { + "id": "meter-15818", + "maker": "Maker H", + "model": "Model 15818", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.695858304059264, + 24.21935956317941 + ] + }, + "properties": { + "id": "meter-15819", + "maker": "Maker C", + "model": "Model 15819", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.27955247890337, + 25.977973067203692 + ] + }, + "properties": { + "id": "meter-15820", + "maker": "Maker J", + "model": "Model 15820", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.697198777112604, + 20.06752468870326 + ] + }, + "properties": { + "id": "meter-15821", + "maker": "Maker A", + "model": "Model 15821", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.561534905321246, + 21.480054001126874 + ] + }, + "properties": { + "id": "meter-15822", + "maker": "Maker I", + "model": "Model 15822", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.22970385853078, + 24.13587598099209 + ] + }, + "properties": { + "id": "meter-15823", + "maker": "Maker A", + "model": "Model 15823", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.054096623984165, + 18.869976632734144 + ] + }, + "properties": { + "id": "meter-15824", + "maker": "Maker I", + "model": "Model 15824", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.38439218587516, + 20.715403166475234 + ] + }, + "properties": { + "id": "meter-15825", + "maker": "Maker E", + "model": "Model 15825", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.1144589084024, + 24.37149949389694 + ] + }, + "properties": { + "id": "meter-15826", + "maker": "Maker H", + "model": "Model 15826", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.739827125100334, + 21.417837166778376 + ] + }, + "properties": { + "id": "meter-15827", + "maker": "Maker E", + "model": "Model 15827", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.26532310930996, + 21.63067634680037 + ] + }, + "properties": { + "id": "meter-15828", + "maker": "Maker H", + "model": "Model 15828", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.05996508657268, + 19.48684645090208 + ] + }, + "properties": { + "id": "meter-15829", + "maker": "Maker H", + "model": "Model 15829", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.530207807442906, + 28.544723610789035 + ] + }, + "properties": { + "id": "meter-15830", + "maker": "Maker I", + "model": "Model 15830", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.96798875712971, + 25.60695107001501 + ] + }, + "properties": { + "id": "meter-15831", + "maker": "Maker J", + "model": "Model 15831", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.764794412390906, + 26.357200134632947 + ] + }, + "properties": { + "id": "meter-15832", + "maker": "Maker A", + "model": "Model 15832", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.50579495694503, + 28.932135045659194 + ] + }, + "properties": { + "id": "meter-15833", + "maker": "Maker F", + "model": "Model 15833", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05988540451504, + 29.467249204460636 + ] + }, + "properties": { + "id": "meter-15834", + "maker": "Maker E", + "model": "Model 15834", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.13186837973806, + 27.02817724273302 + ] + }, + "properties": { + "id": "meter-15835", + "maker": "Maker C", + "model": "Model 15835", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.7326636512459, + 28.186081338250847 + ] + }, + "properties": { + "id": "meter-15836", + "maker": "Maker B", + "model": "Model 15836", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.117043075031624, + 27.050711081159726 + ] + }, + "properties": { + "id": "meter-15837", + "maker": "Maker G", + "model": "Model 15837", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.26078938023914, + 23.091775018299558 + ] + }, + "properties": { + "id": "meter-15838", + "maker": "Maker H", + "model": "Model 15838", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.0440321627503, + 20.363409863047202 + ] + }, + "properties": { + "id": "meter-15839", + "maker": "Maker G", + "model": "Model 15839", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.71174174615724, + 23.512224872752512 + ] + }, + "properties": { + "id": "meter-15840", + "maker": "Maker E", + "model": "Model 15840", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.6839888030689, + 23.922360263204613 + ] + }, + "properties": { + "id": "meter-15841", + "maker": "Maker F", + "model": "Model 15841", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.18390607743295, + 25.74416327584314 + ] + }, + "properties": { + "id": "meter-15842", + "maker": "Maker C", + "model": "Model 15842", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.2769450798334, + 22.320117850838837 + ] + }, + "properties": { + "id": "meter-15843", + "maker": "Maker G", + "model": "Model 15843", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.691423536158716, + 28.969186385610293 + ] + }, + "properties": { + "id": "meter-15844", + "maker": "Maker F", + "model": "Model 15844", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.05784155702315, + 28.818239224861685 + ] + }, + "properties": { + "id": "meter-15845", + "maker": "Maker C", + "model": "Model 15845", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46297709581416, + 29.025965859991622 + ] + }, + "properties": { + "id": "meter-15846", + "maker": "Maker J", + "model": "Model 15846", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.7576966817363, + 19.770907188719598 + ] + }, + "properties": { + "id": "meter-15847", + "maker": "Maker J", + "model": "Model 15847", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.32138538825927, + 30.48793876389731 + ] + }, + "properties": { + "id": "meter-15848", + "maker": "Maker G", + "model": "Model 15848", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.62689433208533, + 21.808694291182317 + ] + }, + "properties": { + "id": "meter-15849", + "maker": "Maker E", + "model": "Model 15849", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.86244757151524, + 28.272942110771876 + ] + }, + "properties": { + "id": "meter-15850", + "maker": "Maker E", + "model": "Model 15850", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00008244526616, + 29.0194879004925 + ] + }, + "properties": { + "id": "meter-15851", + "maker": "Maker F", + "model": "Model 15851", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.8829814094417, + 20.35185972123482 + ] + }, + "properties": { + "id": "meter-15852", + "maker": "Maker J", + "model": "Model 15852", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.497267077783356, + 20.32453188420178 + ] + }, + "properties": { + "id": "meter-15853", + "maker": "Maker C", + "model": "Model 15853", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.68007293311324, + 25.16545761154676 + ] + }, + "properties": { + "id": "meter-15854", + "maker": "Maker J", + "model": "Model 15854", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.55247358434398, + 21.308566050403094 + ] + }, + "properties": { + "id": "meter-15855", + "maker": "Maker G", + "model": "Model 15855", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.51869330014286, + 19.800157789260638 + ] + }, + "properties": { + "id": "meter-15856", + "maker": "Maker B", + "model": "Model 15856", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.48598469468951, + 28.17775302640773 + ] + }, + "properties": { + "id": "meter-15857", + "maker": "Maker J", + "model": "Model 15857", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.11316349168574, + 23.64817991950381 + ] + }, + "properties": { + "id": "meter-15858", + "maker": "Maker A", + "model": "Model 15858", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.55060312265021, + 25.370530723307375 + ] + }, + "properties": { + "id": "meter-15859", + "maker": "Maker A", + "model": "Model 15859", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.580077471991004, + 22.220035041631682 + ] + }, + "properties": { + "id": "meter-15860", + "maker": "Maker B", + "model": "Model 15860", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.97779274425433, + 22.435332375908526 + ] + }, + "properties": { + "id": "meter-15861", + "maker": "Maker I", + "model": "Model 15861", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.33925135975075, + 22.177815164145265 + ] + }, + "properties": { + "id": "meter-15862", + "maker": "Maker H", + "model": "Model 15862", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.52751519561569, + 21.8318426799042 + ] + }, + "properties": { + "id": "meter-15863", + "maker": "Maker E", + "model": "Model 15863", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.397625137555174, + 20.787008526458074 + ] + }, + "properties": { + "id": "meter-15864", + "maker": "Maker B", + "model": "Model 15864", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.79018459539184, + 25.412310800064823 + ] + }, + "properties": { + "id": "meter-15865", + "maker": "Maker I", + "model": "Model 15865", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.609268061535644, + 23.19267832940861 + ] + }, + "properties": { + "id": "meter-15866", + "maker": "Maker J", + "model": "Model 15866", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.93960879049402, + 23.562876773565936 + ] + }, + "properties": { + "id": "meter-15867", + "maker": "Maker H", + "model": "Model 15867", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.61440952443601, + 20.759707733453766 + ] + }, + "properties": { + "id": "meter-15868", + "maker": "Maker E", + "model": "Model 15868", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.20005735513596, + 24.714320497791185 + ] + }, + "properties": { + "id": "meter-15869", + "maker": "Maker D", + "model": "Model 15869", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.07373199027239, + 21.715909689758462 + ] + }, + "properties": { + "id": "meter-15870", + "maker": "Maker H", + "model": "Model 15870", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.584611489206154, + 29.555879096743148 + ] + }, + "properties": { + "id": "meter-15871", + "maker": "Maker I", + "model": "Model 15871", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.99686956315827, + 27.19832971961764 + ] + }, + "properties": { + "id": "meter-15872", + "maker": "Maker J", + "model": "Model 15872", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62997070246659, + 29.810538524152527 + ] + }, + "properties": { + "id": "meter-15873", + "maker": "Maker B", + "model": "Model 15873", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.56836466738685, + 20.489534854775975 + ] + }, + "properties": { + "id": "meter-15874", + "maker": "Maker G", + "model": "Model 15874", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.511130277594454, + 25.161275555375738 + ] + }, + "properties": { + "id": "meter-15875", + "maker": "Maker F", + "model": "Model 15875", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.75582809033857, + 18.046326305589456 + ] + }, + "properties": { + "id": "meter-15876", + "maker": "Maker G", + "model": "Model 15876", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.27750284267877, + 26.53102300574927 + ] + }, + "properties": { + "id": "meter-15877", + "maker": "Maker D", + "model": "Model 15877", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.18869407587427, + 30.150918427911428 + ] + }, + "properties": { + "id": "meter-15878", + "maker": "Maker F", + "model": "Model 15878", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.459388640784994, + 29.818792752761198 + ] + }, + "properties": { + "id": "meter-15879", + "maker": "Maker F", + "model": "Model 15879", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.2762446072016, + 20.08206455295262 + ] + }, + "properties": { + "id": "meter-15880", + "maker": "Maker B", + "model": "Model 15880", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.82914711382065, + 20.910520867646298 + ] + }, + "properties": { + "id": "meter-15881", + "maker": "Maker J", + "model": "Model 15881", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.782777288733286, + 20.64262516256168 + ] + }, + "properties": { + "id": "meter-15882", + "maker": "Maker D", + "model": "Model 15882", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.51376331402821, + 28.744399626599467 + ] + }, + "properties": { + "id": "meter-15883", + "maker": "Maker A", + "model": "Model 15883", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.3940050073607, + 23.064874613623115 + ] + }, + "properties": { + "id": "meter-15884", + "maker": "Maker G", + "model": "Model 15884", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.69211845912623, + 25.071742100033227 + ] + }, + "properties": { + "id": "meter-15885", + "maker": "Maker I", + "model": "Model 15885", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.32809070309078, + 22.33960011641606 + ] + }, + "properties": { + "id": "meter-15886", + "maker": "Maker G", + "model": "Model 15886", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.01905042590276, + 20.229227731673355 + ] + }, + "properties": { + "id": "meter-15887", + "maker": "Maker E", + "model": "Model 15887", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.77922513227676, + 26.84218648881441 + ] + }, + "properties": { + "id": "meter-15888", + "maker": "Maker G", + "model": "Model 15888", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.64584588004546, + 20.490084863771663 + ] + }, + "properties": { + "id": "meter-15889", + "maker": "Maker D", + "model": "Model 15889", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.834922308294345, + 21.15025658133309 + ] + }, + "properties": { + "id": "meter-15890", + "maker": "Maker G", + "model": "Model 15890", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.04423704108447, + 28.984843431740988 + ] + }, + "properties": { + "id": "meter-15891", + "maker": "Maker F", + "model": "Model 15891", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.49796517994797, + 28.256962928360217 + ] + }, + "properties": { + "id": "meter-15892", + "maker": "Maker F", + "model": "Model 15892", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.70436634943602, + 26.805384438317162 + ] + }, + "properties": { + "id": "meter-15893", + "maker": "Maker F", + "model": "Model 15893", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.953279467060824, + 19.565906749506667 + ] + }, + "properties": { + "id": "meter-15894", + "maker": "Maker A", + "model": "Model 15894", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93672098038572, + 24.10363088791697 + ] + }, + "properties": { + "id": "meter-15895", + "maker": "Maker F", + "model": "Model 15895", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.03508784005182, + 20.61024858713342 + ] + }, + "properties": { + "id": "meter-15896", + "maker": "Maker D", + "model": "Model 15896", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.68077940539141, + 19.05090250214043 + ] + }, + "properties": { + "id": "meter-15897", + "maker": "Maker I", + "model": "Model 15897", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.88142980858961, + 21.08827455619074 + ] + }, + "properties": { + "id": "meter-15898", + "maker": "Maker J", + "model": "Model 15898", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.3826067452183, + 22.00737722215022 + ] + }, + "properties": { + "id": "meter-15899", + "maker": "Maker C", + "model": "Model 15899", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.012787159542015, + 22.888674514151354 + ] + }, + "properties": { + "id": "meter-15900", + "maker": "Maker G", + "model": "Model 15900", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.071214751486266, + 27.386505180434447 + ] + }, + "properties": { + "id": "meter-15901", + "maker": "Maker J", + "model": "Model 15901", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.87868264682626, + 20.11947958079208 + ] + }, + "properties": { + "id": "meter-15902", + "maker": "Maker B", + "model": "Model 15902", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.81843490080387, + 28.66940962811971 + ] + }, + "properties": { + "id": "meter-15903", + "maker": "Maker F", + "model": "Model 15903", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09332672167435, + 20.79939251455693 + ] + }, + "properties": { + "id": "meter-15904", + "maker": "Maker F", + "model": "Model 15904", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.596224558025526, + 24.696812765481198 + ] + }, + "properties": { + "id": "meter-15905", + "maker": "Maker I", + "model": "Model 15905", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.58586992781321, + 27.380947235133522 + ] + }, + "properties": { + "id": "meter-15906", + "maker": "Maker J", + "model": "Model 15906", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.88117341474212, + 20.677662688265453 + ] + }, + "properties": { + "id": "meter-15907", + "maker": "Maker A", + "model": "Model 15907", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.183731833512326, + 26.20567396378128 + ] + }, + "properties": { + "id": "meter-15908", + "maker": "Maker G", + "model": "Model 15908", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.45807416587038, + 24.565209762901198 + ] + }, + "properties": { + "id": "meter-15909", + "maker": "Maker I", + "model": "Model 15909", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.80633153669418, + 26.329876427808635 + ] + }, + "properties": { + "id": "meter-15910", + "maker": "Maker F", + "model": "Model 15910", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.64867902980763, + 26.95511983495391 + ] + }, + "properties": { + "id": "meter-15911", + "maker": "Maker A", + "model": "Model 15911", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.5159488033509, + 26.5826263493154 + ] + }, + "properties": { + "id": "meter-15912", + "maker": "Maker I", + "model": "Model 15912", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.517222986812676, + 24.876844987891527 + ] + }, + "properties": { + "id": "meter-15913", + "maker": "Maker B", + "model": "Model 15913", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.39606889269285, + 19.259518924265365 + ] + }, + "properties": { + "id": "meter-15914", + "maker": "Maker H", + "model": "Model 15914", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.03037715110563, + 24.103060935226694 + ] + }, + "properties": { + "id": "meter-15915", + "maker": "Maker H", + "model": "Model 15915", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.83926399654804, + 17.104526856140758 + ] + }, + "properties": { + "id": "meter-15916", + "maker": "Maker C", + "model": "Model 15916", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.279573509290394, + 24.991409919601832 + ] + }, + "properties": { + "id": "meter-15917", + "maker": "Maker H", + "model": "Model 15917", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.35177527349861, + 18.117034295029367 + ] + }, + "properties": { + "id": "meter-15918", + "maker": "Maker I", + "model": "Model 15918", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.085896427505105, + 22.356106032337696 + ] + }, + "properties": { + "id": "meter-15919", + "maker": "Maker H", + "model": "Model 15919", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.526341629463325, + 25.165797056316798 + ] + }, + "properties": { + "id": "meter-15920", + "maker": "Maker H", + "model": "Model 15920", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.85674403283126, + 18.7758620290319 + ] + }, + "properties": { + "id": "meter-15921", + "maker": "Maker J", + "model": "Model 15921", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.60112174019648, + 23.93461715659025 + ] + }, + "properties": { + "id": "meter-15922", + "maker": "Maker B", + "model": "Model 15922", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.76499377083098, + 25.69643528955276 + ] + }, + "properties": { + "id": "meter-15923", + "maker": "Maker G", + "model": "Model 15923", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.75203122343321, + 25.605340468508086 + ] + }, + "properties": { + "id": "meter-15924", + "maker": "Maker H", + "model": "Model 15924", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.821922372482035, + 17.688336481644345 + ] + }, + "properties": { + "id": "meter-15925", + "maker": "Maker I", + "model": "Model 15925", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.350955689043545, + 20.155023605547957 + ] + }, + "properties": { + "id": "meter-15926", + "maker": "Maker J", + "model": "Model 15926", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.225292364504895, + 23.593872323785245 + ] + }, + "properties": { + "id": "meter-15927", + "maker": "Maker J", + "model": "Model 15927", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.228164193662934, + 22.08845596651758 + ] + }, + "properties": { + "id": "meter-15928", + "maker": "Maker B", + "model": "Model 15928", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.1343070956455, + 23.352392486304247 + ] + }, + "properties": { + "id": "meter-15929", + "maker": "Maker I", + "model": "Model 15929", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.507036166583646, + 29.605912092636096 + ] + }, + "properties": { + "id": "meter-15930", + "maker": "Maker J", + "model": "Model 15930", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.35844851429459, + 27.444868893306705 + ] + }, + "properties": { + "id": "meter-15931", + "maker": "Maker G", + "model": "Model 15931", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.86215225165698, + 28.83259930223798 + ] + }, + "properties": { + "id": "meter-15932", + "maker": "Maker J", + "model": "Model 15932", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.08164397792039, + 22.49430342270098 + ] + }, + "properties": { + "id": "meter-15933", + "maker": "Maker G", + "model": "Model 15933", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.07478548145128, + 18.643435502909178 + ] + }, + "properties": { + "id": "meter-15934", + "maker": "Maker D", + "model": "Model 15934", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.803689780833686, + 22.188151893174258 + ] + }, + "properties": { + "id": "meter-15935", + "maker": "Maker C", + "model": "Model 15935", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.37226713035367, + 22.64896036119392 + ] + }, + "properties": { + "id": "meter-15936", + "maker": "Maker I", + "model": "Model 15936", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.74172105308036, + 31.09542238364334 + ] + }, + "properties": { + "id": "meter-15937", + "maker": "Maker C", + "model": "Model 15937", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.77828049779069, + 21.21094842897992 + ] + }, + "properties": { + "id": "meter-15938", + "maker": "Maker B", + "model": "Model 15938", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.332256118122075, + 21.31714668612629 + ] + }, + "properties": { + "id": "meter-15939", + "maker": "Maker H", + "model": "Model 15939", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.45802080199722, + 19.196617639957445 + ] + }, + "properties": { + "id": "meter-15940", + "maker": "Maker E", + "model": "Model 15940", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.88963832178317, + 21.70956879698681 + ] + }, + "properties": { + "id": "meter-15941", + "maker": "Maker F", + "model": "Model 15941", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.66934462228994, + 23.66787091749977 + ] + }, + "properties": { + "id": "meter-15942", + "maker": "Maker F", + "model": "Model 15942", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.422482829161495, + 28.31941756615937 + ] + }, + "properties": { + "id": "meter-15943", + "maker": "Maker D", + "model": "Model 15943", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.69149276768865, + 23.291217655272714 + ] + }, + "properties": { + "id": "meter-15944", + "maker": "Maker C", + "model": "Model 15944", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.95410171477311, + 31.374586748113984 + ] + }, + "properties": { + "id": "meter-15945", + "maker": "Maker H", + "model": "Model 15945", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.48135766391425, + 26.775877593233638 + ] + }, + "properties": { + "id": "meter-15946", + "maker": "Maker I", + "model": "Model 15946", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95851058930831, + 22.127801080073695 + ] + }, + "properties": { + "id": "meter-15947", + "maker": "Maker C", + "model": "Model 15947", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.22286146131608, + 23.95386731706692 + ] + }, + "properties": { + "id": "meter-15948", + "maker": "Maker F", + "model": "Model 15948", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.43557416869275, + 26.203656138972875 + ] + }, + "properties": { + "id": "meter-15949", + "maker": "Maker I", + "model": "Model 15949", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.43748306985117, + 30.49784345274722 + ] + }, + "properties": { + "id": "meter-15950", + "maker": "Maker D", + "model": "Model 15950", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.254896214967545, + 22.37167464588214 + ] + }, + "properties": { + "id": "meter-15951", + "maker": "Maker B", + "model": "Model 15951", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.206393115429094, + 21.76353320381861 + ] + }, + "properties": { + "id": "meter-15952", + "maker": "Maker C", + "model": "Model 15952", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06492840605103, + 24.85752237926676 + ] + }, + "properties": { + "id": "meter-15953", + "maker": "Maker B", + "model": "Model 15953", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.50365451989107, + 21.82267542539402 + ] + }, + "properties": { + "id": "meter-15954", + "maker": "Maker A", + "model": "Model 15954", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.96194803416998, + 27.410837280114993 + ] + }, + "properties": { + "id": "meter-15955", + "maker": "Maker F", + "model": "Model 15955", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.6628007741339, + 17.802364652132713 + ] + }, + "properties": { + "id": "meter-15956", + "maker": "Maker D", + "model": "Model 15956", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.850510997902575, + 22.782409183294057 + ] + }, + "properties": { + "id": "meter-15957", + "maker": "Maker B", + "model": "Model 15957", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.043371203295486, + 20.850682424200535 + ] + }, + "properties": { + "id": "meter-15958", + "maker": "Maker G", + "model": "Model 15958", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.93936295856095, + 27.231342014336896 + ] + }, + "properties": { + "id": "meter-15959", + "maker": "Maker I", + "model": "Model 15959", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.82369655217661, + 30.926101008984954 + ] + }, + "properties": { + "id": "meter-15960", + "maker": "Maker C", + "model": "Model 15960", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.484377506112736, + 17.361543178343613 + ] + }, + "properties": { + "id": "meter-15961", + "maker": "Maker A", + "model": "Model 15961", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.51292858238274, + 24.617425835933517 + ] + }, + "properties": { + "id": "meter-15962", + "maker": "Maker C", + "model": "Model 15962", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.41505999859172, + 20.351728701215094 + ] + }, + "properties": { + "id": "meter-15963", + "maker": "Maker H", + "model": "Model 15963", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.56521363205752, + 29.051756842109164 + ] + }, + "properties": { + "id": "meter-15964", + "maker": "Maker J", + "model": "Model 15964", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.29892117128991, + 21.175983876698908 + ] + }, + "properties": { + "id": "meter-15965", + "maker": "Maker A", + "model": "Model 15965", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.862912900353436, + 17.621153336798443 + ] + }, + "properties": { + "id": "meter-15966", + "maker": "Maker B", + "model": "Model 15966", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.460771768850186, + 27.81765052051156 + ] + }, + "properties": { + "id": "meter-15967", + "maker": "Maker G", + "model": "Model 15967", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.94789137001023, + 27.955074172279005 + ] + }, + "properties": { + "id": "meter-15968", + "maker": "Maker I", + "model": "Model 15968", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.33332959722911, + 27.120663099749535 + ] + }, + "properties": { + "id": "meter-15969", + "maker": "Maker A", + "model": "Model 15969", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.677129025905224, + 29.46971302360502 + ] + }, + "properties": { + "id": "meter-15970", + "maker": "Maker I", + "model": "Model 15970", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.4419821431057, + 18.004722744383894 + ] + }, + "properties": { + "id": "meter-15971", + "maker": "Maker C", + "model": "Model 15971", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.96454393618542, + 19.853573872544874 + ] + }, + "properties": { + "id": "meter-15972", + "maker": "Maker J", + "model": "Model 15972", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.28960340292816, + 21.48569613482066 + ] + }, + "properties": { + "id": "meter-15973", + "maker": "Maker H", + "model": "Model 15973", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.19236203993552, + 21.42565233666046 + ] + }, + "properties": { + "id": "meter-15974", + "maker": "Maker G", + "model": "Model 15974", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.84291197681934, + 26.712845090505823 + ] + }, + "properties": { + "id": "meter-15975", + "maker": "Maker G", + "model": "Model 15975", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.286766468272006, + 23.525750661744098 + ] + }, + "properties": { + "id": "meter-15976", + "maker": "Maker E", + "model": "Model 15976", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.757502524247535, + 21.422294191462267 + ] + }, + "properties": { + "id": "meter-15977", + "maker": "Maker H", + "model": "Model 15977", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.815363721745456, + 17.682698826084437 + ] + }, + "properties": { + "id": "meter-15978", + "maker": "Maker I", + "model": "Model 15978", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.7578246881948, + 21.452669873108384 + ] + }, + "properties": { + "id": "meter-15979", + "maker": "Maker A", + "model": "Model 15979", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.22345876851548, + 20.791701946991285 + ] + }, + "properties": { + "id": "meter-15980", + "maker": "Maker H", + "model": "Model 15980", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.16328598952005, + 22.52459840314001 + ] + }, + "properties": { + "id": "meter-15981", + "maker": "Maker F", + "model": "Model 15981", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.49023416384733, + 27.97145339173639 + ] + }, + "properties": { + "id": "meter-15982", + "maker": "Maker G", + "model": "Model 15982", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.95297921588161, + 25.876261458820615 + ] + }, + "properties": { + "id": "meter-15983", + "maker": "Maker F", + "model": "Model 15983", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.518527328418095, + 29.086054333395126 + ] + }, + "properties": { + "id": "meter-15984", + "maker": "Maker D", + "model": "Model 15984", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.92706752596035, + 26.195735060813753 + ] + }, + "properties": { + "id": "meter-15985", + "maker": "Maker B", + "model": "Model 15985", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.62430153072846, + 27.073105780203463 + ] + }, + "properties": { + "id": "meter-15986", + "maker": "Maker D", + "model": "Model 15986", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.31700194053049, + 27.672225826162858 + ] + }, + "properties": { + "id": "meter-15987", + "maker": "Maker B", + "model": "Model 15987", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.41207774737112, + 27.621827955188287 + ] + }, + "properties": { + "id": "meter-15988", + "maker": "Maker G", + "model": "Model 15988", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.48388529168585, + 28.498446610097467 + ] + }, + "properties": { + "id": "meter-15989", + "maker": "Maker D", + "model": "Model 15989", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.638598733986406, + 23.602175993802952 + ] + }, + "properties": { + "id": "meter-15990", + "maker": "Maker G", + "model": "Model 15990", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.609724787211675, + 19.25396292871061 + ] + }, + "properties": { + "id": "meter-15991", + "maker": "Maker G", + "model": "Model 15991", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.34367750381523, + 29.825836455029766 + ] + }, + "properties": { + "id": "meter-15992", + "maker": "Maker C", + "model": "Model 15992", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.89322575079405, + 22.804230337597552 + ] + }, + "properties": { + "id": "meter-15993", + "maker": "Maker C", + "model": "Model 15993", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.66755426503388, + 17.29177740084444 + ] + }, + "properties": { + "id": "meter-15994", + "maker": "Maker A", + "model": "Model 15994", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.27035683381243, + 24.241004942918877 + ] + }, + "properties": { + "id": "meter-15995", + "maker": "Maker I", + "model": "Model 15995", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.13582388128456, + 20.97574000760711 + ] + }, + "properties": { + "id": "meter-15996", + "maker": "Maker C", + "model": "Model 15996", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.17653444138415, + 22.20676628603961 + ] + }, + "properties": { + "id": "meter-15997", + "maker": "Maker H", + "model": "Model 15997", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45095377455761, + 26.664779147627712 + ] + }, + "properties": { + "id": "meter-15998", + "maker": "Maker C", + "model": "Model 15998", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.033104203279485, + 27.85457880359403 + ] + }, + "properties": { + "id": "meter-15999", + "maker": "Maker A", + "model": "Model 15999", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.52186848317202, + 22.279785393991855 + ] + }, + "properties": { + "id": "meter-16000", + "maker": "Maker B", + "model": "Model 16000", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.39646975218813, + 21.921955145292703 + ] + }, + "properties": { + "id": "meter-16001", + "maker": "Maker F", + "model": "Model 16001", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.49439094769841, + 18.228135238691205 + ] + }, + "properties": { + "id": "meter-16002", + "maker": "Maker C", + "model": "Model 16002", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.18183063976379, + 23.52383988378444 + ] + }, + "properties": { + "id": "meter-16003", + "maker": "Maker I", + "model": "Model 16003", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.91189016674227, + 21.172159098417872 + ] + }, + "properties": { + "id": "meter-16004", + "maker": "Maker C", + "model": "Model 16004", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.6474322411315, + 23.356644313840267 + ] + }, + "properties": { + "id": "meter-16005", + "maker": "Maker I", + "model": "Model 16005", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70882677293955, + 21.628244510222004 + ] + }, + "properties": { + "id": "meter-16006", + "maker": "Maker B", + "model": "Model 16006", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.85965022133442, + 23.85992797600875 + ] + }, + "properties": { + "id": "meter-16007", + "maker": "Maker E", + "model": "Model 16007", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.31932979097634, + 21.9178963585979 + ] + }, + "properties": { + "id": "meter-16008", + "maker": "Maker C", + "model": "Model 16008", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.70154075659521, + 28.361844893359613 + ] + }, + "properties": { + "id": "meter-16009", + "maker": "Maker I", + "model": "Model 16009", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95803251372158, + 26.61108444286073 + ] + }, + "properties": { + "id": "meter-16010", + "maker": "Maker D", + "model": "Model 16010", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.83795548586093, + 27.59526609320672 + ] + }, + "properties": { + "id": "meter-16011", + "maker": "Maker E", + "model": "Model 16011", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.086229508731506, + 26.445653956762563 + ] + }, + "properties": { + "id": "meter-16012", + "maker": "Maker H", + "model": "Model 16012", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.70779319059376, + 22.934064459213708 + ] + }, + "properties": { + "id": "meter-16013", + "maker": "Maker F", + "model": "Model 16013", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.59795333546861, + 23.97634123647826 + ] + }, + "properties": { + "id": "meter-16014", + "maker": "Maker D", + "model": "Model 16014", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.4398101684455, + 23.12584576299589 + ] + }, + "properties": { + "id": "meter-16015", + "maker": "Maker B", + "model": "Model 16015", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.609765568916075, + 21.533982054670126 + ] + }, + "properties": { + "id": "meter-16016", + "maker": "Maker C", + "model": "Model 16016", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.794974851165605, + 22.94168304996549 + ] + }, + "properties": { + "id": "meter-16017", + "maker": "Maker E", + "model": "Model 16017", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.765854935785406, + 30.217527663551497 + ] + }, + "properties": { + "id": "meter-16018", + "maker": "Maker J", + "model": "Model 16018", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.52165248830778, + 26.21589849264882 + ] + }, + "properties": { + "id": "meter-16019", + "maker": "Maker C", + "model": "Model 16019", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.350244590340765, + 26.4954418795207 + ] + }, + "properties": { + "id": "meter-16020", + "maker": "Maker I", + "model": "Model 16020", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.99570474837883, + 20.603348690346934 + ] + }, + "properties": { + "id": "meter-16021", + "maker": "Maker I", + "model": "Model 16021", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11591650734703, + 24.59997641428059 + ] + }, + "properties": { + "id": "meter-16022", + "maker": "Maker D", + "model": "Model 16022", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.833976731753395, + 20.022285026142242 + ] + }, + "properties": { + "id": "meter-16023", + "maker": "Maker J", + "model": "Model 16023", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.56418407405165, + 20.329111966815265 + ] + }, + "properties": { + "id": "meter-16024", + "maker": "Maker I", + "model": "Model 16024", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.41618512878175, + 25.32218357054765 + ] + }, + "properties": { + "id": "meter-16025", + "maker": "Maker A", + "model": "Model 16025", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.202804196078276, + 24.548297324089006 + ] + }, + "properties": { + "id": "meter-16026", + "maker": "Maker J", + "model": "Model 16026", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.41963459348933, + 24.66295115875154 + ] + }, + "properties": { + "id": "meter-16027", + "maker": "Maker A", + "model": "Model 16027", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.56050779032068, + 19.921054319598436 + ] + }, + "properties": { + "id": "meter-16028", + "maker": "Maker A", + "model": "Model 16028", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.70125106900137, + 23.774907326508323 + ] + }, + "properties": { + "id": "meter-16029", + "maker": "Maker E", + "model": "Model 16029", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.70991012446445, + 25.647180643227063 + ] + }, + "properties": { + "id": "meter-16030", + "maker": "Maker G", + "model": "Model 16030", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.861533588988884, + 23.683224258776356 + ] + }, + "properties": { + "id": "meter-16031", + "maker": "Maker G", + "model": "Model 16031", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.86547792223391, + 24.161749031402074 + ] + }, + "properties": { + "id": "meter-16032", + "maker": "Maker F", + "model": "Model 16032", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.23460567824552, + 24.8775839123106 + ] + }, + "properties": { + "id": "meter-16033", + "maker": "Maker G", + "model": "Model 16033", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.693368878756175, + 21.099688261457906 + ] + }, + "properties": { + "id": "meter-16034", + "maker": "Maker A", + "model": "Model 16034", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.286685644273064, + 24.114552054899903 + ] + }, + "properties": { + "id": "meter-16035", + "maker": "Maker G", + "model": "Model 16035", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.902470237124696, + 27.96545781734163 + ] + }, + "properties": { + "id": "meter-16036", + "maker": "Maker G", + "model": "Model 16036", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.065282638833025, + 21.29316977913652 + ] + }, + "properties": { + "id": "meter-16037", + "maker": "Maker B", + "model": "Model 16037", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.36321074369896, + 20.046966220927036 + ] + }, + "properties": { + "id": "meter-16038", + "maker": "Maker I", + "model": "Model 16038", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.04409625572755, + 22.998025279169294 + ] + }, + "properties": { + "id": "meter-16039", + "maker": "Maker F", + "model": "Model 16039", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.30528511194306, + 26.16770301272673 + ] + }, + "properties": { + "id": "meter-16040", + "maker": "Maker C", + "model": "Model 16040", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.06852978309538, + 21.492433564937777 + ] + }, + "properties": { + "id": "meter-16041", + "maker": "Maker E", + "model": "Model 16041", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.91137824882224, + 20.731516334176657 + ] + }, + "properties": { + "id": "meter-16042", + "maker": "Maker D", + "model": "Model 16042", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.76106652321353, + 23.692123634688365 + ] + }, + "properties": { + "id": "meter-16043", + "maker": "Maker F", + "model": "Model 16043", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.16964243295891, + 25.979248061045762 + ] + }, + "properties": { + "id": "meter-16044", + "maker": "Maker D", + "model": "Model 16044", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.62791550330149, + 28.08262990778347 + ] + }, + "properties": { + "id": "meter-16045", + "maker": "Maker I", + "model": "Model 16045", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.68166640096156, + 19.099079889250227 + ] + }, + "properties": { + "id": "meter-16046", + "maker": "Maker D", + "model": "Model 16046", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.24613073461131, + 26.144470451931575 + ] + }, + "properties": { + "id": "meter-16047", + "maker": "Maker H", + "model": "Model 16047", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.33896282437014, + 21.95942100000376 + ] + }, + "properties": { + "id": "meter-16048", + "maker": "Maker I", + "model": "Model 16048", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.49445685711421, + 20.2358156359333 + ] + }, + "properties": { + "id": "meter-16049", + "maker": "Maker D", + "model": "Model 16049", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.94010385962692, + 26.60712041015742 + ] + }, + "properties": { + "id": "meter-16050", + "maker": "Maker I", + "model": "Model 16050", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.550011645275006, + 28.95939286083297 + ] + }, + "properties": { + "id": "meter-16051", + "maker": "Maker B", + "model": "Model 16051", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.115731068967136, + 28.70369471100117 + ] + }, + "properties": { + "id": "meter-16052", + "maker": "Maker A", + "model": "Model 16052", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.136832136589845, + 28.29217482172921 + ] + }, + "properties": { + "id": "meter-16053", + "maker": "Maker I", + "model": "Model 16053", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.85464246248918, + 26.040628544323265 + ] + }, + "properties": { + "id": "meter-16054", + "maker": "Maker G", + "model": "Model 16054", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.80870770296745, + 20.27397197717488 + ] + }, + "properties": { + "id": "meter-16055", + "maker": "Maker D", + "model": "Model 16055", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.112555718666414, + 30.30487670026698 + ] + }, + "properties": { + "id": "meter-16056", + "maker": "Maker A", + "model": "Model 16056", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.9718216394666, + 22.29642195806331 + ] + }, + "properties": { + "id": "meter-16057", + "maker": "Maker D", + "model": "Model 16057", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.393192642733155, + 22.30750118701297 + ] + }, + "properties": { + "id": "meter-16058", + "maker": "Maker H", + "model": "Model 16058", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.88205565402381, + 27.70712419902234 + ] + }, + "properties": { + "id": "meter-16059", + "maker": "Maker C", + "model": "Model 16059", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.274789355656225, + 22.662018021624956 + ] + }, + "properties": { + "id": "meter-16060", + "maker": "Maker D", + "model": "Model 16060", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.261045045913335, + 18.81065586027276 + ] + }, + "properties": { + "id": "meter-16061", + "maker": "Maker G", + "model": "Model 16061", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.767110646024015, + 27.925685289486616 + ] + }, + "properties": { + "id": "meter-16062", + "maker": "Maker B", + "model": "Model 16062", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.69571833782197, + 27.705622763555382 + ] + }, + "properties": { + "id": "meter-16063", + "maker": "Maker I", + "model": "Model 16063", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.454230951349054, + 21.471019953767048 + ] + }, + "properties": { + "id": "meter-16064", + "maker": "Maker J", + "model": "Model 16064", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.32995926022033, + 24.296304603069352 + ] + }, + "properties": { + "id": "meter-16065", + "maker": "Maker C", + "model": "Model 16065", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.94457886313562, + 25.313755705105624 + ] + }, + "properties": { + "id": "meter-16066", + "maker": "Maker D", + "model": "Model 16066", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.33064164190807, + 20.841460050588147 + ] + }, + "properties": { + "id": "meter-16067", + "maker": "Maker D", + "model": "Model 16067", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.54290642369313, + 22.02628714220062 + ] + }, + "properties": { + "id": "meter-16068", + "maker": "Maker D", + "model": "Model 16068", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67047304022354, + 26.138708660346058 + ] + }, + "properties": { + "id": "meter-16069", + "maker": "Maker I", + "model": "Model 16069", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.810365065011084, + 25.84792482914751 + ] + }, + "properties": { + "id": "meter-16070", + "maker": "Maker J", + "model": "Model 16070", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.064202856957266, + 26.54858921801532 + ] + }, + "properties": { + "id": "meter-16071", + "maker": "Maker C", + "model": "Model 16071", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.91297150644735, + 28.248092531016127 + ] + }, + "properties": { + "id": "meter-16072", + "maker": "Maker F", + "model": "Model 16072", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.891215709549456, + 27.607579971271925 + ] + }, + "properties": { + "id": "meter-16073", + "maker": "Maker F", + "model": "Model 16073", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49779104583687, + 19.683672553535352 + ] + }, + "properties": { + "id": "meter-16074", + "maker": "Maker C", + "model": "Model 16074", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.01644445713608, + 19.934109430255514 + ] + }, + "properties": { + "id": "meter-16075", + "maker": "Maker G", + "model": "Model 16075", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.9566763144765, + 29.25700418359778 + ] + }, + "properties": { + "id": "meter-16076", + "maker": "Maker F", + "model": "Model 16076", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.889712806128024, + 23.502437524080108 + ] + }, + "properties": { + "id": "meter-16077", + "maker": "Maker I", + "model": "Model 16077", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.943683429192795, + 26.79055292844331 + ] + }, + "properties": { + "id": "meter-16078", + "maker": "Maker C", + "model": "Model 16078", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73614835685869, + 22.60133611680596 + ] + }, + "properties": { + "id": "meter-16079", + "maker": "Maker D", + "model": "Model 16079", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.499643774125204, + 19.199117566666217 + ] + }, + "properties": { + "id": "meter-16080", + "maker": "Maker H", + "model": "Model 16080", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.794519855218184, + 27.0915489593525 + ] + }, + "properties": { + "id": "meter-16081", + "maker": "Maker B", + "model": "Model 16081", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.32402333759856, + 24.74352968393725 + ] + }, + "properties": { + "id": "meter-16082", + "maker": "Maker F", + "model": "Model 16082", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.32669569382206, + 26.48747178472502 + ] + }, + "properties": { + "id": "meter-16083", + "maker": "Maker C", + "model": "Model 16083", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.39537589855408, + 25.397346342722578 + ] + }, + "properties": { + "id": "meter-16084", + "maker": "Maker D", + "model": "Model 16084", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.88457622042909, + 17.788260177389468 + ] + }, + "properties": { + "id": "meter-16085", + "maker": "Maker H", + "model": "Model 16085", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.12531557517012, + 28.560969413881008 + ] + }, + "properties": { + "id": "meter-16086", + "maker": "Maker E", + "model": "Model 16086", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.60974499937423, + 19.9845228711848 + ] + }, + "properties": { + "id": "meter-16087", + "maker": "Maker E", + "model": "Model 16087", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.48418700275396, + 24.8747750322612 + ] + }, + "properties": { + "id": "meter-16088", + "maker": "Maker F", + "model": "Model 16088", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.84913026346422, + 18.400376531319605 + ] + }, + "properties": { + "id": "meter-16089", + "maker": "Maker H", + "model": "Model 16089", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69115294886921, + 27.69761024158195 + ] + }, + "properties": { + "id": "meter-16090", + "maker": "Maker B", + "model": "Model 16090", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.321207574154414, + 19.243537858044483 + ] + }, + "properties": { + "id": "meter-16091", + "maker": "Maker F", + "model": "Model 16091", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.704850519353464, + 24.295865483486438 + ] + }, + "properties": { + "id": "meter-16092", + "maker": "Maker A", + "model": "Model 16092", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.44159014094811, + 31.719928742479304 + ] + }, + "properties": { + "id": "meter-16093", + "maker": "Maker E", + "model": "Model 16093", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.68309988032589, + 21.93736695701158 + ] + }, + "properties": { + "id": "meter-16094", + "maker": "Maker J", + "model": "Model 16094", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.193654372249384, + 27.496990218082516 + ] + }, + "properties": { + "id": "meter-16095", + "maker": "Maker J", + "model": "Model 16095", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.76884333547817, + 27.653061606195934 + ] + }, + "properties": { + "id": "meter-16096", + "maker": "Maker H", + "model": "Model 16096", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9611313757861, + 31.39416066194503 + ] + }, + "properties": { + "id": "meter-16097", + "maker": "Maker J", + "model": "Model 16097", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.68093074163581, + 24.85238104621729 + ] + }, + "properties": { + "id": "meter-16098", + "maker": "Maker I", + "model": "Model 16098", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.606630736607585, + 24.57751376935245 + ] + }, + "properties": { + "id": "meter-16099", + "maker": "Maker H", + "model": "Model 16099", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06319029210559, + 30.661386543288287 + ] + }, + "properties": { + "id": "meter-16100", + "maker": "Maker G", + "model": "Model 16100", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.13252967339499, + 22.18414565705249 + ] + }, + "properties": { + "id": "meter-16101", + "maker": "Maker J", + "model": "Model 16101", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.71559623086985, + 23.487304693594496 + ] + }, + "properties": { + "id": "meter-16102", + "maker": "Maker D", + "model": "Model 16102", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.81289185504566, + 29.34663863799739 + ] + }, + "properties": { + "id": "meter-16103", + "maker": "Maker G", + "model": "Model 16103", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.22063833100445, + 31.774074276927152 + ] + }, + "properties": { + "id": "meter-16104", + "maker": "Maker G", + "model": "Model 16104", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.19263400834237, + 20.95410293390254 + ] + }, + "properties": { + "id": "meter-16105", + "maker": "Maker C", + "model": "Model 16105", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.39969731230225, + 21.3225962734422 + ] + }, + "properties": { + "id": "meter-16106", + "maker": "Maker B", + "model": "Model 16106", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.290331816344214, + 21.249913293045033 + ] + }, + "properties": { + "id": "meter-16107", + "maker": "Maker B", + "model": "Model 16107", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.01954776827824, + 22.947623368409413 + ] + }, + "properties": { + "id": "meter-16108", + "maker": "Maker G", + "model": "Model 16108", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.77377773591281, + 20.022671425301933 + ] + }, + "properties": { + "id": "meter-16109", + "maker": "Maker B", + "model": "Model 16109", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05834087758278, + 25.720615360444874 + ] + }, + "properties": { + "id": "meter-16110", + "maker": "Maker G", + "model": "Model 16110", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.208286726781374, + 31.726302557939384 + ] + }, + "properties": { + "id": "meter-16111", + "maker": "Maker J", + "model": "Model 16111", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.8186365867394, + 28.86501754423672 + ] + }, + "properties": { + "id": "meter-16112", + "maker": "Maker H", + "model": "Model 16112", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.1114591849345, + 22.872066181939026 + ] + }, + "properties": { + "id": "meter-16113", + "maker": "Maker D", + "model": "Model 16113", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.661973521278725, + 20.09740993247166 + ] + }, + "properties": { + "id": "meter-16114", + "maker": "Maker C", + "model": "Model 16114", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.39129700155815, + 19.18405723264365 + ] + }, + "properties": { + "id": "meter-16115", + "maker": "Maker G", + "model": "Model 16115", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.61706276992558, + 18.84891045048767 + ] + }, + "properties": { + "id": "meter-16116", + "maker": "Maker C", + "model": "Model 16116", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.14004391918774, + 22.921150091820785 + ] + }, + "properties": { + "id": "meter-16117", + "maker": "Maker B", + "model": "Model 16117", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.86424604768797, + 20.285712393962953 + ] + }, + "properties": { + "id": "meter-16118", + "maker": "Maker G", + "model": "Model 16118", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.67060681481219, + 21.682568820276938 + ] + }, + "properties": { + "id": "meter-16119", + "maker": "Maker A", + "model": "Model 16119", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.355693208038524, + 21.059101355929638 + ] + }, + "properties": { + "id": "meter-16120", + "maker": "Maker A", + "model": "Model 16120", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.15866926512811, + 25.88421296281561 + ] + }, + "properties": { + "id": "meter-16121", + "maker": "Maker H", + "model": "Model 16121", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.34299346698961, + 27.21190849751587 + ] + }, + "properties": { + "id": "meter-16122", + "maker": "Maker C", + "model": "Model 16122", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73149597574091, + 22.933041811334324 + ] + }, + "properties": { + "id": "meter-16123", + "maker": "Maker B", + "model": "Model 16123", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.919194689501865, + 26.31438100426405 + ] + }, + "properties": { + "id": "meter-16124", + "maker": "Maker F", + "model": "Model 16124", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.25848607198887, + 19.061264388940096 + ] + }, + "properties": { + "id": "meter-16125", + "maker": "Maker C", + "model": "Model 16125", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.1079798851171, + 31.049308700719646 + ] + }, + "properties": { + "id": "meter-16126", + "maker": "Maker A", + "model": "Model 16126", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.45245412562194, + 21.39594778115287 + ] + }, + "properties": { + "id": "meter-16127", + "maker": "Maker C", + "model": "Model 16127", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.52205765184878, + 28.60808669389351 + ] + }, + "properties": { + "id": "meter-16128", + "maker": "Maker A", + "model": "Model 16128", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.65232883490957, + 30.38589278942634 + ] + }, + "properties": { + "id": "meter-16129", + "maker": "Maker D", + "model": "Model 16129", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.932207410076266, + 27.130090847343045 + ] + }, + "properties": { + "id": "meter-16130", + "maker": "Maker A", + "model": "Model 16130", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.95749093364505, + 25.639013574170715 + ] + }, + "properties": { + "id": "meter-16131", + "maker": "Maker E", + "model": "Model 16131", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.17347627115126, + 21.30551550342844 + ] + }, + "properties": { + "id": "meter-16132", + "maker": "Maker D", + "model": "Model 16132", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.53193152728756, + 24.773682758088352 + ] + }, + "properties": { + "id": "meter-16133", + "maker": "Maker B", + "model": "Model 16133", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.42378572615162, + 26.163735113383957 + ] + }, + "properties": { + "id": "meter-16134", + "maker": "Maker B", + "model": "Model 16134", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.589009558082566, + 18.695929215644224 + ] + }, + "properties": { + "id": "meter-16135", + "maker": "Maker C", + "model": "Model 16135", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.757346858598055, + 28.769917808626282 + ] + }, + "properties": { + "id": "meter-16136", + "maker": "Maker F", + "model": "Model 16136", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.774491440342906, + 18.909540860002917 + ] + }, + "properties": { + "id": "meter-16137", + "maker": "Maker G", + "model": "Model 16137", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.3615718118045, + 31.4359214553734 + ] + }, + "properties": { + "id": "meter-16138", + "maker": "Maker I", + "model": "Model 16138", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.75250914890461, + 28.91242719727088 + ] + }, + "properties": { + "id": "meter-16139", + "maker": "Maker H", + "model": "Model 16139", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.28484400040384, + 23.459428049660154 + ] + }, + "properties": { + "id": "meter-16140", + "maker": "Maker G", + "model": "Model 16140", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.46679472432007, + 24.857749548398072 + ] + }, + "properties": { + "id": "meter-16141", + "maker": "Maker A", + "model": "Model 16141", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.872420235248406, + 21.150918400645352 + ] + }, + "properties": { + "id": "meter-16142", + "maker": "Maker H", + "model": "Model 16142", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24416091538874, + 24.688332317046832 + ] + }, + "properties": { + "id": "meter-16143", + "maker": "Maker A", + "model": "Model 16143", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.38018679053066, + 22.6442353290278 + ] + }, + "properties": { + "id": "meter-16144", + "maker": "Maker E", + "model": "Model 16144", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.04071092208149, + 23.244026379034054 + ] + }, + "properties": { + "id": "meter-16145", + "maker": "Maker J", + "model": "Model 16145", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.338971879399494, + 31.607469748905956 + ] + }, + "properties": { + "id": "meter-16146", + "maker": "Maker F", + "model": "Model 16146", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.53691623239567, + 25.946859393280377 + ] + }, + "properties": { + "id": "meter-16147", + "maker": "Maker H", + "model": "Model 16147", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.94536690112954, + 20.01989036307742 + ] + }, + "properties": { + "id": "meter-16148", + "maker": "Maker E", + "model": "Model 16148", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.49007147779204, + 27.571094184016378 + ] + }, + "properties": { + "id": "meter-16149", + "maker": "Maker I", + "model": "Model 16149", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03155015475895, + 21.75331950003308 + ] + }, + "properties": { + "id": "meter-16150", + "maker": "Maker E", + "model": "Model 16150", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.37033015787515, + 30.323935024359702 + ] + }, + "properties": { + "id": "meter-16151", + "maker": "Maker F", + "model": "Model 16151", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.96938234584006, + 21.688760875668688 + ] + }, + "properties": { + "id": "meter-16152", + "maker": "Maker A", + "model": "Model 16152", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.151507331272555, + 18.747878373124287 + ] + }, + "properties": { + "id": "meter-16153", + "maker": "Maker J", + "model": "Model 16153", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.80775946880764, + 20.469754617965496 + ] + }, + "properties": { + "id": "meter-16154", + "maker": "Maker H", + "model": "Model 16154", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.981832881702104, + 28.65047319327902 + ] + }, + "properties": { + "id": "meter-16155", + "maker": "Maker B", + "model": "Model 16155", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.597544435579316, + 25.871170712197397 + ] + }, + "properties": { + "id": "meter-16156", + "maker": "Maker H", + "model": "Model 16156", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69703601472376, + 26.509184231832688 + ] + }, + "properties": { + "id": "meter-16157", + "maker": "Maker C", + "model": "Model 16157", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.07949008790985, + 24.793552766709297 + ] + }, + "properties": { + "id": "meter-16158", + "maker": "Maker D", + "model": "Model 16158", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.06579197392617, + 19.150870553508874 + ] + }, + "properties": { + "id": "meter-16159", + "maker": "Maker C", + "model": "Model 16159", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.66486472775457, + 25.602719508784297 + ] + }, + "properties": { + "id": "meter-16160", + "maker": "Maker E", + "model": "Model 16160", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.545362866811146, + 17.688617834551202 + ] + }, + "properties": { + "id": "meter-16161", + "maker": "Maker G", + "model": "Model 16161", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.16648139601094, + 26.81582701943539 + ] + }, + "properties": { + "id": "meter-16162", + "maker": "Maker G", + "model": "Model 16162", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.79478572828022, + 24.708722784742974 + ] + }, + "properties": { + "id": "meter-16163", + "maker": "Maker A", + "model": "Model 16163", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.56109321135225, + 30.090247020978033 + ] + }, + "properties": { + "id": "meter-16164", + "maker": "Maker J", + "model": "Model 16164", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.63797597686541, + 24.65607214695357 + ] + }, + "properties": { + "id": "meter-16165", + "maker": "Maker F", + "model": "Model 16165", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.47616285167773, + 26.72386481134418 + ] + }, + "properties": { + "id": "meter-16166", + "maker": "Maker C", + "model": "Model 16166", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.84285160317512, + 29.564449819282522 + ] + }, + "properties": { + "id": "meter-16167", + "maker": "Maker F", + "model": "Model 16167", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.38201828797544, + 19.261968032071188 + ] + }, + "properties": { + "id": "meter-16168", + "maker": "Maker H", + "model": "Model 16168", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.74099572568941, + 28.421872275937066 + ] + }, + "properties": { + "id": "meter-16169", + "maker": "Maker H", + "model": "Model 16169", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.00655114144257, + 27.488861983451322 + ] + }, + "properties": { + "id": "meter-16170", + "maker": "Maker G", + "model": "Model 16170", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.28890766267728, + 20.991945273079022 + ] + }, + "properties": { + "id": "meter-16171", + "maker": "Maker H", + "model": "Model 16171", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.85214289541434, + 31.17070238083491 + ] + }, + "properties": { + "id": "meter-16172", + "maker": "Maker C", + "model": "Model 16172", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.84980005531273, + 25.222156429946708 + ] + }, + "properties": { + "id": "meter-16173", + "maker": "Maker D", + "model": "Model 16173", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.18802940229584, + 26.89283198416041 + ] + }, + "properties": { + "id": "meter-16174", + "maker": "Maker E", + "model": "Model 16174", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.521098350323946, + 20.796972685898496 + ] + }, + "properties": { + "id": "meter-16175", + "maker": "Maker C", + "model": "Model 16175", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.61637771559747, + 18.390589543623822 + ] + }, + "properties": { + "id": "meter-16176", + "maker": "Maker A", + "model": "Model 16176", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.427831935611195, + 28.618039661432732 + ] + }, + "properties": { + "id": "meter-16177", + "maker": "Maker B", + "model": "Model 16177", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.16670290698933, + 30.226404848388416 + ] + }, + "properties": { + "id": "meter-16178", + "maker": "Maker E", + "model": "Model 16178", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.98673505754114, + 28.802960574582087 + ] + }, + "properties": { + "id": "meter-16179", + "maker": "Maker J", + "model": "Model 16179", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.24994467564012, + 20.554171167067178 + ] + }, + "properties": { + "id": "meter-16180", + "maker": "Maker G", + "model": "Model 16180", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.8649405671305, + 22.221009401733927 + ] + }, + "properties": { + "id": "meter-16181", + "maker": "Maker B", + "model": "Model 16181", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.71891850380904, + 19.776697374647917 + ] + }, + "properties": { + "id": "meter-16182", + "maker": "Maker I", + "model": "Model 16182", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.30658399561793, + 24.93258088096283 + ] + }, + "properties": { + "id": "meter-16183", + "maker": "Maker G", + "model": "Model 16183", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.865009543357424, + 29.55990692956638 + ] + }, + "properties": { + "id": "meter-16184", + "maker": "Maker I", + "model": "Model 16184", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.92264616866183, + 18.15313642740604 + ] + }, + "properties": { + "id": "meter-16185", + "maker": "Maker G", + "model": "Model 16185", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.346925665514455, + 24.116509264469663 + ] + }, + "properties": { + "id": "meter-16186", + "maker": "Maker H", + "model": "Model 16186", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.78248801592708, + 20.649321850034184 + ] + }, + "properties": { + "id": "meter-16187", + "maker": "Maker F", + "model": "Model 16187", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.41959160080666, + 29.03899218560096 + ] + }, + "properties": { + "id": "meter-16188", + "maker": "Maker J", + "model": "Model 16188", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.63077647553461, + 25.3697096225064 + ] + }, + "properties": { + "id": "meter-16189", + "maker": "Maker C", + "model": "Model 16189", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99101844088195, + 27.008996757899695 + ] + }, + "properties": { + "id": "meter-16190", + "maker": "Maker J", + "model": "Model 16190", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.48774236093125, + 21.460208233012395 + ] + }, + "properties": { + "id": "meter-16191", + "maker": "Maker J", + "model": "Model 16191", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.10053906384997, + 31.23336970473815 + ] + }, + "properties": { + "id": "meter-16192", + "maker": "Maker E", + "model": "Model 16192", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.80662087920199, + 25.76433732811622 + ] + }, + "properties": { + "id": "meter-16193", + "maker": "Maker B", + "model": "Model 16193", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.48508914704897, + 22.9827444715796 + ] + }, + "properties": { + "id": "meter-16194", + "maker": "Maker A", + "model": "Model 16194", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.54312840005102, + 18.81992886957783 + ] + }, + "properties": { + "id": "meter-16195", + "maker": "Maker B", + "model": "Model 16195", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.55225272723642, + 26.18475636717908 + ] + }, + "properties": { + "id": "meter-16196", + "maker": "Maker D", + "model": "Model 16196", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.97034593419016, + 20.92105054601202 + ] + }, + "properties": { + "id": "meter-16197", + "maker": "Maker H", + "model": "Model 16197", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.38203998899117, + 20.015124659046542 + ] + }, + "properties": { + "id": "meter-16198", + "maker": "Maker E", + "model": "Model 16198", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.33062549347218, + 22.30536465044637 + ] + }, + "properties": { + "id": "meter-16199", + "maker": "Maker B", + "model": "Model 16199", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.82297531788445, + 28.131869740358457 + ] + }, + "properties": { + "id": "meter-16200", + "maker": "Maker E", + "model": "Model 16200", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.45167164582492, + 20.41238448355586 + ] + }, + "properties": { + "id": "meter-16201", + "maker": "Maker F", + "model": "Model 16201", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.98302459974754, + 22.35105908367834 + ] + }, + "properties": { + "id": "meter-16202", + "maker": "Maker H", + "model": "Model 16202", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.30643244705774, + 24.657723027289784 + ] + }, + "properties": { + "id": "meter-16203", + "maker": "Maker B", + "model": "Model 16203", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.60891885587312, + 23.25017404091653 + ] + }, + "properties": { + "id": "meter-16204", + "maker": "Maker J", + "model": "Model 16204", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.738553170411656, + 25.989227446140394 + ] + }, + "properties": { + "id": "meter-16205", + "maker": "Maker J", + "model": "Model 16205", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.62263414355666, + 18.424974796560786 + ] + }, + "properties": { + "id": "meter-16206", + "maker": "Maker H", + "model": "Model 16206", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23333369284375, + 22.595226839620693 + ] + }, + "properties": { + "id": "meter-16207", + "maker": "Maker C", + "model": "Model 16207", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.70784964050138, + 19.10606225959283 + ] + }, + "properties": { + "id": "meter-16208", + "maker": "Maker G", + "model": "Model 16208", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84366693065628, + 24.415022754604664 + ] + }, + "properties": { + "id": "meter-16209", + "maker": "Maker J", + "model": "Model 16209", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.49741904025534, + 19.519323962243487 + ] + }, + "properties": { + "id": "meter-16210", + "maker": "Maker G", + "model": "Model 16210", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.5484917464325, + 24.569039966984207 + ] + }, + "properties": { + "id": "meter-16211", + "maker": "Maker B", + "model": "Model 16211", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.23343066408009, + 28.44025777773487 + ] + }, + "properties": { + "id": "meter-16212", + "maker": "Maker B", + "model": "Model 16212", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.51510807397266, + 30.41712792568049 + ] + }, + "properties": { + "id": "meter-16213", + "maker": "Maker E", + "model": "Model 16213", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.40320172590537, + 27.470142705425758 + ] + }, + "properties": { + "id": "meter-16214", + "maker": "Maker H", + "model": "Model 16214", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14658517602162, + 22.075008676190087 + ] + }, + "properties": { + "id": "meter-16215", + "maker": "Maker E", + "model": "Model 16215", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.941616077071096, + 27.515783424289523 + ] + }, + "properties": { + "id": "meter-16216", + "maker": "Maker D", + "model": "Model 16216", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.59431994896063, + 17.06285724514336 + ] + }, + "properties": { + "id": "meter-16217", + "maker": "Maker D", + "model": "Model 16217", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.890589587349425, + 21.078090287026935 + ] + }, + "properties": { + "id": "meter-16218", + "maker": "Maker H", + "model": "Model 16218", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.383157333449006, + 18.771212297564514 + ] + }, + "properties": { + "id": "meter-16219", + "maker": "Maker G", + "model": "Model 16219", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.23940982893385, + 20.885806918233566 + ] + }, + "properties": { + "id": "meter-16220", + "maker": "Maker I", + "model": "Model 16220", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.288009297263315, + 30.99242052254336 + ] + }, + "properties": { + "id": "meter-16221", + "maker": "Maker A", + "model": "Model 16221", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.31385688004337, + 25.044938262563853 + ] + }, + "properties": { + "id": "meter-16222", + "maker": "Maker D", + "model": "Model 16222", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.35154958613226, + 27.25895726446125 + ] + }, + "properties": { + "id": "meter-16223", + "maker": "Maker G", + "model": "Model 16223", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.394546358074095, + 27.46766791424066 + ] + }, + "properties": { + "id": "meter-16224", + "maker": "Maker F", + "model": "Model 16224", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.99260826104092, + 22.956979045449067 + ] + }, + "properties": { + "id": "meter-16225", + "maker": "Maker C", + "model": "Model 16225", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.099123094484135, + 30.6678182708211 + ] + }, + "properties": { + "id": "meter-16226", + "maker": "Maker D", + "model": "Model 16226", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.655886781738204, + 20.961878344893442 + ] + }, + "properties": { + "id": "meter-16227", + "maker": "Maker H", + "model": "Model 16227", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.33126785169529, + 19.81792032813927 + ] + }, + "properties": { + "id": "meter-16228", + "maker": "Maker G", + "model": "Model 16228", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.70087073129115, + 28.162950674942813 + ] + }, + "properties": { + "id": "meter-16229", + "maker": "Maker D", + "model": "Model 16229", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.841636826985685, + 23.43065890062917 + ] + }, + "properties": { + "id": "meter-16230", + "maker": "Maker D", + "model": "Model 16230", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05864460172042, + 24.055233564436037 + ] + }, + "properties": { + "id": "meter-16231", + "maker": "Maker B", + "model": "Model 16231", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.702893314404264, + 29.71090500840548 + ] + }, + "properties": { + "id": "meter-16232", + "maker": "Maker H", + "model": "Model 16232", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.582943648608065, + 20.34825843766236 + ] + }, + "properties": { + "id": "meter-16233", + "maker": "Maker E", + "model": "Model 16233", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.15461174017479, + 28.561865198276067 + ] + }, + "properties": { + "id": "meter-16234", + "maker": "Maker H", + "model": "Model 16234", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.789650684092216, + 23.352915706674338 + ] + }, + "properties": { + "id": "meter-16235", + "maker": "Maker C", + "model": "Model 16235", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.057032384125904, + 19.953486156327973 + ] + }, + "properties": { + "id": "meter-16236", + "maker": "Maker G", + "model": "Model 16236", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.7575472826169, + 28.731659070807133 + ] + }, + "properties": { + "id": "meter-16237", + "maker": "Maker J", + "model": "Model 16237", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.3251838619928, + 27.39138584507076 + ] + }, + "properties": { + "id": "meter-16238", + "maker": "Maker D", + "model": "Model 16238", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21696914303574, + 23.06627075436066 + ] + }, + "properties": { + "id": "meter-16239", + "maker": "Maker C", + "model": "Model 16239", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.92689581904351, + 25.611357128584135 + ] + }, + "properties": { + "id": "meter-16240", + "maker": "Maker C", + "model": "Model 16240", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.05380791180522, + 21.839654076240617 + ] + }, + "properties": { + "id": "meter-16241", + "maker": "Maker I", + "model": "Model 16241", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.73739586667725, + 24.409451950808428 + ] + }, + "properties": { + "id": "meter-16242", + "maker": "Maker D", + "model": "Model 16242", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.492858057020314, + 24.77614095726454 + ] + }, + "properties": { + "id": "meter-16243", + "maker": "Maker B", + "model": "Model 16243", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.71876622464713, + 23.861033657815092 + ] + }, + "properties": { + "id": "meter-16244", + "maker": "Maker A", + "model": "Model 16244", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.41405179367033, + 18.888967768857253 + ] + }, + "properties": { + "id": "meter-16245", + "maker": "Maker H", + "model": "Model 16245", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.40322067724941, + 18.752246574903534 + ] + }, + "properties": { + "id": "meter-16246", + "maker": "Maker E", + "model": "Model 16246", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.727651614164785, + 17.990300187935347 + ] + }, + "properties": { + "id": "meter-16247", + "maker": "Maker I", + "model": "Model 16247", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.78013300125369, + 24.459001046060926 + ] + }, + "properties": { + "id": "meter-16248", + "maker": "Maker G", + "model": "Model 16248", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.86596660618537, + 28.932708342380163 + ] + }, + "properties": { + "id": "meter-16249", + "maker": "Maker H", + "model": "Model 16249", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23305379722645, + 29.36834013926689 + ] + }, + "properties": { + "id": "meter-16250", + "maker": "Maker H", + "model": "Model 16250", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.3311190101271, + 19.639178503438714 + ] + }, + "properties": { + "id": "meter-16251", + "maker": "Maker C", + "model": "Model 16251", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.79548853053791, + 28.859223713783486 + ] + }, + "properties": { + "id": "meter-16252", + "maker": "Maker A", + "model": "Model 16252", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.17848185389129, + 19.464828297845568 + ] + }, + "properties": { + "id": "meter-16253", + "maker": "Maker J", + "model": "Model 16253", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.245209092961176, + 18.003383250797775 + ] + }, + "properties": { + "id": "meter-16254", + "maker": "Maker H", + "model": "Model 16254", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.56137078942342, + 23.085200294763613 + ] + }, + "properties": { + "id": "meter-16255", + "maker": "Maker B", + "model": "Model 16255", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.34154500267854, + 20.243871456589325 + ] + }, + "properties": { + "id": "meter-16256", + "maker": "Maker E", + "model": "Model 16256", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.72721440288528, + 21.624174105707798 + ] + }, + "properties": { + "id": "meter-16257", + "maker": "Maker H", + "model": "Model 16257", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.37842038860335, + 29.52527282134856 + ] + }, + "properties": { + "id": "meter-16258", + "maker": "Maker D", + "model": "Model 16258", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.223870141946286, + 20.698483344288515 + ] + }, + "properties": { + "id": "meter-16259", + "maker": "Maker E", + "model": "Model 16259", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.68882674418963, + 21.416389383223702 + ] + }, + "properties": { + "id": "meter-16260", + "maker": "Maker A", + "model": "Model 16260", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.9303172633676, + 31.37306341818295 + ] + }, + "properties": { + "id": "meter-16261", + "maker": "Maker A", + "model": "Model 16261", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.445908459486546, + 21.700723185931672 + ] + }, + "properties": { + "id": "meter-16262", + "maker": "Maker C", + "model": "Model 16262", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.70566956864673, + 21.77684290209961 + ] + }, + "properties": { + "id": "meter-16263", + "maker": "Maker A", + "model": "Model 16263", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.95872999692533, + 21.599834535113068 + ] + }, + "properties": { + "id": "meter-16264", + "maker": "Maker C", + "model": "Model 16264", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.74623241765854, + 21.871652171746394 + ] + }, + "properties": { + "id": "meter-16265", + "maker": "Maker F", + "model": "Model 16265", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.55117575607903, + 22.40187646941464 + ] + }, + "properties": { + "id": "meter-16266", + "maker": "Maker H", + "model": "Model 16266", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.569531632876284, + 23.73149873272553 + ] + }, + "properties": { + "id": "meter-16267", + "maker": "Maker E", + "model": "Model 16267", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.743975002882344, + 31.004737086429806 + ] + }, + "properties": { + "id": "meter-16268", + "maker": "Maker C", + "model": "Model 16268", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.42254760286963, + 26.186016581016872 + ] + }, + "properties": { + "id": "meter-16269", + "maker": "Maker F", + "model": "Model 16269", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.935027734873074, + 31.75209975125418 + ] + }, + "properties": { + "id": "meter-16270", + "maker": "Maker D", + "model": "Model 16270", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.451653281223635, + 28.597241831526453 + ] + }, + "properties": { + "id": "meter-16271", + "maker": "Maker C", + "model": "Model 16271", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.852253071197936, + 17.733801490738518 + ] + }, + "properties": { + "id": "meter-16272", + "maker": "Maker H", + "model": "Model 16272", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.40671549733971, + 23.649949940727737 + ] + }, + "properties": { + "id": "meter-16273", + "maker": "Maker F", + "model": "Model 16273", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.8131402348767, + 22.0138795086212 + ] + }, + "properties": { + "id": "meter-16274", + "maker": "Maker J", + "model": "Model 16274", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.000062299319055, + 28.785154470619737 + ] + }, + "properties": { + "id": "meter-16275", + "maker": "Maker D", + "model": "Model 16275", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.96681325284009, + 21.62947867323395 + ] + }, + "properties": { + "id": "meter-16276", + "maker": "Maker F", + "model": "Model 16276", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.53025868590792, + 21.714239007034458 + ] + }, + "properties": { + "id": "meter-16277", + "maker": "Maker F", + "model": "Model 16277", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.58658278335984, + 28.727330608252593 + ] + }, + "properties": { + "id": "meter-16278", + "maker": "Maker A", + "model": "Model 16278", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.73992665071463, + 22.02615308552046 + ] + }, + "properties": { + "id": "meter-16279", + "maker": "Maker E", + "model": "Model 16279", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.23923743151186, + 19.202214319158095 + ] + }, + "properties": { + "id": "meter-16280", + "maker": "Maker C", + "model": "Model 16280", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.151848811592046, + 30.02947134192462 + ] + }, + "properties": { + "id": "meter-16281", + "maker": "Maker H", + "model": "Model 16281", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.264750350970644, + 18.95141671398595 + ] + }, + "properties": { + "id": "meter-16282", + "maker": "Maker A", + "model": "Model 16282", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.44660344855711, + 22.86887838760596 + ] + }, + "properties": { + "id": "meter-16283", + "maker": "Maker E", + "model": "Model 16283", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.93374597018067, + 28.73865856696525 + ] + }, + "properties": { + "id": "meter-16284", + "maker": "Maker A", + "model": "Model 16284", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.41605626803158, + 25.20467122283572 + ] + }, + "properties": { + "id": "meter-16285", + "maker": "Maker I", + "model": "Model 16285", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.24411910941302, + 19.92798409820329 + ] + }, + "properties": { + "id": "meter-16286", + "maker": "Maker B", + "model": "Model 16286", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.67329046272104, + 27.009363523604982 + ] + }, + "properties": { + "id": "meter-16287", + "maker": "Maker B", + "model": "Model 16287", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.89432243419533, + 20.48637274395658 + ] + }, + "properties": { + "id": "meter-16288", + "maker": "Maker G", + "model": "Model 16288", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.75673138470024, + 19.709369241311347 + ] + }, + "properties": { + "id": "meter-16289", + "maker": "Maker G", + "model": "Model 16289", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.059629373317634, + 26.72288493876507 + ] + }, + "properties": { + "id": "meter-16290", + "maker": "Maker D", + "model": "Model 16290", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.81996201288878, + 22.72480370491517 + ] + }, + "properties": { + "id": "meter-16291", + "maker": "Maker A", + "model": "Model 16291", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.07375092177064, + 22.773550113543145 + ] + }, + "properties": { + "id": "meter-16292", + "maker": "Maker D", + "model": "Model 16292", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.08808490822891, + 26.693551290321793 + ] + }, + "properties": { + "id": "meter-16293", + "maker": "Maker B", + "model": "Model 16293", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.3278017329174, + 24.203588903724416 + ] + }, + "properties": { + "id": "meter-16294", + "maker": "Maker F", + "model": "Model 16294", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.954864853388884, + 18.90128136932008 + ] + }, + "properties": { + "id": "meter-16295", + "maker": "Maker F", + "model": "Model 16295", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.36240498203094, + 18.888832921677597 + ] + }, + "properties": { + "id": "meter-16296", + "maker": "Maker G", + "model": "Model 16296", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.329336600266906, + 27.416419923200333 + ] + }, + "properties": { + "id": "meter-16297", + "maker": "Maker B", + "model": "Model 16297", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.41024481257362, + 28.839334071648157 + ] + }, + "properties": { + "id": "meter-16298", + "maker": "Maker E", + "model": "Model 16298", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.57312290000569, + 23.801562740566816 + ] + }, + "properties": { + "id": "meter-16299", + "maker": "Maker I", + "model": "Model 16299", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.521244447382465, + 25.407518541903833 + ] + }, + "properties": { + "id": "meter-16300", + "maker": "Maker C", + "model": "Model 16300", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.309870676298374, + 22.34986186322304 + ] + }, + "properties": { + "id": "meter-16301", + "maker": "Maker J", + "model": "Model 16301", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.77741964415837, + 22.572770517001402 + ] + }, + "properties": { + "id": "meter-16302", + "maker": "Maker A", + "model": "Model 16302", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.08057868176185, + 17.815775286464827 + ] + }, + "properties": { + "id": "meter-16303", + "maker": "Maker B", + "model": "Model 16303", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.81817181937757, + 31.17452836498138 + ] + }, + "properties": { + "id": "meter-16304", + "maker": "Maker J", + "model": "Model 16304", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.06396939487156, + 21.999864936239398 + ] + }, + "properties": { + "id": "meter-16305", + "maker": "Maker J", + "model": "Model 16305", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.02624574289888, + 26.300128595190053 + ] + }, + "properties": { + "id": "meter-16306", + "maker": "Maker E", + "model": "Model 16306", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.329258937400795, + 21.06080158717142 + ] + }, + "properties": { + "id": "meter-16307", + "maker": "Maker B", + "model": "Model 16307", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.447018229631986, + 23.09884577218436 + ] + }, + "properties": { + "id": "meter-16308", + "maker": "Maker J", + "model": "Model 16308", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.72799479415664, + 28.942643191585752 + ] + }, + "properties": { + "id": "meter-16309", + "maker": "Maker B", + "model": "Model 16309", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.56207980654611, + 21.23281133550015 + ] + }, + "properties": { + "id": "meter-16310", + "maker": "Maker D", + "model": "Model 16310", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.885558668762094, + 17.199774516588167 + ] + }, + "properties": { + "id": "meter-16311", + "maker": "Maker A", + "model": "Model 16311", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.55672435309722, + 20.899098088698803 + ] + }, + "properties": { + "id": "meter-16312", + "maker": "Maker A", + "model": "Model 16312", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.15094063488129, + 19.661382727427878 + ] + }, + "properties": { + "id": "meter-16313", + "maker": "Maker A", + "model": "Model 16313", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.170229623684996, + 24.260799285722797 + ] + }, + "properties": { + "id": "meter-16314", + "maker": "Maker G", + "model": "Model 16314", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.44882643106885, + 19.011086407967596 + ] + }, + "properties": { + "id": "meter-16315", + "maker": "Maker I", + "model": "Model 16315", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99497204491711, + 22.948132631834763 + ] + }, + "properties": { + "id": "meter-16316", + "maker": "Maker F", + "model": "Model 16316", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.69276818966206, + 21.392942923365517 + ] + }, + "properties": { + "id": "meter-16317", + "maker": "Maker G", + "model": "Model 16317", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.32697665483627, + 21.491461404728472 + ] + }, + "properties": { + "id": "meter-16318", + "maker": "Maker F", + "model": "Model 16318", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.04627540447262, + 29.85447329209685 + ] + }, + "properties": { + "id": "meter-16319", + "maker": "Maker I", + "model": "Model 16319", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.04444947021179, + 20.961658602215984 + ] + }, + "properties": { + "id": "meter-16320", + "maker": "Maker H", + "model": "Model 16320", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.05214724461228, + 20.922823834390393 + ] + }, + "properties": { + "id": "meter-16321", + "maker": "Maker G", + "model": "Model 16321", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.52346222748387, + 19.185460354545693 + ] + }, + "properties": { + "id": "meter-16322", + "maker": "Maker D", + "model": "Model 16322", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.86678384827937, + 25.888961374827826 + ] + }, + "properties": { + "id": "meter-16323", + "maker": "Maker I", + "model": "Model 16323", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.34658134121076, + 19.7025199591232 + ] + }, + "properties": { + "id": "meter-16324", + "maker": "Maker C", + "model": "Model 16324", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.347474471038424, + 23.443589057739413 + ] + }, + "properties": { + "id": "meter-16325", + "maker": "Maker B", + "model": "Model 16325", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.80223976723253, + 23.029874892242546 + ] + }, + "properties": { + "id": "meter-16326", + "maker": "Maker I", + "model": "Model 16326", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.59620172254499, + 25.07290632038749 + ] + }, + "properties": { + "id": "meter-16327", + "maker": "Maker C", + "model": "Model 16327", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.25799391176102, + 21.053133085960592 + ] + }, + "properties": { + "id": "meter-16328", + "maker": "Maker A", + "model": "Model 16328", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.83541996788644, + 18.802778011544987 + ] + }, + "properties": { + "id": "meter-16329", + "maker": "Maker H", + "model": "Model 16329", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.23969762019237, + 21.1836840161196 + ] + }, + "properties": { + "id": "meter-16330", + "maker": "Maker H", + "model": "Model 16330", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.77719350916039, + 25.883489589856566 + ] + }, + "properties": { + "id": "meter-16331", + "maker": "Maker I", + "model": "Model 16331", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.2050967794168, + 22.400054739577683 + ] + }, + "properties": { + "id": "meter-16332", + "maker": "Maker G", + "model": "Model 16332", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.02687853979197, + 19.37899147992428 + ] + }, + "properties": { + "id": "meter-16333", + "maker": "Maker D", + "model": "Model 16333", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.252931869617846, + 29.722641340486252 + ] + }, + "properties": { + "id": "meter-16334", + "maker": "Maker B", + "model": "Model 16334", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.34432917667128, + 25.321487605299776 + ] + }, + "properties": { + "id": "meter-16335", + "maker": "Maker C", + "model": "Model 16335", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.88763157661899, + 20.264240333330108 + ] + }, + "properties": { + "id": "meter-16336", + "maker": "Maker C", + "model": "Model 16336", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.38534243666894, + 23.245803705813444 + ] + }, + "properties": { + "id": "meter-16337", + "maker": "Maker F", + "model": "Model 16337", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.59411698918487, + 21.431690370978576 + ] + }, + "properties": { + "id": "meter-16338", + "maker": "Maker H", + "model": "Model 16338", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.635620522595616, + 18.25397710296485 + ] + }, + "properties": { + "id": "meter-16339", + "maker": "Maker B", + "model": "Model 16339", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.21243107201332, + 25.71471134065972 + ] + }, + "properties": { + "id": "meter-16340", + "maker": "Maker I", + "model": "Model 16340", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.21475822743634, + 19.83710402198419 + ] + }, + "properties": { + "id": "meter-16341", + "maker": "Maker E", + "model": "Model 16341", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.11176052424578, + 27.474643169670877 + ] + }, + "properties": { + "id": "meter-16342", + "maker": "Maker I", + "model": "Model 16342", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.14319009756726, + 24.166789258883625 + ] + }, + "properties": { + "id": "meter-16343", + "maker": "Maker B", + "model": "Model 16343", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.26422853498339, + 18.721875088277066 + ] + }, + "properties": { + "id": "meter-16344", + "maker": "Maker C", + "model": "Model 16344", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.66451312080731, + 20.610154107811763 + ] + }, + "properties": { + "id": "meter-16345", + "maker": "Maker G", + "model": "Model 16345", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.3500146046665, + 21.936752945813083 + ] + }, + "properties": { + "id": "meter-16346", + "maker": "Maker A", + "model": "Model 16346", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.64608601369328, + 23.158710352861956 + ] + }, + "properties": { + "id": "meter-16347", + "maker": "Maker B", + "model": "Model 16347", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.11586343983872, + 25.896692021821465 + ] + }, + "properties": { + "id": "meter-16348", + "maker": "Maker G", + "model": "Model 16348", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.4886221472921, + 31.29288625490413 + ] + }, + "properties": { + "id": "meter-16349", + "maker": "Maker H", + "model": "Model 16349", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.92087330322621, + 23.061079292371584 + ] + }, + "properties": { + "id": "meter-16350", + "maker": "Maker C", + "model": "Model 16350", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.737217069397786, + 27.122619259302432 + ] + }, + "properties": { + "id": "meter-16351", + "maker": "Maker C", + "model": "Model 16351", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.57032999730437, + 25.541104019431284 + ] + }, + "properties": { + "id": "meter-16352", + "maker": "Maker B", + "model": "Model 16352", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.532369794217544, + 23.847288554003583 + ] + }, + "properties": { + "id": "meter-16353", + "maker": "Maker H", + "model": "Model 16353", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.66545363239709, + 25.49722764433684 + ] + }, + "properties": { + "id": "meter-16354", + "maker": "Maker G", + "model": "Model 16354", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.066841603140446, + 24.303017704084724 + ] + }, + "properties": { + "id": "meter-16355", + "maker": "Maker B", + "model": "Model 16355", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.34180650370238, + 24.609177462588395 + ] + }, + "properties": { + "id": "meter-16356", + "maker": "Maker I", + "model": "Model 16356", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.0762076607984, + 18.21333865995225 + ] + }, + "properties": { + "id": "meter-16357", + "maker": "Maker G", + "model": "Model 16357", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.39341199191554, + 24.43240700824921 + ] + }, + "properties": { + "id": "meter-16358", + "maker": "Maker D", + "model": "Model 16358", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.617441618638765, + 24.61969734279568 + ] + }, + "properties": { + "id": "meter-16359", + "maker": "Maker C", + "model": "Model 16359", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.9680021637647, + 23.692058648517786 + ] + }, + "properties": { + "id": "meter-16360", + "maker": "Maker A", + "model": "Model 16360", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.26086479821987, + 22.676863238811613 + ] + }, + "properties": { + "id": "meter-16361", + "maker": "Maker A", + "model": "Model 16361", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.66607792779082, + 21.9502985305927 + ] + }, + "properties": { + "id": "meter-16362", + "maker": "Maker J", + "model": "Model 16362", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.1624942159406, + 19.2189469522493 + ] + }, + "properties": { + "id": "meter-16363", + "maker": "Maker H", + "model": "Model 16363", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.74074938443898, + 18.59095133254459 + ] + }, + "properties": { + "id": "meter-16364", + "maker": "Maker E", + "model": "Model 16364", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.14817157452353, + 22.47249057180087 + ] + }, + "properties": { + "id": "meter-16365", + "maker": "Maker I", + "model": "Model 16365", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.054622332990576, + 22.44930075477491 + ] + }, + "properties": { + "id": "meter-16366", + "maker": "Maker H", + "model": "Model 16366", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.752570424306676, + 20.250239089082264 + ] + }, + "properties": { + "id": "meter-16367", + "maker": "Maker E", + "model": "Model 16367", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.42905885441223, + 21.82102081635987 + ] + }, + "properties": { + "id": "meter-16368", + "maker": "Maker C", + "model": "Model 16368", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.696762890310964, + 25.549391342630322 + ] + }, + "properties": { + "id": "meter-16369", + "maker": "Maker A", + "model": "Model 16369", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.57866064460323, + 23.704327718801146 + ] + }, + "properties": { + "id": "meter-16370", + "maker": "Maker B", + "model": "Model 16370", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.4837908774449, + 26.823809873918453 + ] + }, + "properties": { + "id": "meter-16371", + "maker": "Maker F", + "model": "Model 16371", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.98259668268854, + 29.45073267079934 + ] + }, + "properties": { + "id": "meter-16372", + "maker": "Maker H", + "model": "Model 16372", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.19397260027292, + 28.940373049230896 + ] + }, + "properties": { + "id": "meter-16373", + "maker": "Maker H", + "model": "Model 16373", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.12713831593793, + 27.532510949874773 + ] + }, + "properties": { + "id": "meter-16374", + "maker": "Maker I", + "model": "Model 16374", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.23503692833702, + 30.00218936684179 + ] + }, + "properties": { + "id": "meter-16375", + "maker": "Maker I", + "model": "Model 16375", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.756308082057565, + 17.410629702498326 + ] + }, + "properties": { + "id": "meter-16376", + "maker": "Maker F", + "model": "Model 16376", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.752448037950934, + 28.201381236547086 + ] + }, + "properties": { + "id": "meter-16377", + "maker": "Maker E", + "model": "Model 16377", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.68331363903509, + 24.131216233463828 + ] + }, + "properties": { + "id": "meter-16378", + "maker": "Maker C", + "model": "Model 16378", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.51157347554003, + 22.905142942387762 + ] + }, + "properties": { + "id": "meter-16379", + "maker": "Maker A", + "model": "Model 16379", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.46543537388859, + 19.63335330716526 + ] + }, + "properties": { + "id": "meter-16380", + "maker": "Maker H", + "model": "Model 16380", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.260436186986794, + 26.10340343004349 + ] + }, + "properties": { + "id": "meter-16381", + "maker": "Maker D", + "model": "Model 16381", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52145081619119, + 28.814506260272836 + ] + }, + "properties": { + "id": "meter-16382", + "maker": "Maker E", + "model": "Model 16382", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.88458134239377, + 20.373803930422824 + ] + }, + "properties": { + "id": "meter-16383", + "maker": "Maker A", + "model": "Model 16383", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.060121151419324, + 29.016150377961203 + ] + }, + "properties": { + "id": "meter-16384", + "maker": "Maker D", + "model": "Model 16384", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.500359074711, + 25.427073790537214 + ] + }, + "properties": { + "id": "meter-16385", + "maker": "Maker D", + "model": "Model 16385", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.64318810184444, + 23.085040456584522 + ] + }, + "properties": { + "id": "meter-16386", + "maker": "Maker C", + "model": "Model 16386", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.28280714423589, + 30.941960699286067 + ] + }, + "properties": { + "id": "meter-16387", + "maker": "Maker J", + "model": "Model 16387", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.13753879145347, + 25.35929371362959 + ] + }, + "properties": { + "id": "meter-16388", + "maker": "Maker J", + "model": "Model 16388", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.95047368872245, + 25.29560936691779 + ] + }, + "properties": { + "id": "meter-16389", + "maker": "Maker G", + "model": "Model 16389", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.22386665795554, + 22.05891951263761 + ] + }, + "properties": { + "id": "meter-16390", + "maker": "Maker J", + "model": "Model 16390", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.13557525923105, + 27.903193565380477 + ] + }, + "properties": { + "id": "meter-16391", + "maker": "Maker F", + "model": "Model 16391", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.62633725788581, + 22.306253704895518 + ] + }, + "properties": { + "id": "meter-16392", + "maker": "Maker J", + "model": "Model 16392", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.16932801631311, + 27.707412193630375 + ] + }, + "properties": { + "id": "meter-16393", + "maker": "Maker H", + "model": "Model 16393", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.585287816700486, + 21.729982031019397 + ] + }, + "properties": { + "id": "meter-16394", + "maker": "Maker I", + "model": "Model 16394", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08769885052844, + 20.60890107052878 + ] + }, + "properties": { + "id": "meter-16395", + "maker": "Maker D", + "model": "Model 16395", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.043815858720954, + 19.055872119663007 + ] + }, + "properties": { + "id": "meter-16396", + "maker": "Maker G", + "model": "Model 16396", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.87067750642353, + 23.00187101401346 + ] + }, + "properties": { + "id": "meter-16397", + "maker": "Maker D", + "model": "Model 16397", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.217733319324246, + 21.238371379552362 + ] + }, + "properties": { + "id": "meter-16398", + "maker": "Maker C", + "model": "Model 16398", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.31365179766446, + 25.647620120943394 + ] + }, + "properties": { + "id": "meter-16399", + "maker": "Maker G", + "model": "Model 16399", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.833841667701655, + 18.940517409839728 + ] + }, + "properties": { + "id": "meter-16400", + "maker": "Maker H", + "model": "Model 16400", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.88230460731123, + 18.66646048884948 + ] + }, + "properties": { + "id": "meter-16401", + "maker": "Maker F", + "model": "Model 16401", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.365471835317855, + 31.655949972647434 + ] + }, + "properties": { + "id": "meter-16402", + "maker": "Maker H", + "model": "Model 16402", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71547977133228, + 21.37114770450494 + ] + }, + "properties": { + "id": "meter-16403", + "maker": "Maker B", + "model": "Model 16403", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.51740991155413, + 24.989434713780604 + ] + }, + "properties": { + "id": "meter-16404", + "maker": "Maker D", + "model": "Model 16404", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.01610010451701, + 22.411630106411582 + ] + }, + "properties": { + "id": "meter-16405", + "maker": "Maker G", + "model": "Model 16405", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.04381119926646, + 26.160933672663198 + ] + }, + "properties": { + "id": "meter-16406", + "maker": "Maker C", + "model": "Model 16406", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.525494692686195, + 18.769999547338784 + ] + }, + "properties": { + "id": "meter-16407", + "maker": "Maker D", + "model": "Model 16407", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.74583566035958, + 28.626295806803462 + ] + }, + "properties": { + "id": "meter-16408", + "maker": "Maker I", + "model": "Model 16408", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.035959452243716, + 27.535497091887336 + ] + }, + "properties": { + "id": "meter-16409", + "maker": "Maker A", + "model": "Model 16409", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.8310341494025, + 24.02591397369816 + ] + }, + "properties": { + "id": "meter-16410", + "maker": "Maker I", + "model": "Model 16410", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.074346492226425, + 27.656970878192517 + ] + }, + "properties": { + "id": "meter-16411", + "maker": "Maker I", + "model": "Model 16411", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.690075864249984, + 26.604818357025266 + ] + }, + "properties": { + "id": "meter-16412", + "maker": "Maker I", + "model": "Model 16412", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.09021477444094, + 19.582492865270027 + ] + }, + "properties": { + "id": "meter-16413", + "maker": "Maker E", + "model": "Model 16413", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.96541075761881, + 29.867507748736948 + ] + }, + "properties": { + "id": "meter-16414", + "maker": "Maker H", + "model": "Model 16414", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.807795965952934, + 19.943047812887237 + ] + }, + "properties": { + "id": "meter-16415", + "maker": "Maker D", + "model": "Model 16415", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.17206591259216, + 21.13551147141325 + ] + }, + "properties": { + "id": "meter-16416", + "maker": "Maker G", + "model": "Model 16416", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.087194241032286, + 24.710267384013882 + ] + }, + "properties": { + "id": "meter-16417", + "maker": "Maker J", + "model": "Model 16417", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.745839484972876, + 26.414306468602835 + ] + }, + "properties": { + "id": "meter-16418", + "maker": "Maker J", + "model": "Model 16418", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.36767976190195, + 28.31438743759813 + ] + }, + "properties": { + "id": "meter-16419", + "maker": "Maker C", + "model": "Model 16419", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.54852605050686, + 18.953279670255093 + ] + }, + "properties": { + "id": "meter-16420", + "maker": "Maker I", + "model": "Model 16420", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.87695685795479, + 26.2663106400067 + ] + }, + "properties": { + "id": "meter-16421", + "maker": "Maker H", + "model": "Model 16421", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.99820393070715, + 26.36059605677712 + ] + }, + "properties": { + "id": "meter-16422", + "maker": "Maker G", + "model": "Model 16422", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.07562625194308, + 21.976955798363736 + ] + }, + "properties": { + "id": "meter-16423", + "maker": "Maker E", + "model": "Model 16423", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.4962606826686, + 29.23386513581565 + ] + }, + "properties": { + "id": "meter-16424", + "maker": "Maker B", + "model": "Model 16424", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.728197956264246, + 25.597091100537178 + ] + }, + "properties": { + "id": "meter-16425", + "maker": "Maker E", + "model": "Model 16425", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.49128798745525, + 29.644518994007207 + ] + }, + "properties": { + "id": "meter-16426", + "maker": "Maker E", + "model": "Model 16426", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.86327541433336, + 18.57789176061686 + ] + }, + "properties": { + "id": "meter-16427", + "maker": "Maker G", + "model": "Model 16427", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.56914641369236, + 28.410941494962348 + ] + }, + "properties": { + "id": "meter-16428", + "maker": "Maker E", + "model": "Model 16428", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.471092770048365, + 31.602512760152976 + ] + }, + "properties": { + "id": "meter-16429", + "maker": "Maker C", + "model": "Model 16429", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.29823659520002, + 18.58868537761505 + ] + }, + "properties": { + "id": "meter-16430", + "maker": "Maker A", + "model": "Model 16430", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.25860800066432, + 20.602774038710344 + ] + }, + "properties": { + "id": "meter-16431", + "maker": "Maker A", + "model": "Model 16431", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.30241390259207, + 28.319518508088198 + ] + }, + "properties": { + "id": "meter-16432", + "maker": "Maker A", + "model": "Model 16432", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.29306851397277, + 19.65735640188148 + ] + }, + "properties": { + "id": "meter-16433", + "maker": "Maker G", + "model": "Model 16433", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.55615672656026, + 19.478085322425848 + ] + }, + "properties": { + "id": "meter-16434", + "maker": "Maker D", + "model": "Model 16434", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.327184426988445, + 25.257964823492077 + ] + }, + "properties": { + "id": "meter-16435", + "maker": "Maker C", + "model": "Model 16435", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.59595875351858, + 22.84213396232112 + ] + }, + "properties": { + "id": "meter-16436", + "maker": "Maker J", + "model": "Model 16436", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65454502412957, + 25.197462278872983 + ] + }, + "properties": { + "id": "meter-16437", + "maker": "Maker A", + "model": "Model 16437", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.7493323666739, + 17.790846646363498 + ] + }, + "properties": { + "id": "meter-16438", + "maker": "Maker J", + "model": "Model 16438", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.49524120398101, + 21.37338175626941 + ] + }, + "properties": { + "id": "meter-16439", + "maker": "Maker J", + "model": "Model 16439", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.89984235323758, + 22.384845720123415 + ] + }, + "properties": { + "id": "meter-16440", + "maker": "Maker A", + "model": "Model 16440", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.07924989946163, + 18.34660191173514 + ] + }, + "properties": { + "id": "meter-16441", + "maker": "Maker H", + "model": "Model 16441", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.03965995980316, + 22.538914082250948 + ] + }, + "properties": { + "id": "meter-16442", + "maker": "Maker G", + "model": "Model 16442", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.00910701510916, + 27.90089305223129 + ] + }, + "properties": { + "id": "meter-16443", + "maker": "Maker E", + "model": "Model 16443", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.80962284150751, + 28.725615947041273 + ] + }, + "properties": { + "id": "meter-16444", + "maker": "Maker D", + "model": "Model 16444", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.670686648067104, + 23.346973729206233 + ] + }, + "properties": { + "id": "meter-16445", + "maker": "Maker E", + "model": "Model 16445", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.36425896076319, + 21.2231905943935 + ] + }, + "properties": { + "id": "meter-16446", + "maker": "Maker D", + "model": "Model 16446", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.8353815213849, + 18.85749800934027 + ] + }, + "properties": { + "id": "meter-16447", + "maker": "Maker B", + "model": "Model 16447", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.367166247570225, + 25.52429127463032 + ] + }, + "properties": { + "id": "meter-16448", + "maker": "Maker D", + "model": "Model 16448", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03418057679137, + 19.350898576450135 + ] + }, + "properties": { + "id": "meter-16449", + "maker": "Maker H", + "model": "Model 16449", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.77401293936195, + 21.73154224055257 + ] + }, + "properties": { + "id": "meter-16450", + "maker": "Maker I", + "model": "Model 16450", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.626377385076786, + 17.49792592500359 + ] + }, + "properties": { + "id": "meter-16451", + "maker": "Maker D", + "model": "Model 16451", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.69500521670999, + 26.005408411094248 + ] + }, + "properties": { + "id": "meter-16452", + "maker": "Maker B", + "model": "Model 16452", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.75745134628515, + 25.15152316274022 + ] + }, + "properties": { + "id": "meter-16453", + "maker": "Maker G", + "model": "Model 16453", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.63511274427307, + 24.002989029465738 + ] + }, + "properties": { + "id": "meter-16454", + "maker": "Maker D", + "model": "Model 16454", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.996748156427415, + 25.322896811469285 + ] + }, + "properties": { + "id": "meter-16455", + "maker": "Maker I", + "model": "Model 16455", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.68460573984604, + 26.68009317573403 + ] + }, + "properties": { + "id": "meter-16456", + "maker": "Maker H", + "model": "Model 16456", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.692539045407, + 30.235140554354025 + ] + }, + "properties": { + "id": "meter-16457", + "maker": "Maker J", + "model": "Model 16457", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.563686009545755, + 20.4271894979749 + ] + }, + "properties": { + "id": "meter-16458", + "maker": "Maker E", + "model": "Model 16458", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.513598499742315, + 27.423212401278487 + ] + }, + "properties": { + "id": "meter-16459", + "maker": "Maker A", + "model": "Model 16459", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.190823202772194, + 27.750780033835333 + ] + }, + "properties": { + "id": "meter-16460", + "maker": "Maker B", + "model": "Model 16460", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.69498862255438, + 20.08152269530037 + ] + }, + "properties": { + "id": "meter-16461", + "maker": "Maker J", + "model": "Model 16461", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.56611642129039, + 29.2420096108498 + ] + }, + "properties": { + "id": "meter-16462", + "maker": "Maker B", + "model": "Model 16462", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.22018974669095, + 20.454689073061775 + ] + }, + "properties": { + "id": "meter-16463", + "maker": "Maker C", + "model": "Model 16463", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.90723514706257, + 20.798903525698996 + ] + }, + "properties": { + "id": "meter-16464", + "maker": "Maker C", + "model": "Model 16464", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.870338460267725, + 21.89718918266265 + ] + }, + "properties": { + "id": "meter-16465", + "maker": "Maker B", + "model": "Model 16465", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.46390480010235, + 27.705229636042027 + ] + }, + "properties": { + "id": "meter-16466", + "maker": "Maker E", + "model": "Model 16466", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.98097757372027, + 30.535168137825472 + ] + }, + "properties": { + "id": "meter-16467", + "maker": "Maker G", + "model": "Model 16467", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.334710448993626, + 22.333659233799644 + ] + }, + "properties": { + "id": "meter-16468", + "maker": "Maker B", + "model": "Model 16468", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.415080340374956, + 28.204114878435348 + ] + }, + "properties": { + "id": "meter-16469", + "maker": "Maker H", + "model": "Model 16469", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.8018444433783, + 26.848108440556903 + ] + }, + "properties": { + "id": "meter-16470", + "maker": "Maker D", + "model": "Model 16470", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.74393190573905, + 28.223225846950747 + ] + }, + "properties": { + "id": "meter-16471", + "maker": "Maker I", + "model": "Model 16471", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.092597331775295, + 20.88693067181948 + ] + }, + "properties": { + "id": "meter-16472", + "maker": "Maker B", + "model": "Model 16472", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.45401477359235, + 19.923719033379555 + ] + }, + "properties": { + "id": "meter-16473", + "maker": "Maker F", + "model": "Model 16473", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.40644632270208, + 22.185172682226476 + ] + }, + "properties": { + "id": "meter-16474", + "maker": "Maker E", + "model": "Model 16474", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.16686181693784, + 19.396522116860236 + ] + }, + "properties": { + "id": "meter-16475", + "maker": "Maker A", + "model": "Model 16475", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.913986279013216, + 19.578353426999254 + ] + }, + "properties": { + "id": "meter-16476", + "maker": "Maker G", + "model": "Model 16476", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.310139616105424, + 29.00583219832803 + ] + }, + "properties": { + "id": "meter-16477", + "maker": "Maker A", + "model": "Model 16477", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.943264604012704, + 22.906571663371395 + ] + }, + "properties": { + "id": "meter-16478", + "maker": "Maker F", + "model": "Model 16478", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.9690270000424, + 26.774070119517052 + ] + }, + "properties": { + "id": "meter-16479", + "maker": "Maker B", + "model": "Model 16479", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.34524715340618, + 27.63356821551104 + ] + }, + "properties": { + "id": "meter-16480", + "maker": "Maker G", + "model": "Model 16480", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.35811508923291, + 30.769766231358936 + ] + }, + "properties": { + "id": "meter-16481", + "maker": "Maker J", + "model": "Model 16481", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.51385203644301, + 18.64095506123716 + ] + }, + "properties": { + "id": "meter-16482", + "maker": "Maker D", + "model": "Model 16482", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.52738910488587, + 25.641742664835547 + ] + }, + "properties": { + "id": "meter-16483", + "maker": "Maker B", + "model": "Model 16483", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.28873195692578, + 20.73446669708271 + ] + }, + "properties": { + "id": "meter-16484", + "maker": "Maker I", + "model": "Model 16484", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.83368104134821, + 27.52966446445295 + ] + }, + "properties": { + "id": "meter-16485", + "maker": "Maker C", + "model": "Model 16485", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.14718081504605, + 25.159069783271985 + ] + }, + "properties": { + "id": "meter-16486", + "maker": "Maker J", + "model": "Model 16486", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.703084762251, + 26.554928240061205 + ] + }, + "properties": { + "id": "meter-16487", + "maker": "Maker G", + "model": "Model 16487", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.582620686085825, + 18.999391925066305 + ] + }, + "properties": { + "id": "meter-16488", + "maker": "Maker F", + "model": "Model 16488", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.793462459201976, + 21.785889356066473 + ] + }, + "properties": { + "id": "meter-16489", + "maker": "Maker C", + "model": "Model 16489", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.59403663125141, + 23.42524200822937 + ] + }, + "properties": { + "id": "meter-16490", + "maker": "Maker A", + "model": "Model 16490", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.29043311393605, + 24.234951379961316 + ] + }, + "properties": { + "id": "meter-16491", + "maker": "Maker F", + "model": "Model 16491", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.33624282887972, + 25.1584723129182 + ] + }, + "properties": { + "id": "meter-16492", + "maker": "Maker E", + "model": "Model 16492", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.27007633987476, + 24.89478345299207 + ] + }, + "properties": { + "id": "meter-16493", + "maker": "Maker G", + "model": "Model 16493", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.87666681877147, + 29.324979597248824 + ] + }, + "properties": { + "id": "meter-16494", + "maker": "Maker J", + "model": "Model 16494", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.07471762566252, + 29.52822327930219 + ] + }, + "properties": { + "id": "meter-16495", + "maker": "Maker C", + "model": "Model 16495", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.838624508767374, + 23.921128952436746 + ] + }, + "properties": { + "id": "meter-16496", + "maker": "Maker H", + "model": "Model 16496", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.277634936967665, + 23.221775161221558 + ] + }, + "properties": { + "id": "meter-16497", + "maker": "Maker A", + "model": "Model 16497", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.36407785067213, + 21.201069951955635 + ] + }, + "properties": { + "id": "meter-16498", + "maker": "Maker I", + "model": "Model 16498", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.00745920677906, + 24.10102700623346 + ] + }, + "properties": { + "id": "meter-16499", + "maker": "Maker B", + "model": "Model 16499", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.08330684167109, + 24.22460936654193 + ] + }, + "properties": { + "id": "meter-16500", + "maker": "Maker I", + "model": "Model 16500", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.817227357028415, + 27.834785315050905 + ] + }, + "properties": { + "id": "meter-16501", + "maker": "Maker B", + "model": "Model 16501", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.808970504120744, + 26.614256703537748 + ] + }, + "properties": { + "id": "meter-16502", + "maker": "Maker G", + "model": "Model 16502", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.38603244081129, + 27.554495008458098 + ] + }, + "properties": { + "id": "meter-16503", + "maker": "Maker H", + "model": "Model 16503", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.30701013526495, + 17.917676150100935 + ] + }, + "properties": { + "id": "meter-16504", + "maker": "Maker E", + "model": "Model 16504", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.00200102106247, + 23.880858117309806 + ] + }, + "properties": { + "id": "meter-16505", + "maker": "Maker B", + "model": "Model 16505", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.18824507469303, + 19.80801993907839 + ] + }, + "properties": { + "id": "meter-16506", + "maker": "Maker C", + "model": "Model 16506", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.92236080220553, + 26.991321969137246 + ] + }, + "properties": { + "id": "meter-16507", + "maker": "Maker H", + "model": "Model 16507", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.508072269721886, + 21.941514380320967 + ] + }, + "properties": { + "id": "meter-16508", + "maker": "Maker A", + "model": "Model 16508", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.04833011150775, + 27.33692260556242 + ] + }, + "properties": { + "id": "meter-16509", + "maker": "Maker H", + "model": "Model 16509", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.58816577991349, + 28.357040173426626 + ] + }, + "properties": { + "id": "meter-16510", + "maker": "Maker B", + "model": "Model 16510", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.36741223068282, + 24.988432743609962 + ] + }, + "properties": { + "id": "meter-16511", + "maker": "Maker J", + "model": "Model 16511", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.001880253802945, + 20.282000230417495 + ] + }, + "properties": { + "id": "meter-16512", + "maker": "Maker C", + "model": "Model 16512", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.31956350201304, + 18.725570256768748 + ] + }, + "properties": { + "id": "meter-16513", + "maker": "Maker G", + "model": "Model 16513", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.50613099703442, + 25.989698086652396 + ] + }, + "properties": { + "id": "meter-16514", + "maker": "Maker B", + "model": "Model 16514", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4372254923189, + 28.096745408967813 + ] + }, + "properties": { + "id": "meter-16515", + "maker": "Maker H", + "model": "Model 16515", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.32864249993237, + 26.18730866227402 + ] + }, + "properties": { + "id": "meter-16516", + "maker": "Maker B", + "model": "Model 16516", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.65074536963172, + 21.562107323537333 + ] + }, + "properties": { + "id": "meter-16517", + "maker": "Maker H", + "model": "Model 16517", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.82606697511557, + 24.87146952625628 + ] + }, + "properties": { + "id": "meter-16518", + "maker": "Maker D", + "model": "Model 16518", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.98409101336797, + 21.6312375597734 + ] + }, + "properties": { + "id": "meter-16519", + "maker": "Maker G", + "model": "Model 16519", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.06621417635286, + 22.537854414866928 + ] + }, + "properties": { + "id": "meter-16520", + "maker": "Maker J", + "model": "Model 16520", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.18265829251596, + 28.445993174505702 + ] + }, + "properties": { + "id": "meter-16521", + "maker": "Maker C", + "model": "Model 16521", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.509916424180915, + 28.91192621356116 + ] + }, + "properties": { + "id": "meter-16522", + "maker": "Maker F", + "model": "Model 16522", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87089048538658, + 24.85922235735414 + ] + }, + "properties": { + "id": "meter-16523", + "maker": "Maker C", + "model": "Model 16523", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.56879030170428, + 22.667145540874383 + ] + }, + "properties": { + "id": "meter-16524", + "maker": "Maker D", + "model": "Model 16524", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.13547732957208, + 21.342769860563628 + ] + }, + "properties": { + "id": "meter-16525", + "maker": "Maker J", + "model": "Model 16525", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.558677187047046, + 25.895320252002996 + ] + }, + "properties": { + "id": "meter-16526", + "maker": "Maker D", + "model": "Model 16526", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.77476206904734, + 18.238739169857435 + ] + }, + "properties": { + "id": "meter-16527", + "maker": "Maker G", + "model": "Model 16527", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.689250402371044, + 26.550705787638016 + ] + }, + "properties": { + "id": "meter-16528", + "maker": "Maker J", + "model": "Model 16528", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65385294025993, + 26.483523409933877 + ] + }, + "properties": { + "id": "meter-16529", + "maker": "Maker G", + "model": "Model 16529", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.14591124763602, + 22.996012215977018 + ] + }, + "properties": { + "id": "meter-16530", + "maker": "Maker F", + "model": "Model 16530", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.39608627833486, + 19.915117460236083 + ] + }, + "properties": { + "id": "meter-16531", + "maker": "Maker G", + "model": "Model 16531", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.17736869622656, + 22.2643327883345 + ] + }, + "properties": { + "id": "meter-16532", + "maker": "Maker A", + "model": "Model 16532", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.68388872074737, + 28.598597560476602 + ] + }, + "properties": { + "id": "meter-16533", + "maker": "Maker H", + "model": "Model 16533", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.00836387488854, + 31.01790199569831 + ] + }, + "properties": { + "id": "meter-16534", + "maker": "Maker J", + "model": "Model 16534", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.34821073348436, + 18.438263930685288 + ] + }, + "properties": { + "id": "meter-16535", + "maker": "Maker A", + "model": "Model 16535", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.87432312658879, + 22.30986033328096 + ] + }, + "properties": { + "id": "meter-16536", + "maker": "Maker J", + "model": "Model 16536", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.69138634929969, + 28.10898161917844 + ] + }, + "properties": { + "id": "meter-16537", + "maker": "Maker I", + "model": "Model 16537", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.68767544184781, + 30.24485723347307 + ] + }, + "properties": { + "id": "meter-16538", + "maker": "Maker I", + "model": "Model 16538", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.840452554940526, + 20.110122450450056 + ] + }, + "properties": { + "id": "meter-16539", + "maker": "Maker F", + "model": "Model 16539", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.96306465847852, + 28.70300188142169 + ] + }, + "properties": { + "id": "meter-16540", + "maker": "Maker H", + "model": "Model 16540", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69805807172768, + 19.687278207891456 + ] + }, + "properties": { + "id": "meter-16541", + "maker": "Maker A", + "model": "Model 16541", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.733990434146556, + 18.996093726713983 + ] + }, + "properties": { + "id": "meter-16542", + "maker": "Maker D", + "model": "Model 16542", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.179268254544176, + 23.52101611018363 + ] + }, + "properties": { + "id": "meter-16543", + "maker": "Maker A", + "model": "Model 16543", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.24759380381856, + 23.97930311607064 + ] + }, + "properties": { + "id": "meter-16544", + "maker": "Maker G", + "model": "Model 16544", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.08213263854613, + 27.31687611781495 + ] + }, + "properties": { + "id": "meter-16545", + "maker": "Maker D", + "model": "Model 16545", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.74696986091841, + 19.101757123887133 + ] + }, + "properties": { + "id": "meter-16546", + "maker": "Maker G", + "model": "Model 16546", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.66412990843284, + 23.782059080642757 + ] + }, + "properties": { + "id": "meter-16547", + "maker": "Maker F", + "model": "Model 16547", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.592517760963275, + 19.09116155863702 + ] + }, + "properties": { + "id": "meter-16548", + "maker": "Maker B", + "model": "Model 16548", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.069476595881, + 28.67014462947623 + ] + }, + "properties": { + "id": "meter-16549", + "maker": "Maker D", + "model": "Model 16549", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.72337598588446, + 31.449454417067255 + ] + }, + "properties": { + "id": "meter-16550", + "maker": "Maker C", + "model": "Model 16550", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66241617823821, + 23.07959697248545 + ] + }, + "properties": { + "id": "meter-16551", + "maker": "Maker H", + "model": "Model 16551", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.97112571209441, + 29.152442157318944 + ] + }, + "properties": { + "id": "meter-16552", + "maker": "Maker B", + "model": "Model 16552", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.452166898120254, + 18.91920978339973 + ] + }, + "properties": { + "id": "meter-16553", + "maker": "Maker C", + "model": "Model 16553", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.214357678901095, + 19.48089371819267 + ] + }, + "properties": { + "id": "meter-16554", + "maker": "Maker I", + "model": "Model 16554", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.556070884985786, + 27.963804808814928 + ] + }, + "properties": { + "id": "meter-16555", + "maker": "Maker D", + "model": "Model 16555", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.62417828745879, + 23.890040887596314 + ] + }, + "properties": { + "id": "meter-16556", + "maker": "Maker G", + "model": "Model 16556", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.182061434554576, + 27.82431080782294 + ] + }, + "properties": { + "id": "meter-16557", + "maker": "Maker C", + "model": "Model 16557", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.08583783455923, + 24.136575759725357 + ] + }, + "properties": { + "id": "meter-16558", + "maker": "Maker F", + "model": "Model 16558", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.79293218497225, + 26.923203454249734 + ] + }, + "properties": { + "id": "meter-16559", + "maker": "Maker A", + "model": "Model 16559", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.526876775893435, + 23.708968092737095 + ] + }, + "properties": { + "id": "meter-16560", + "maker": "Maker C", + "model": "Model 16560", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.62015227030337, + 30.961132343908645 + ] + }, + "properties": { + "id": "meter-16561", + "maker": "Maker H", + "model": "Model 16561", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.00416390380592, + 30.786252328209592 + ] + }, + "properties": { + "id": "meter-16562", + "maker": "Maker H", + "model": "Model 16562", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.639793572457656, + 21.200387630297044 + ] + }, + "properties": { + "id": "meter-16563", + "maker": "Maker J", + "model": "Model 16563", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.375728125639895, + 23.099970512812813 + ] + }, + "properties": { + "id": "meter-16564", + "maker": "Maker A", + "model": "Model 16564", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.57250817159646, + 22.200092340228963 + ] + }, + "properties": { + "id": "meter-16565", + "maker": "Maker H", + "model": "Model 16565", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.05298218789427, + 18.784675694954505 + ] + }, + "properties": { + "id": "meter-16566", + "maker": "Maker F", + "model": "Model 16566", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.948763577781264, + 23.63132028788194 + ] + }, + "properties": { + "id": "meter-16567", + "maker": "Maker J", + "model": "Model 16567", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.79727258140912, + 27.070312778150857 + ] + }, + "properties": { + "id": "meter-16568", + "maker": "Maker F", + "model": "Model 16568", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.16901497809515, + 30.36266730892583 + ] + }, + "properties": { + "id": "meter-16569", + "maker": "Maker E", + "model": "Model 16569", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.84171326120929, + 17.292401724833777 + ] + }, + "properties": { + "id": "meter-16570", + "maker": "Maker B", + "model": "Model 16570", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60604442387801, + 31.2287109780491 + ] + }, + "properties": { + "id": "meter-16571", + "maker": "Maker C", + "model": "Model 16571", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.12116066451828, + 24.900134874102896 + ] + }, + "properties": { + "id": "meter-16572", + "maker": "Maker D", + "model": "Model 16572", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.371828581936526, + 22.10874541850994 + ] + }, + "properties": { + "id": "meter-16573", + "maker": "Maker E", + "model": "Model 16573", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.19401147383532, + 25.29669908248657 + ] + }, + "properties": { + "id": "meter-16574", + "maker": "Maker H", + "model": "Model 16574", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.553248410177126, + 25.461941082226424 + ] + }, + "properties": { + "id": "meter-16575", + "maker": "Maker I", + "model": "Model 16575", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.86965269929769, + 29.58398816933821 + ] + }, + "properties": { + "id": "meter-16576", + "maker": "Maker H", + "model": "Model 16576", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.267835577491596, + 28.937439797395047 + ] + }, + "properties": { + "id": "meter-16577", + "maker": "Maker H", + "model": "Model 16577", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.49074721525673, + 23.549381561835595 + ] + }, + "properties": { + "id": "meter-16578", + "maker": "Maker E", + "model": "Model 16578", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.331984488743174, + 23.93476832375574 + ] + }, + "properties": { + "id": "meter-16579", + "maker": "Maker C", + "model": "Model 16579", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.490485487072746, + 19.81866024896161 + ] + }, + "properties": { + "id": "meter-16580", + "maker": "Maker J", + "model": "Model 16580", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.52794888289492, + 24.11820929317395 + ] + }, + "properties": { + "id": "meter-16581", + "maker": "Maker D", + "model": "Model 16581", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.023051489331294, + 21.808445873179945 + ] + }, + "properties": { + "id": "meter-16582", + "maker": "Maker G", + "model": "Model 16582", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.622244334092684, + 22.56463947976273 + ] + }, + "properties": { + "id": "meter-16583", + "maker": "Maker J", + "model": "Model 16583", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.43696161268488, + 21.409321507339207 + ] + }, + "properties": { + "id": "meter-16584", + "maker": "Maker B", + "model": "Model 16584", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.2209272873359, + 28.411206717174068 + ] + }, + "properties": { + "id": "meter-16585", + "maker": "Maker E", + "model": "Model 16585", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.99768365830432, + 19.717595644522852 + ] + }, + "properties": { + "id": "meter-16586", + "maker": "Maker F", + "model": "Model 16586", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.64474589241394, + 20.921192273399924 + ] + }, + "properties": { + "id": "meter-16587", + "maker": "Maker H", + "model": "Model 16587", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.48840056541094, + 21.747977989998617 + ] + }, + "properties": { + "id": "meter-16588", + "maker": "Maker I", + "model": "Model 16588", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.1092609006862, + 25.67821384937718 + ] + }, + "properties": { + "id": "meter-16589", + "maker": "Maker G", + "model": "Model 16589", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.09247396652325, + 27.49570953037726 + ] + }, + "properties": { + "id": "meter-16590", + "maker": "Maker B", + "model": "Model 16590", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.86596888522466, + 23.888200938585832 + ] + }, + "properties": { + "id": "meter-16591", + "maker": "Maker F", + "model": "Model 16591", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.91210845770893, + 21.333283544582923 + ] + }, + "properties": { + "id": "meter-16592", + "maker": "Maker C", + "model": "Model 16592", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.640362545134536, + 19.883043274297375 + ] + }, + "properties": { + "id": "meter-16593", + "maker": "Maker C", + "model": "Model 16593", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.945195710251646, + 18.937964029197712 + ] + }, + "properties": { + "id": "meter-16594", + "maker": "Maker J", + "model": "Model 16594", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.937706867381955, + 23.863899657167046 + ] + }, + "properties": { + "id": "meter-16595", + "maker": "Maker B", + "model": "Model 16595", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.07409424662572, + 22.821901934180804 + ] + }, + "properties": { + "id": "meter-16596", + "maker": "Maker F", + "model": "Model 16596", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.44444569643394, + 23.03571725563955 + ] + }, + "properties": { + "id": "meter-16597", + "maker": "Maker F", + "model": "Model 16597", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94085393152165, + 20.807812588648886 + ] + }, + "properties": { + "id": "meter-16598", + "maker": "Maker J", + "model": "Model 16598", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.68739680803961, + 24.701674546645545 + ] + }, + "properties": { + "id": "meter-16599", + "maker": "Maker G", + "model": "Model 16599", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.48664870734665, + 28.84804210595376 + ] + }, + "properties": { + "id": "meter-16600", + "maker": "Maker G", + "model": "Model 16600", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.3083385435913, + 30.893584105768397 + ] + }, + "properties": { + "id": "meter-16601", + "maker": "Maker F", + "model": "Model 16601", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.68506121972967, + 19.388680962811108 + ] + }, + "properties": { + "id": "meter-16602", + "maker": "Maker I", + "model": "Model 16602", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.647035689665344, + 29.268874805565147 + ] + }, + "properties": { + "id": "meter-16603", + "maker": "Maker C", + "model": "Model 16603", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.92617651806616, + 22.08919397615511 + ] + }, + "properties": { + "id": "meter-16604", + "maker": "Maker I", + "model": "Model 16604", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.9608486681477, + 20.654307001413276 + ] + }, + "properties": { + "id": "meter-16605", + "maker": "Maker H", + "model": "Model 16605", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.575087698357706, + 24.18423922204807 + ] + }, + "properties": { + "id": "meter-16606", + "maker": "Maker F", + "model": "Model 16606", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.430653247926266, + 20.73029676620628 + ] + }, + "properties": { + "id": "meter-16607", + "maker": "Maker J", + "model": "Model 16607", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.09000365433433, + 28.122763225451184 + ] + }, + "properties": { + "id": "meter-16608", + "maker": "Maker A", + "model": "Model 16608", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.393430044120855, + 28.635179573834378 + ] + }, + "properties": { + "id": "meter-16609", + "maker": "Maker D", + "model": "Model 16609", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.698154780208334, + 24.376754383935268 + ] + }, + "properties": { + "id": "meter-16610", + "maker": "Maker C", + "model": "Model 16610", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.11408894712996, + 21.661268555232297 + ] + }, + "properties": { + "id": "meter-16611", + "maker": "Maker A", + "model": "Model 16611", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.11997585396418, + 27.906435569736065 + ] + }, + "properties": { + "id": "meter-16612", + "maker": "Maker D", + "model": "Model 16612", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.96934873929632, + 28.470529819097447 + ] + }, + "properties": { + "id": "meter-16613", + "maker": "Maker J", + "model": "Model 16613", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.52871923969931, + 22.5798642439369 + ] + }, + "properties": { + "id": "meter-16614", + "maker": "Maker H", + "model": "Model 16614", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.13000648811361, + 30.24978042742736 + ] + }, + "properties": { + "id": "meter-16615", + "maker": "Maker G", + "model": "Model 16615", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.669557293626696, + 22.461083293305617 + ] + }, + "properties": { + "id": "meter-16616", + "maker": "Maker I", + "model": "Model 16616", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.57257101595183, + 27.77924160295644 + ] + }, + "properties": { + "id": "meter-16617", + "maker": "Maker G", + "model": "Model 16617", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.837438950042895, + 28.532637756483457 + ] + }, + "properties": { + "id": "meter-16618", + "maker": "Maker D", + "model": "Model 16618", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.9857657520368, + 17.357595267671204 + ] + }, + "properties": { + "id": "meter-16619", + "maker": "Maker F", + "model": "Model 16619", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.337436781279926, + 26.88309392659781 + ] + }, + "properties": { + "id": "meter-16620", + "maker": "Maker H", + "model": "Model 16620", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.51790679056714, + 19.972838743654425 + ] + }, + "properties": { + "id": "meter-16621", + "maker": "Maker C", + "model": "Model 16621", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.18902753446796, + 26.945208149086337 + ] + }, + "properties": { + "id": "meter-16622", + "maker": "Maker C", + "model": "Model 16622", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.973082324005745, + 27.41826098337706 + ] + }, + "properties": { + "id": "meter-16623", + "maker": "Maker C", + "model": "Model 16623", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.7526904882993, + 30.73288301242857 + ] + }, + "properties": { + "id": "meter-16624", + "maker": "Maker H", + "model": "Model 16624", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94943882418162, + 25.110245450340337 + ] + }, + "properties": { + "id": "meter-16625", + "maker": "Maker G", + "model": "Model 16625", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.18434491865776, + 20.603825404864253 + ] + }, + "properties": { + "id": "meter-16626", + "maker": "Maker A", + "model": "Model 16626", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.55540171449097, + 29.933381089584095 + ] + }, + "properties": { + "id": "meter-16627", + "maker": "Maker B", + "model": "Model 16627", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.660353216885746, + 24.81669215259917 + ] + }, + "properties": { + "id": "meter-16628", + "maker": "Maker H", + "model": "Model 16628", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.27958178102203, + 30.98708027479758 + ] + }, + "properties": { + "id": "meter-16629", + "maker": "Maker A", + "model": "Model 16629", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.651929011502496, + 17.847283881433782 + ] + }, + "properties": { + "id": "meter-16630", + "maker": "Maker A", + "model": "Model 16630", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.93149913284037, + 25.246683736498937 + ] + }, + "properties": { + "id": "meter-16631", + "maker": "Maker A", + "model": "Model 16631", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.555722998569706, + 18.79893539725431 + ] + }, + "properties": { + "id": "meter-16632", + "maker": "Maker C", + "model": "Model 16632", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.492162502890025, + 20.055073515374396 + ] + }, + "properties": { + "id": "meter-16633", + "maker": "Maker G", + "model": "Model 16633", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.764935228922155, + 22.504065926847872 + ] + }, + "properties": { + "id": "meter-16634", + "maker": "Maker F", + "model": "Model 16634", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.26018452824482, + 24.045114513208816 + ] + }, + "properties": { + "id": "meter-16635", + "maker": "Maker E", + "model": "Model 16635", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.30517593949845, + 19.101589543463366 + ] + }, + "properties": { + "id": "meter-16636", + "maker": "Maker A", + "model": "Model 16636", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97754412795601, + 20.65209028055984 + ] + }, + "properties": { + "id": "meter-16637", + "maker": "Maker G", + "model": "Model 16637", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.86132505741744, + 20.77280547349597 + ] + }, + "properties": { + "id": "meter-16638", + "maker": "Maker C", + "model": "Model 16638", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.905121641324975, + 18.317010838495026 + ] + }, + "properties": { + "id": "meter-16639", + "maker": "Maker D", + "model": "Model 16639", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.71940106242205, + 30.942385202569547 + ] + }, + "properties": { + "id": "meter-16640", + "maker": "Maker F", + "model": "Model 16640", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.41110366670241, + 30.43276007593098 + ] + }, + "properties": { + "id": "meter-16641", + "maker": "Maker E", + "model": "Model 16641", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.081842137720415, + 20.021762434008856 + ] + }, + "properties": { + "id": "meter-16642", + "maker": "Maker E", + "model": "Model 16642", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.85143425419963, + 26.053018162773533 + ] + }, + "properties": { + "id": "meter-16643", + "maker": "Maker D", + "model": "Model 16643", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02595006932077, + 24.894307185724294 + ] + }, + "properties": { + "id": "meter-16644", + "maker": "Maker E", + "model": "Model 16644", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.10015743642555, + 23.867002240085792 + ] + }, + "properties": { + "id": "meter-16645", + "maker": "Maker J", + "model": "Model 16645", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.536294568909184, + 20.242991632018686 + ] + }, + "properties": { + "id": "meter-16646", + "maker": "Maker H", + "model": "Model 16646", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89003039938966, + 24.88628353157374 + ] + }, + "properties": { + "id": "meter-16647", + "maker": "Maker C", + "model": "Model 16647", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.85360370050974, + 30.13272531595495 + ] + }, + "properties": { + "id": "meter-16648", + "maker": "Maker C", + "model": "Model 16648", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.500962581686196, + 22.313127245683617 + ] + }, + "properties": { + "id": "meter-16649", + "maker": "Maker F", + "model": "Model 16649", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.74062050949715, + 29.767100963650343 + ] + }, + "properties": { + "id": "meter-16650", + "maker": "Maker H", + "model": "Model 16650", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.47813480690353, + 23.6493171744978 + ] + }, + "properties": { + "id": "meter-16651", + "maker": "Maker H", + "model": "Model 16651", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.43428623379507, + 24.81406461633837 + ] + }, + "properties": { + "id": "meter-16652", + "maker": "Maker D", + "model": "Model 16652", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67294914801907, + 31.958337409322368 + ] + }, + "properties": { + "id": "meter-16653", + "maker": "Maker G", + "model": "Model 16653", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.302838471013665, + 27.007311244238252 + ] + }, + "properties": { + "id": "meter-16654", + "maker": "Maker B", + "model": "Model 16654", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.39881934497198, + 26.8874713265094 + ] + }, + "properties": { + "id": "meter-16655", + "maker": "Maker E", + "model": "Model 16655", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.081693749069174, + 18.608522365931535 + ] + }, + "properties": { + "id": "meter-16656", + "maker": "Maker H", + "model": "Model 16656", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.197097521736765, + 19.619758276743802 + ] + }, + "properties": { + "id": "meter-16657", + "maker": "Maker J", + "model": "Model 16657", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.209080812937614, + 23.368719419064846 + ] + }, + "properties": { + "id": "meter-16658", + "maker": "Maker A", + "model": "Model 16658", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.17472955711972, + 22.668310960679154 + ] + }, + "properties": { + "id": "meter-16659", + "maker": "Maker D", + "model": "Model 16659", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.37748397078644, + 20.67040311862429 + ] + }, + "properties": { + "id": "meter-16660", + "maker": "Maker F", + "model": "Model 16660", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.98688550516157, + 30.003158144347417 + ] + }, + "properties": { + "id": "meter-16661", + "maker": "Maker A", + "model": "Model 16661", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.94278341214322, + 28.321331849324046 + ] + }, + "properties": { + "id": "meter-16662", + "maker": "Maker I", + "model": "Model 16662", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.5386634937121, + 29.391067358813075 + ] + }, + "properties": { + "id": "meter-16663", + "maker": "Maker J", + "model": "Model 16663", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.52794530485078, + 27.54165509572707 + ] + }, + "properties": { + "id": "meter-16664", + "maker": "Maker A", + "model": "Model 16664", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.74454702542441, + 22.53069317077036 + ] + }, + "properties": { + "id": "meter-16665", + "maker": "Maker F", + "model": "Model 16665", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.32853370922341, + 19.092722353787988 + ] + }, + "properties": { + "id": "meter-16666", + "maker": "Maker B", + "model": "Model 16666", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.10977486287172, + 21.843923117743394 + ] + }, + "properties": { + "id": "meter-16667", + "maker": "Maker H", + "model": "Model 16667", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.6871304408973, + 18.716627088226637 + ] + }, + "properties": { + "id": "meter-16668", + "maker": "Maker C", + "model": "Model 16668", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.207927493639986, + 17.504533626602736 + ] + }, + "properties": { + "id": "meter-16669", + "maker": "Maker F", + "model": "Model 16669", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.347735364108495, + 21.687895487674474 + ] + }, + "properties": { + "id": "meter-16670", + "maker": "Maker B", + "model": "Model 16670", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.865817571322616, + 25.75781500702324 + ] + }, + "properties": { + "id": "meter-16671", + "maker": "Maker H", + "model": "Model 16671", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.79722724262761, + 25.516083828341763 + ] + }, + "properties": { + "id": "meter-16672", + "maker": "Maker G", + "model": "Model 16672", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.12732497562962, + 28.571647621417988 + ] + }, + "properties": { + "id": "meter-16673", + "maker": "Maker I", + "model": "Model 16673", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.85540957227183, + 22.346563161184065 + ] + }, + "properties": { + "id": "meter-16674", + "maker": "Maker B", + "model": "Model 16674", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.381935327758505, + 29.21946928639236 + ] + }, + "properties": { + "id": "meter-16675", + "maker": "Maker F", + "model": "Model 16675", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.128357838170665, + 17.525140595724135 + ] + }, + "properties": { + "id": "meter-16676", + "maker": "Maker D", + "model": "Model 16676", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.737614416764636, + 23.57658757121888 + ] + }, + "properties": { + "id": "meter-16677", + "maker": "Maker H", + "model": "Model 16677", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07060905270039, + 30.41637058927649 + ] + }, + "properties": { + "id": "meter-16678", + "maker": "Maker F", + "model": "Model 16678", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.24793119808468, + 20.971883982450024 + ] + }, + "properties": { + "id": "meter-16679", + "maker": "Maker G", + "model": "Model 16679", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.873072447645875, + 26.30070377876599 + ] + }, + "properties": { + "id": "meter-16680", + "maker": "Maker C", + "model": "Model 16680", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97924663171623, + 23.2942009481025 + ] + }, + "properties": { + "id": "meter-16681", + "maker": "Maker E", + "model": "Model 16681", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.01426495335343, + 26.16820141748223 + ] + }, + "properties": { + "id": "meter-16682", + "maker": "Maker A", + "model": "Model 16682", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.60466777408665, + 22.306128032978254 + ] + }, + "properties": { + "id": "meter-16683", + "maker": "Maker B", + "model": "Model 16683", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.80245116545518, + 28.21645749763894 + ] + }, + "properties": { + "id": "meter-16684", + "maker": "Maker I", + "model": "Model 16684", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.72022335992794, + 21.937232965229 + ] + }, + "properties": { + "id": "meter-16685", + "maker": "Maker G", + "model": "Model 16685", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.94548391205976, + 21.90304453328063 + ] + }, + "properties": { + "id": "meter-16686", + "maker": "Maker F", + "model": "Model 16686", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.33816514154444, + 24.233576982509078 + ] + }, + "properties": { + "id": "meter-16687", + "maker": "Maker F", + "model": "Model 16687", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.95808449015486, + 20.98236505829418 + ] + }, + "properties": { + "id": "meter-16688", + "maker": "Maker F", + "model": "Model 16688", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.97911878852123, + 26.449580603647732 + ] + }, + "properties": { + "id": "meter-16689", + "maker": "Maker H", + "model": "Model 16689", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.79831177101271, + 26.9991787100596 + ] + }, + "properties": { + "id": "meter-16690", + "maker": "Maker H", + "model": "Model 16690", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.089156619221924, + 22.82472620470339 + ] + }, + "properties": { + "id": "meter-16691", + "maker": "Maker I", + "model": "Model 16691", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.56212423550841, + 22.724729612454837 + ] + }, + "properties": { + "id": "meter-16692", + "maker": "Maker G", + "model": "Model 16692", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.993019819105186, + 29.610441921443794 + ] + }, + "properties": { + "id": "meter-16693", + "maker": "Maker A", + "model": "Model 16693", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.06259764409651, + 24.981395606024165 + ] + }, + "properties": { + "id": "meter-16694", + "maker": "Maker I", + "model": "Model 16694", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.96339696647753, + 22.771096215727226 + ] + }, + "properties": { + "id": "meter-16695", + "maker": "Maker E", + "model": "Model 16695", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.65099850862097, + 24.052533430700755 + ] + }, + "properties": { + "id": "meter-16696", + "maker": "Maker J", + "model": "Model 16696", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.993129084258875, + 27.555699695327355 + ] + }, + "properties": { + "id": "meter-16697", + "maker": "Maker H", + "model": "Model 16697", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.4949914782149, + 19.656998548193595 + ] + }, + "properties": { + "id": "meter-16698", + "maker": "Maker B", + "model": "Model 16698", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.94960495461764, + 25.254775271211706 + ] + }, + "properties": { + "id": "meter-16699", + "maker": "Maker I", + "model": "Model 16699", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.7647565267816, + 31.45130484220162 + ] + }, + "properties": { + "id": "meter-16700", + "maker": "Maker F", + "model": "Model 16700", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.93494665215648, + 22.66803130850439 + ] + }, + "properties": { + "id": "meter-16701", + "maker": "Maker D", + "model": "Model 16701", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.00145986372982, + 21.389632924862525 + ] + }, + "properties": { + "id": "meter-16702", + "maker": "Maker B", + "model": "Model 16702", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.379294024799066, + 25.473735526640766 + ] + }, + "properties": { + "id": "meter-16703", + "maker": "Maker B", + "model": "Model 16703", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.4761281951486, + 21.690819886548795 + ] + }, + "properties": { + "id": "meter-16704", + "maker": "Maker I", + "model": "Model 16704", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9003538663356, + 26.529637928615607 + ] + }, + "properties": { + "id": "meter-16705", + "maker": "Maker J", + "model": "Model 16705", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.39087184354283, + 28.3129761744812 + ] + }, + "properties": { + "id": "meter-16706", + "maker": "Maker G", + "model": "Model 16706", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.85793526470217, + 28.895817675572523 + ] + }, + "properties": { + "id": "meter-16707", + "maker": "Maker D", + "model": "Model 16707", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03699269788739, + 21.403912068035197 + ] + }, + "properties": { + "id": "meter-16708", + "maker": "Maker E", + "model": "Model 16708", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.906947885655526, + 23.448667136722502 + ] + }, + "properties": { + "id": "meter-16709", + "maker": "Maker A", + "model": "Model 16709", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.875481141843764, + 29.399501753672602 + ] + }, + "properties": { + "id": "meter-16710", + "maker": "Maker H", + "model": "Model 16710", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.89772382549209, + 23.68355359147358 + ] + }, + "properties": { + "id": "meter-16711", + "maker": "Maker G", + "model": "Model 16711", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.43341501227684, + 20.723932178488063 + ] + }, + "properties": { + "id": "meter-16712", + "maker": "Maker A", + "model": "Model 16712", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.40629803473747, + 23.206765854357254 + ] + }, + "properties": { + "id": "meter-16713", + "maker": "Maker D", + "model": "Model 16713", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.67509949531942, + 28.527845484990223 + ] + }, + "properties": { + "id": "meter-16714", + "maker": "Maker B", + "model": "Model 16714", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.46448200320545, + 26.96139744557226 + ] + }, + "properties": { + "id": "meter-16715", + "maker": "Maker H", + "model": "Model 16715", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.8187944790087, + 29.463268768504257 + ] + }, + "properties": { + "id": "meter-16716", + "maker": "Maker H", + "model": "Model 16716", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.34448734949811, + 22.56571881309854 + ] + }, + "properties": { + "id": "meter-16717", + "maker": "Maker D", + "model": "Model 16717", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.24324329423686, + 28.82518663557802 + ] + }, + "properties": { + "id": "meter-16718", + "maker": "Maker D", + "model": "Model 16718", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.84050136366822, + 22.156752522554545 + ] + }, + "properties": { + "id": "meter-16719", + "maker": "Maker A", + "model": "Model 16719", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.61705277833334, + 20.018091279046587 + ] + }, + "properties": { + "id": "meter-16720", + "maker": "Maker H", + "model": "Model 16720", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.494600207328794, + 26.920519175051577 + ] + }, + "properties": { + "id": "meter-16721", + "maker": "Maker C", + "model": "Model 16721", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.56979813376001, + 21.303306648154127 + ] + }, + "properties": { + "id": "meter-16722", + "maker": "Maker H", + "model": "Model 16722", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.677165716438026, + 19.462918522831362 + ] + }, + "properties": { + "id": "meter-16723", + "maker": "Maker I", + "model": "Model 16723", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.665371776187534, + 25.63401920755498 + ] + }, + "properties": { + "id": "meter-16724", + "maker": "Maker G", + "model": "Model 16724", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.42959053722522, + 22.87356651489331 + ] + }, + "properties": { + "id": "meter-16725", + "maker": "Maker C", + "model": "Model 16725", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.26763627145399, + 23.541752231509314 + ] + }, + "properties": { + "id": "meter-16726", + "maker": "Maker J", + "model": "Model 16726", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.84137278949326, + 25.20973073656193 + ] + }, + "properties": { + "id": "meter-16727", + "maker": "Maker I", + "model": "Model 16727", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.31568484507979, + 26.714106839855056 + ] + }, + "properties": { + "id": "meter-16728", + "maker": "Maker D", + "model": "Model 16728", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.42750880650413, + 23.08708647055704 + ] + }, + "properties": { + "id": "meter-16729", + "maker": "Maker F", + "model": "Model 16729", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.11688194601255, + 26.265436628734374 + ] + }, + "properties": { + "id": "meter-16730", + "maker": "Maker B", + "model": "Model 16730", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.17280645519983, + 25.34707496155275 + ] + }, + "properties": { + "id": "meter-16731", + "maker": "Maker G", + "model": "Model 16731", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.42585942267494, + 28.02424409639093 + ] + }, + "properties": { + "id": "meter-16732", + "maker": "Maker A", + "model": "Model 16732", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.07362695525103, + 25.221219284796685 + ] + }, + "properties": { + "id": "meter-16733", + "maker": "Maker G", + "model": "Model 16733", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.59777111209529, + 22.40904128115152 + ] + }, + "properties": { + "id": "meter-16734", + "maker": "Maker G", + "model": "Model 16734", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.79038476865646, + 30.25683982784672 + ] + }, + "properties": { + "id": "meter-16735", + "maker": "Maker D", + "model": "Model 16735", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.75336240841355, + 20.30714448063712 + ] + }, + "properties": { + "id": "meter-16736", + "maker": "Maker H", + "model": "Model 16736", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.7765025505242, + 24.14511647513511 + ] + }, + "properties": { + "id": "meter-16737", + "maker": "Maker I", + "model": "Model 16737", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.1410875502464, + 19.516254468564323 + ] + }, + "properties": { + "id": "meter-16738", + "maker": "Maker D", + "model": "Model 16738", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.76894631015516, + 21.488379258686386 + ] + }, + "properties": { + "id": "meter-16739", + "maker": "Maker H", + "model": "Model 16739", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.644234205012985, + 23.16170628922634 + ] + }, + "properties": { + "id": "meter-16740", + "maker": "Maker F", + "model": "Model 16740", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.992167336626494, + 30.62573408631941 + ] + }, + "properties": { + "id": "meter-16741", + "maker": "Maker C", + "model": "Model 16741", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.79141038324079, + 23.156041811018778 + ] + }, + "properties": { + "id": "meter-16742", + "maker": "Maker C", + "model": "Model 16742", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.809636393523824, + 20.590970205804595 + ] + }, + "properties": { + "id": "meter-16743", + "maker": "Maker F", + "model": "Model 16743", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.31310101694565, + 30.29614128180802 + ] + }, + "properties": { + "id": "meter-16744", + "maker": "Maker G", + "model": "Model 16744", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.792733535553296, + 22.830804669089492 + ] + }, + "properties": { + "id": "meter-16745", + "maker": "Maker I", + "model": "Model 16745", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.99648063485809, + 27.50384741241919 + ] + }, + "properties": { + "id": "meter-16746", + "maker": "Maker J", + "model": "Model 16746", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.15215895948591, + 18.935776442092205 + ] + }, + "properties": { + "id": "meter-16747", + "maker": "Maker C", + "model": "Model 16747", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.881452114486635, + 24.129623917594454 + ] + }, + "properties": { + "id": "meter-16748", + "maker": "Maker G", + "model": "Model 16748", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.543200471469895, + 17.494190224877553 + ] + }, + "properties": { + "id": "meter-16749", + "maker": "Maker D", + "model": "Model 16749", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.5039526377095, + 29.25835830726179 + ] + }, + "properties": { + "id": "meter-16750", + "maker": "Maker C", + "model": "Model 16750", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.12358336573364, + 22.989804514789363 + ] + }, + "properties": { + "id": "meter-16751", + "maker": "Maker C", + "model": "Model 16751", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.34800406244647, + 26.24419224651916 + ] + }, + "properties": { + "id": "meter-16752", + "maker": "Maker A", + "model": "Model 16752", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.2303500040068, + 26.0360912874796 + ] + }, + "properties": { + "id": "meter-16753", + "maker": "Maker A", + "model": "Model 16753", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.2855241576092, + 24.279416852861424 + ] + }, + "properties": { + "id": "meter-16754", + "maker": "Maker H", + "model": "Model 16754", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.36991327057279, + 23.64822003526205 + ] + }, + "properties": { + "id": "meter-16755", + "maker": "Maker I", + "model": "Model 16755", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.058920862202356, + 20.624966798865902 + ] + }, + "properties": { + "id": "meter-16756", + "maker": "Maker C", + "model": "Model 16756", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.97480682753404, + 25.889479164829652 + ] + }, + "properties": { + "id": "meter-16757", + "maker": "Maker H", + "model": "Model 16757", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.64383247852867, + 18.845838073055006 + ] + }, + "properties": { + "id": "meter-16758", + "maker": "Maker I", + "model": "Model 16758", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45442139229496, + 31.18840318050188 + ] + }, + "properties": { + "id": "meter-16759", + "maker": "Maker C", + "model": "Model 16759", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.96102476886855, + 28.603495082525143 + ] + }, + "properties": { + "id": "meter-16760", + "maker": "Maker E", + "model": "Model 16760", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.160350209667506, + 27.840978230365344 + ] + }, + "properties": { + "id": "meter-16761", + "maker": "Maker G", + "model": "Model 16761", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.22269085355195, + 26.04002302883439 + ] + }, + "properties": { + "id": "meter-16762", + "maker": "Maker J", + "model": "Model 16762", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.670002558762675, + 19.964655353890883 + ] + }, + "properties": { + "id": "meter-16763", + "maker": "Maker B", + "model": "Model 16763", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.27084687247755, + 31.60176128299279 + ] + }, + "properties": { + "id": "meter-16764", + "maker": "Maker J", + "model": "Model 16764", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.31151646689135, + 17.82368944207384 + ] + }, + "properties": { + "id": "meter-16765", + "maker": "Maker A", + "model": "Model 16765", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.85941472647044, + 20.076331930328337 + ] + }, + "properties": { + "id": "meter-16766", + "maker": "Maker B", + "model": "Model 16766", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.53918662670034, + 23.282742641474638 + ] + }, + "properties": { + "id": "meter-16767", + "maker": "Maker J", + "model": "Model 16767", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.9986847271339, + 24.021875105978584 + ] + }, + "properties": { + "id": "meter-16768", + "maker": "Maker D", + "model": "Model 16768", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.521539141570244, + 28.588911563239545 + ] + }, + "properties": { + "id": "meter-16769", + "maker": "Maker E", + "model": "Model 16769", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.69137886204259, + 31.538539817170214 + ] + }, + "properties": { + "id": "meter-16770", + "maker": "Maker H", + "model": "Model 16770", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.200332066159426, + 30.226556815531925 + ] + }, + "properties": { + "id": "meter-16771", + "maker": "Maker C", + "model": "Model 16771", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.28555539312298, + 26.431022810320727 + ] + }, + "properties": { + "id": "meter-16772", + "maker": "Maker H", + "model": "Model 16772", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4030040433322, + 26.739183344891373 + ] + }, + "properties": { + "id": "meter-16773", + "maker": "Maker F", + "model": "Model 16773", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.19388611362976, + 29.909873055265212 + ] + }, + "properties": { + "id": "meter-16774", + "maker": "Maker C", + "model": "Model 16774", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.473001847911775, + 26.136397357833232 + ] + }, + "properties": { + "id": "meter-16775", + "maker": "Maker E", + "model": "Model 16775", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.461304570920454, + 26.063766188531837 + ] + }, + "properties": { + "id": "meter-16776", + "maker": "Maker A", + "model": "Model 16776", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.10363667497541, + 28.24256134759496 + ] + }, + "properties": { + "id": "meter-16777", + "maker": "Maker H", + "model": "Model 16777", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.11839361122754, + 27.236153105713086 + ] + }, + "properties": { + "id": "meter-16778", + "maker": "Maker E", + "model": "Model 16778", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.54686012977102, + 25.35508737512491 + ] + }, + "properties": { + "id": "meter-16779", + "maker": "Maker J", + "model": "Model 16779", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.18281299247558, + 26.2554223672848 + ] + }, + "properties": { + "id": "meter-16780", + "maker": "Maker F", + "model": "Model 16780", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.50462750900425, + 23.364059536545746 + ] + }, + "properties": { + "id": "meter-16781", + "maker": "Maker G", + "model": "Model 16781", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.74728926613532, + 25.456928942166705 + ] + }, + "properties": { + "id": "meter-16782", + "maker": "Maker A", + "model": "Model 16782", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.24303976855263, + 28.791316193784336 + ] + }, + "properties": { + "id": "meter-16783", + "maker": "Maker E", + "model": "Model 16783", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.696645816734204, + 21.58787517915116 + ] + }, + "properties": { + "id": "meter-16784", + "maker": "Maker I", + "model": "Model 16784", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.71711501786381, + 30.9853079907639 + ] + }, + "properties": { + "id": "meter-16785", + "maker": "Maker A", + "model": "Model 16785", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.84248240892563, + 22.287589248755708 + ] + }, + "properties": { + "id": "meter-16786", + "maker": "Maker C", + "model": "Model 16786", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.460200102931246, + 18.587687459354193 + ] + }, + "properties": { + "id": "meter-16787", + "maker": "Maker I", + "model": "Model 16787", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.8114156873044, + 22.96014161407742 + ] + }, + "properties": { + "id": "meter-16788", + "maker": "Maker C", + "model": "Model 16788", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.51770842237726, + 21.35783488749795 + ] + }, + "properties": { + "id": "meter-16789", + "maker": "Maker E", + "model": "Model 16789", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.84074289285509, + 19.668514507323657 + ] + }, + "properties": { + "id": "meter-16790", + "maker": "Maker C", + "model": "Model 16790", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.985380429961374, + 21.488113967589374 + ] + }, + "properties": { + "id": "meter-16791", + "maker": "Maker G", + "model": "Model 16791", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2211199273265, + 23.968765227832513 + ] + }, + "properties": { + "id": "meter-16792", + "maker": "Maker E", + "model": "Model 16792", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.47499929000812, + 21.589677921629352 + ] + }, + "properties": { + "id": "meter-16793", + "maker": "Maker F", + "model": "Model 16793", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.80447026834125, + 23.855538866800444 + ] + }, + "properties": { + "id": "meter-16794", + "maker": "Maker J", + "model": "Model 16794", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13951005669418, + 17.87327997467512 + ] + }, + "properties": { + "id": "meter-16795", + "maker": "Maker H", + "model": "Model 16795", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.13779232158659, + 26.478976978582175 + ] + }, + "properties": { + "id": "meter-16796", + "maker": "Maker J", + "model": "Model 16796", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.04033529933052, + 22.545416978103397 + ] + }, + "properties": { + "id": "meter-16797", + "maker": "Maker F", + "model": "Model 16797", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.47954509335957, + 20.191201021174443 + ] + }, + "properties": { + "id": "meter-16798", + "maker": "Maker I", + "model": "Model 16798", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.41929723285705, + 21.946355518948273 + ] + }, + "properties": { + "id": "meter-16799", + "maker": "Maker C", + "model": "Model 16799", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.68663061217136, + 24.659847186951055 + ] + }, + "properties": { + "id": "meter-16800", + "maker": "Maker E", + "model": "Model 16800", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.02279341160886, + 22.79786203169542 + ] + }, + "properties": { + "id": "meter-16801", + "maker": "Maker D", + "model": "Model 16801", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.5747740619068, + 23.34197220581478 + ] + }, + "properties": { + "id": "meter-16802", + "maker": "Maker A", + "model": "Model 16802", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.73346989410632, + 24.735377836509493 + ] + }, + "properties": { + "id": "meter-16803", + "maker": "Maker J", + "model": "Model 16803", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.36588221122496, + 27.508539765915884 + ] + }, + "properties": { + "id": "meter-16804", + "maker": "Maker E", + "model": "Model 16804", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.818667184605324, + 31.69335533227391 + ] + }, + "properties": { + "id": "meter-16805", + "maker": "Maker I", + "model": "Model 16805", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.45842933119375, + 22.681655869397943 + ] + }, + "properties": { + "id": "meter-16806", + "maker": "Maker F", + "model": "Model 16806", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.280541828150916, + 26.320200861623455 + ] + }, + "properties": { + "id": "meter-16807", + "maker": "Maker A", + "model": "Model 16807", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.86391903413847, + 17.615365944298638 + ] + }, + "properties": { + "id": "meter-16808", + "maker": "Maker J", + "model": "Model 16808", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.90883359680994, + 30.04112412524843 + ] + }, + "properties": { + "id": "meter-16809", + "maker": "Maker E", + "model": "Model 16809", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.90011765103364, + 21.231514568010677 + ] + }, + "properties": { + "id": "meter-16810", + "maker": "Maker F", + "model": "Model 16810", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9799705917951, + 30.242585125505265 + ] + }, + "properties": { + "id": "meter-16811", + "maker": "Maker J", + "model": "Model 16811", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.35156431969973, + 25.428391164980678 + ] + }, + "properties": { + "id": "meter-16812", + "maker": "Maker B", + "model": "Model 16812", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.818064172873065, + 17.557787295846495 + ] + }, + "properties": { + "id": "meter-16813", + "maker": "Maker A", + "model": "Model 16813", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.9944227810671, + 21.740254862150838 + ] + }, + "properties": { + "id": "meter-16814", + "maker": "Maker A", + "model": "Model 16814", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.49246029120329, + 20.82247814044349 + ] + }, + "properties": { + "id": "meter-16815", + "maker": "Maker D", + "model": "Model 16815", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.974178142707416, + 21.901289515160258 + ] + }, + "properties": { + "id": "meter-16816", + "maker": "Maker A", + "model": "Model 16816", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.202604547662474, + 21.05348595995466 + ] + }, + "properties": { + "id": "meter-16817", + "maker": "Maker F", + "model": "Model 16817", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.23618451309781, + 21.468244372851995 + ] + }, + "properties": { + "id": "meter-16818", + "maker": "Maker H", + "model": "Model 16818", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.50306657995448, + 21.035325196659798 + ] + }, + "properties": { + "id": "meter-16819", + "maker": "Maker G", + "model": "Model 16819", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.26100543159115, + 20.296276142605578 + ] + }, + "properties": { + "id": "meter-16820", + "maker": "Maker I", + "model": "Model 16820", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.698929307300126, + 28.47053223108811 + ] + }, + "properties": { + "id": "meter-16821", + "maker": "Maker F", + "model": "Model 16821", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.72753570691691, + 24.638002298462062 + ] + }, + "properties": { + "id": "meter-16822", + "maker": "Maker C", + "model": "Model 16822", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.47850746284623, + 29.275379120336503 + ] + }, + "properties": { + "id": "meter-16823", + "maker": "Maker B", + "model": "Model 16823", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.77130729590264, + 25.216910090966337 + ] + }, + "properties": { + "id": "meter-16824", + "maker": "Maker A", + "model": "Model 16824", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.93115479722039, + 22.541876182605083 + ] + }, + "properties": { + "id": "meter-16825", + "maker": "Maker I", + "model": "Model 16825", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.41342577964578, + 25.18291215503259 + ] + }, + "properties": { + "id": "meter-16826", + "maker": "Maker H", + "model": "Model 16826", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.39734410459249, + 21.383688314076387 + ] + }, + "properties": { + "id": "meter-16827", + "maker": "Maker D", + "model": "Model 16827", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.375159729631534, + 31.697621199295053 + ] + }, + "properties": { + "id": "meter-16828", + "maker": "Maker I", + "model": "Model 16828", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.142078426219186, + 26.33099265433329 + ] + }, + "properties": { + "id": "meter-16829", + "maker": "Maker B", + "model": "Model 16829", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.01293466090257, + 24.86150039876865 + ] + }, + "properties": { + "id": "meter-16830", + "maker": "Maker E", + "model": "Model 16830", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6528534414739, + 24.038349160935436 + ] + }, + "properties": { + "id": "meter-16831", + "maker": "Maker D", + "model": "Model 16831", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.02195722576191, + 25.592560893584565 + ] + }, + "properties": { + "id": "meter-16832", + "maker": "Maker J", + "model": "Model 16832", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.09974265054152, + 27.522578698075673 + ] + }, + "properties": { + "id": "meter-16833", + "maker": "Maker I", + "model": "Model 16833", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.133523993098706, + 24.67415224501893 + ] + }, + "properties": { + "id": "meter-16834", + "maker": "Maker C", + "model": "Model 16834", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.094198854615456, + 19.35607376185797 + ] + }, + "properties": { + "id": "meter-16835", + "maker": "Maker E", + "model": "Model 16835", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.008563706979274, + 30.571243616285383 + ] + }, + "properties": { + "id": "meter-16836", + "maker": "Maker A", + "model": "Model 16836", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.54540861627417, + 21.755466959520838 + ] + }, + "properties": { + "id": "meter-16837", + "maker": "Maker G", + "model": "Model 16837", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.66926406463667, + 18.179172728118356 + ] + }, + "properties": { + "id": "meter-16838", + "maker": "Maker I", + "model": "Model 16838", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.840670080042315, + 19.91933651085766 + ] + }, + "properties": { + "id": "meter-16839", + "maker": "Maker I", + "model": "Model 16839", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.577137455134476, + 28.044310044878422 + ] + }, + "properties": { + "id": "meter-16840", + "maker": "Maker D", + "model": "Model 16840", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.59831260685336, + 20.564150674964228 + ] + }, + "properties": { + "id": "meter-16841", + "maker": "Maker J", + "model": "Model 16841", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.845944783763024, + 19.511613893576577 + ] + }, + "properties": { + "id": "meter-16842", + "maker": "Maker D", + "model": "Model 16842", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.332564321144545, + 24.794665009118507 + ] + }, + "properties": { + "id": "meter-16843", + "maker": "Maker H", + "model": "Model 16843", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.52840061613559, + 21.549286657267015 + ] + }, + "properties": { + "id": "meter-16844", + "maker": "Maker D", + "model": "Model 16844", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.3337525058934, + 28.89380071023981 + ] + }, + "properties": { + "id": "meter-16845", + "maker": "Maker H", + "model": "Model 16845", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.90397426993771, + 24.062881457429548 + ] + }, + "properties": { + "id": "meter-16846", + "maker": "Maker C", + "model": "Model 16846", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.62823337305629, + 24.95688944275289 + ] + }, + "properties": { + "id": "meter-16847", + "maker": "Maker E", + "model": "Model 16847", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.88531390627722, + 18.012458905650252 + ] + }, + "properties": { + "id": "meter-16848", + "maker": "Maker E", + "model": "Model 16848", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.60597323429319, + 18.81248390776892 + ] + }, + "properties": { + "id": "meter-16849", + "maker": "Maker H", + "model": "Model 16849", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.45540513258737, + 23.04855639787116 + ] + }, + "properties": { + "id": "meter-16850", + "maker": "Maker F", + "model": "Model 16850", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.86896740917727, + 23.89764615386215 + ] + }, + "properties": { + "id": "meter-16851", + "maker": "Maker E", + "model": "Model 16851", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.098553313058105, + 29.193164612237055 + ] + }, + "properties": { + "id": "meter-16852", + "maker": "Maker C", + "model": "Model 16852", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.87259353000359, + 22.057951848736046 + ] + }, + "properties": { + "id": "meter-16853", + "maker": "Maker I", + "model": "Model 16853", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.62769276762088, + 26.43499356939511 + ] + }, + "properties": { + "id": "meter-16854", + "maker": "Maker E", + "model": "Model 16854", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.154650859674625, + 26.783758751349495 + ] + }, + "properties": { + "id": "meter-16855", + "maker": "Maker A", + "model": "Model 16855", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.32508162525513, + 22.894699335061315 + ] + }, + "properties": { + "id": "meter-16856", + "maker": "Maker G", + "model": "Model 16856", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.9695765993547, + 23.84018086081371 + ] + }, + "properties": { + "id": "meter-16857", + "maker": "Maker B", + "model": "Model 16857", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.72288365916954, + 18.048644707041507 + ] + }, + "properties": { + "id": "meter-16858", + "maker": "Maker C", + "model": "Model 16858", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.568545573483426, + 29.280792097902307 + ] + }, + "properties": { + "id": "meter-16859", + "maker": "Maker I", + "model": "Model 16859", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.61214054701148, + 22.43587071621047 + ] + }, + "properties": { + "id": "meter-16860", + "maker": "Maker G", + "model": "Model 16860", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.07917546432857, + 22.68075856962507 + ] + }, + "properties": { + "id": "meter-16861", + "maker": "Maker H", + "model": "Model 16861", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.35876124818869, + 21.76725978436974 + ] + }, + "properties": { + "id": "meter-16862", + "maker": "Maker G", + "model": "Model 16862", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.081603070709825, + 24.37761305659223 + ] + }, + "properties": { + "id": "meter-16863", + "maker": "Maker B", + "model": "Model 16863", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.51005908900047, + 21.406154997245928 + ] + }, + "properties": { + "id": "meter-16864", + "maker": "Maker A", + "model": "Model 16864", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.465526605969615, + 24.55168544468903 + ] + }, + "properties": { + "id": "meter-16865", + "maker": "Maker C", + "model": "Model 16865", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.1402853615114, + 27.57775614335509 + ] + }, + "properties": { + "id": "meter-16866", + "maker": "Maker H", + "model": "Model 16866", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.35213655338757, + 26.18836456488991 + ] + }, + "properties": { + "id": "meter-16867", + "maker": "Maker A", + "model": "Model 16867", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.233174786174786, + 31.455267759613236 + ] + }, + "properties": { + "id": "meter-16868", + "maker": "Maker A", + "model": "Model 16868", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.54419539684264, + 22.8078446601031 + ] + }, + "properties": { + "id": "meter-16869", + "maker": "Maker H", + "model": "Model 16869", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.33728091075693, + 27.11452126947301 + ] + }, + "properties": { + "id": "meter-16870", + "maker": "Maker G", + "model": "Model 16870", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.64379641280234, + 27.56922000898943 + ] + }, + "properties": { + "id": "meter-16871", + "maker": "Maker H", + "model": "Model 16871", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.899517319453864, + 24.47679833532539 + ] + }, + "properties": { + "id": "meter-16872", + "maker": "Maker F", + "model": "Model 16872", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.019745616870495, + 24.16936406167574 + ] + }, + "properties": { + "id": "meter-16873", + "maker": "Maker F", + "model": "Model 16873", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.87269996579664, + 23.10683935259832 + ] + }, + "properties": { + "id": "meter-16874", + "maker": "Maker D", + "model": "Model 16874", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.34048246631646, + 23.314935713940944 + ] + }, + "properties": { + "id": "meter-16875", + "maker": "Maker A", + "model": "Model 16875", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.63754307087302, + 29.628019001121636 + ] + }, + "properties": { + "id": "meter-16876", + "maker": "Maker G", + "model": "Model 16876", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.02413704630472, + 24.325340297566868 + ] + }, + "properties": { + "id": "meter-16877", + "maker": "Maker F", + "model": "Model 16877", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.46984850639315, + 29.57322041309792 + ] + }, + "properties": { + "id": "meter-16878", + "maker": "Maker C", + "model": "Model 16878", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.20189678055382, + 24.34152163390548 + ] + }, + "properties": { + "id": "meter-16879", + "maker": "Maker J", + "model": "Model 16879", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.36346210704786, + 31.0051869052703 + ] + }, + "properties": { + "id": "meter-16880", + "maker": "Maker G", + "model": "Model 16880", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67205795878923, + 21.47995215662385 + ] + }, + "properties": { + "id": "meter-16881", + "maker": "Maker I", + "model": "Model 16881", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.05833883383255, + 30.908496156356485 + ] + }, + "properties": { + "id": "meter-16882", + "maker": "Maker J", + "model": "Model 16882", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.149083789998485, + 21.63391188539054 + ] + }, + "properties": { + "id": "meter-16883", + "maker": "Maker G", + "model": "Model 16883", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.261688509052966, + 18.05361486424674 + ] + }, + "properties": { + "id": "meter-16884", + "maker": "Maker D", + "model": "Model 16884", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.57010649180318, + 28.430697874221153 + ] + }, + "properties": { + "id": "meter-16885", + "maker": "Maker G", + "model": "Model 16885", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.2194381205403, + 28.00056671878238 + ] + }, + "properties": { + "id": "meter-16886", + "maker": "Maker C", + "model": "Model 16886", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.48361144460479, + 29.585728576313407 + ] + }, + "properties": { + "id": "meter-16887", + "maker": "Maker A", + "model": "Model 16887", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.77442669745308, + 30.389043945637084 + ] + }, + "properties": { + "id": "meter-16888", + "maker": "Maker F", + "model": "Model 16888", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.863318685655074, + 20.255702666536774 + ] + }, + "properties": { + "id": "meter-16889", + "maker": "Maker D", + "model": "Model 16889", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.02506120278971, + 22.97559740635039 + ] + }, + "properties": { + "id": "meter-16890", + "maker": "Maker F", + "model": "Model 16890", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.21534667208627, + 20.705161084050104 + ] + }, + "properties": { + "id": "meter-16891", + "maker": "Maker J", + "model": "Model 16891", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.5944440975384, + 27.173530752419094 + ] + }, + "properties": { + "id": "meter-16892", + "maker": "Maker A", + "model": "Model 16892", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.858651117156214, + 23.48293119121334 + ] + }, + "properties": { + "id": "meter-16893", + "maker": "Maker G", + "model": "Model 16893", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.159835378019636, + 21.720565313004887 + ] + }, + "properties": { + "id": "meter-16894", + "maker": "Maker C", + "model": "Model 16894", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.3409724077145, + 28.65724158016718 + ] + }, + "properties": { + "id": "meter-16895", + "maker": "Maker C", + "model": "Model 16895", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.550111712567606, + 25.56877360812784 + ] + }, + "properties": { + "id": "meter-16896", + "maker": "Maker G", + "model": "Model 16896", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.15401119377983, + 24.07973764887333 + ] + }, + "properties": { + "id": "meter-16897", + "maker": "Maker D", + "model": "Model 16897", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.25288430406642, + 19.392895605248867 + ] + }, + "properties": { + "id": "meter-16898", + "maker": "Maker H", + "model": "Model 16898", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.84899658815149, + 23.754150126354105 + ] + }, + "properties": { + "id": "meter-16899", + "maker": "Maker J", + "model": "Model 16899", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.69519581989161, + 20.486006866757478 + ] + }, + "properties": { + "id": "meter-16900", + "maker": "Maker G", + "model": "Model 16900", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.72042622308382, + 19.682384674544576 + ] + }, + "properties": { + "id": "meter-16901", + "maker": "Maker E", + "model": "Model 16901", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.097809092138014, + 20.439842983799075 + ] + }, + "properties": { + "id": "meter-16902", + "maker": "Maker E", + "model": "Model 16902", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.85596177293836, + 19.832197908644808 + ] + }, + "properties": { + "id": "meter-16903", + "maker": "Maker H", + "model": "Model 16903", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.25016030936289, + 31.44133223283377 + ] + }, + "properties": { + "id": "meter-16904", + "maker": "Maker C", + "model": "Model 16904", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.5169378655898, + 23.403296534396596 + ] + }, + "properties": { + "id": "meter-16905", + "maker": "Maker C", + "model": "Model 16905", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.16608508439805, + 25.700019304246354 + ] + }, + "properties": { + "id": "meter-16906", + "maker": "Maker F", + "model": "Model 16906", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67136329882876, + 19.039230265965912 + ] + }, + "properties": { + "id": "meter-16907", + "maker": "Maker F", + "model": "Model 16907", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.99139910057431, + 24.615609056731635 + ] + }, + "properties": { + "id": "meter-16908", + "maker": "Maker C", + "model": "Model 16908", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.78516287726306, + 27.70391766009646 + ] + }, + "properties": { + "id": "meter-16909", + "maker": "Maker B", + "model": "Model 16909", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.480262426691326, + 21.14277362176722 + ] + }, + "properties": { + "id": "meter-16910", + "maker": "Maker A", + "model": "Model 16910", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.42244391643915, + 27.16387177300691 + ] + }, + "properties": { + "id": "meter-16911", + "maker": "Maker G", + "model": "Model 16911", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.109541342234806, + 24.86191336193678 + ] + }, + "properties": { + "id": "meter-16912", + "maker": "Maker C", + "model": "Model 16912", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.16670330054042, + 21.447128518130192 + ] + }, + "properties": { + "id": "meter-16913", + "maker": "Maker E", + "model": "Model 16913", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.68390209512708, + 24.060441741400595 + ] + }, + "properties": { + "id": "meter-16914", + "maker": "Maker I", + "model": "Model 16914", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.01582792554891, + 19.33584686047471 + ] + }, + "properties": { + "id": "meter-16915", + "maker": "Maker I", + "model": "Model 16915", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.05681250177108, + 30.45895483598062 + ] + }, + "properties": { + "id": "meter-16916", + "maker": "Maker A", + "model": "Model 16916", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.567221216065825, + 18.201185401014087 + ] + }, + "properties": { + "id": "meter-16917", + "maker": "Maker G", + "model": "Model 16917", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.48493013844526, + 21.538300011387534 + ] + }, + "properties": { + "id": "meter-16918", + "maker": "Maker G", + "model": "Model 16918", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.594096034603794, + 24.98423981478044 + ] + }, + "properties": { + "id": "meter-16919", + "maker": "Maker H", + "model": "Model 16919", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.68317088040217, + 24.154462229251017 + ] + }, + "properties": { + "id": "meter-16920", + "maker": "Maker J", + "model": "Model 16920", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.10320475755614, + 18.531004458309102 + ] + }, + "properties": { + "id": "meter-16921", + "maker": "Maker A", + "model": "Model 16921", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.567257692293, + 27.6227924371594 + ] + }, + "properties": { + "id": "meter-16922", + "maker": "Maker C", + "model": "Model 16922", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.91790217812225, + 20.741570275812364 + ] + }, + "properties": { + "id": "meter-16923", + "maker": "Maker F", + "model": "Model 16923", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.35323212079961, + 25.397109434394007 + ] + }, + "properties": { + "id": "meter-16924", + "maker": "Maker H", + "model": "Model 16924", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.385132892766315, + 28.990245278550347 + ] + }, + "properties": { + "id": "meter-16925", + "maker": "Maker B", + "model": "Model 16925", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69479331273837, + 29.874235872853234 + ] + }, + "properties": { + "id": "meter-16926", + "maker": "Maker F", + "model": "Model 16926", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.277218107159726, + 30.005298701467005 + ] + }, + "properties": { + "id": "meter-16927", + "maker": "Maker C", + "model": "Model 16927", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.25002539853504, + 20.388680247305498 + ] + }, + "properties": { + "id": "meter-16928", + "maker": "Maker I", + "model": "Model 16928", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.192740225668345, + 17.94155504191453 + ] + }, + "properties": { + "id": "meter-16929", + "maker": "Maker B", + "model": "Model 16929", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.88453673899228, + 22.123539932259803 + ] + }, + "properties": { + "id": "meter-16930", + "maker": "Maker G", + "model": "Model 16930", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.02317624670691, + 26.51383497359635 + ] + }, + "properties": { + "id": "meter-16931", + "maker": "Maker H", + "model": "Model 16931", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.33012325670592, + 24.54275714492354 + ] + }, + "properties": { + "id": "meter-16932", + "maker": "Maker F", + "model": "Model 16932", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.352687361400505, + 29.19270657466504 + ] + }, + "properties": { + "id": "meter-16933", + "maker": "Maker J", + "model": "Model 16933", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.061305328820545, + 28.803542401060948 + ] + }, + "properties": { + "id": "meter-16934", + "maker": "Maker B", + "model": "Model 16934", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.92485922525465, + 22.055699217552792 + ] + }, + "properties": { + "id": "meter-16935", + "maker": "Maker B", + "model": "Model 16935", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.009423846009426, + 20.633587322821533 + ] + }, + "properties": { + "id": "meter-16936", + "maker": "Maker I", + "model": "Model 16936", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.88956056756873, + 27.579123725488813 + ] + }, + "properties": { + "id": "meter-16937", + "maker": "Maker F", + "model": "Model 16937", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.235848018499844, + 27.31353394387257 + ] + }, + "properties": { + "id": "meter-16938", + "maker": "Maker A", + "model": "Model 16938", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.454363027535436, + 25.495830600454582 + ] + }, + "properties": { + "id": "meter-16939", + "maker": "Maker F", + "model": "Model 16939", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.26440775648291, + 20.876109296919072 + ] + }, + "properties": { + "id": "meter-16940", + "maker": "Maker G", + "model": "Model 16940", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.15055469712951, + 23.078545306221468 + ] + }, + "properties": { + "id": "meter-16941", + "maker": "Maker C", + "model": "Model 16941", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.65679331200044, + 19.03014718032948 + ] + }, + "properties": { + "id": "meter-16942", + "maker": "Maker C", + "model": "Model 16942", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.345016352197476, + 24.722941366007884 + ] + }, + "properties": { + "id": "meter-16943", + "maker": "Maker C", + "model": "Model 16943", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.103686169448615, + 17.44221696075258 + ] + }, + "properties": { + "id": "meter-16944", + "maker": "Maker B", + "model": "Model 16944", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.593222417857866, + 25.35082993579801 + ] + }, + "properties": { + "id": "meter-16945", + "maker": "Maker J", + "model": "Model 16945", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.635023444178245, + 27.160546670192353 + ] + }, + "properties": { + "id": "meter-16946", + "maker": "Maker H", + "model": "Model 16946", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.589871975856916, + 24.626394836388336 + ] + }, + "properties": { + "id": "meter-16947", + "maker": "Maker E", + "model": "Model 16947", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.85213758928538, + 22.760944285834004 + ] + }, + "properties": { + "id": "meter-16948", + "maker": "Maker I", + "model": "Model 16948", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.08034580117912, + 24.907874370573506 + ] + }, + "properties": { + "id": "meter-16949", + "maker": "Maker D", + "model": "Model 16949", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.900043182208144, + 23.87845375608822 + ] + }, + "properties": { + "id": "meter-16950", + "maker": "Maker G", + "model": "Model 16950", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.24580761948707, + 27.689915991876394 + ] + }, + "properties": { + "id": "meter-16951", + "maker": "Maker I", + "model": "Model 16951", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.85004667453972, + 24.772661062622454 + ] + }, + "properties": { + "id": "meter-16952", + "maker": "Maker B", + "model": "Model 16952", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.920420001682444, + 24.59261445349889 + ] + }, + "properties": { + "id": "meter-16953", + "maker": "Maker F", + "model": "Model 16953", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.25505913702664, + 21.800103197643722 + ] + }, + "properties": { + "id": "meter-16954", + "maker": "Maker E", + "model": "Model 16954", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.23173652377668, + 22.766369139597717 + ] + }, + "properties": { + "id": "meter-16955", + "maker": "Maker C", + "model": "Model 16955", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.126240680592176, + 21.028837115493594 + ] + }, + "properties": { + "id": "meter-16956", + "maker": "Maker A", + "model": "Model 16956", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.254847593247746, + 26.92142107287033 + ] + }, + "properties": { + "id": "meter-16957", + "maker": "Maker F", + "model": "Model 16957", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.067487884537194, + 20.35557103771853 + ] + }, + "properties": { + "id": "meter-16958", + "maker": "Maker F", + "model": "Model 16958", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.34421831872622, + 18.601491482962654 + ] + }, + "properties": { + "id": "meter-16959", + "maker": "Maker J", + "model": "Model 16959", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.66733525957345, + 28.067104366325886 + ] + }, + "properties": { + "id": "meter-16960", + "maker": "Maker G", + "model": "Model 16960", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.35634544042915, + 19.646015809335562 + ] + }, + "properties": { + "id": "meter-16961", + "maker": "Maker I", + "model": "Model 16961", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.725859765204966, + 24.348337282697813 + ] + }, + "properties": { + "id": "meter-16962", + "maker": "Maker I", + "model": "Model 16962", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.246056590067994, + 19.902497872409793 + ] + }, + "properties": { + "id": "meter-16963", + "maker": "Maker A", + "model": "Model 16963", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.52271592515708, + 27.03968517271545 + ] + }, + "properties": { + "id": "meter-16964", + "maker": "Maker D", + "model": "Model 16964", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00068400538731, + 26.20305078881966 + ] + }, + "properties": { + "id": "meter-16965", + "maker": "Maker E", + "model": "Model 16965", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.74223386039539, + 26.63988950627578 + ] + }, + "properties": { + "id": "meter-16966", + "maker": "Maker F", + "model": "Model 16966", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.54631951729644, + 19.960968428241742 + ] + }, + "properties": { + "id": "meter-16967", + "maker": "Maker C", + "model": "Model 16967", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.716678909552755, + 26.317803835899632 + ] + }, + "properties": { + "id": "meter-16968", + "maker": "Maker B", + "model": "Model 16968", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.172232722536066, + 20.616290045192674 + ] + }, + "properties": { + "id": "meter-16969", + "maker": "Maker F", + "model": "Model 16969", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.060658763904, + 21.418189313627167 + ] + }, + "properties": { + "id": "meter-16970", + "maker": "Maker I", + "model": "Model 16970", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.46861398579707, + 21.68914381954839 + ] + }, + "properties": { + "id": "meter-16971", + "maker": "Maker E", + "model": "Model 16971", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.373240481659224, + 25.433085957435708 + ] + }, + "properties": { + "id": "meter-16972", + "maker": "Maker E", + "model": "Model 16972", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.9784920970919, + 17.91819187372205 + ] + }, + "properties": { + "id": "meter-16973", + "maker": "Maker J", + "model": "Model 16973", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.687543186986595, + 22.995025048516123 + ] + }, + "properties": { + "id": "meter-16974", + "maker": "Maker J", + "model": "Model 16974", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.06324817045707, + 21.097841704350465 + ] + }, + "properties": { + "id": "meter-16975", + "maker": "Maker B", + "model": "Model 16975", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.389088356522926, + 22.655789978580046 + ] + }, + "properties": { + "id": "meter-16976", + "maker": "Maker J", + "model": "Model 16976", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.832780335974334, + 19.38502260417542 + ] + }, + "properties": { + "id": "meter-16977", + "maker": "Maker I", + "model": "Model 16977", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.92744673587251, + 20.742896904642418 + ] + }, + "properties": { + "id": "meter-16978", + "maker": "Maker C", + "model": "Model 16978", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.53012180192115, + 25.193493198137475 + ] + }, + "properties": { + "id": "meter-16979", + "maker": "Maker I", + "model": "Model 16979", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.7449258882874, + 25.00165224481859 + ] + }, + "properties": { + "id": "meter-16980", + "maker": "Maker D", + "model": "Model 16980", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.66731634420896, + 21.32731776690658 + ] + }, + "properties": { + "id": "meter-16981", + "maker": "Maker H", + "model": "Model 16981", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.895367877214255, + 20.217221656637154 + ] + }, + "properties": { + "id": "meter-16982", + "maker": "Maker I", + "model": "Model 16982", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.284555928601435, + 22.347314289869658 + ] + }, + "properties": { + "id": "meter-16983", + "maker": "Maker C", + "model": "Model 16983", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.769616849765264, + 23.658426818133826 + ] + }, + "properties": { + "id": "meter-16984", + "maker": "Maker E", + "model": "Model 16984", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.78698862955542, + 29.548051580143078 + ] + }, + "properties": { + "id": "meter-16985", + "maker": "Maker D", + "model": "Model 16985", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.62335869097331, + 26.63849896337784 + ] + }, + "properties": { + "id": "meter-16986", + "maker": "Maker A", + "model": "Model 16986", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.87061062730667, + 21.261415864937945 + ] + }, + "properties": { + "id": "meter-16987", + "maker": "Maker G", + "model": "Model 16987", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.63083665533726, + 21.718365792076526 + ] + }, + "properties": { + "id": "meter-16988", + "maker": "Maker I", + "model": "Model 16988", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.026388761655454, + 20.205473264842983 + ] + }, + "properties": { + "id": "meter-16989", + "maker": "Maker A", + "model": "Model 16989", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.48480988090477, + 29.381620266998006 + ] + }, + "properties": { + "id": "meter-16990", + "maker": "Maker I", + "model": "Model 16990", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.476725968463754, + 20.44910110536121 + ] + }, + "properties": { + "id": "meter-16991", + "maker": "Maker G", + "model": "Model 16991", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.79995481232641, + 28.83182777441236 + ] + }, + "properties": { + "id": "meter-16992", + "maker": "Maker F", + "model": "Model 16992", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.514078887131916, + 22.65171044966594 + ] + }, + "properties": { + "id": "meter-16993", + "maker": "Maker G", + "model": "Model 16993", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.89151964388259, + 25.50056462437683 + ] + }, + "properties": { + "id": "meter-16994", + "maker": "Maker D", + "model": "Model 16994", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.193248111601235, + 26.239822999691224 + ] + }, + "properties": { + "id": "meter-16995", + "maker": "Maker F", + "model": "Model 16995", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.61362658698861, + 20.67624602335079 + ] + }, + "properties": { + "id": "meter-16996", + "maker": "Maker I", + "model": "Model 16996", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.7669682425888, + 20.994151408108788 + ] + }, + "properties": { + "id": "meter-16997", + "maker": "Maker E", + "model": "Model 16997", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.9254911991142, + 25.35829850014768 + ] + }, + "properties": { + "id": "meter-16998", + "maker": "Maker G", + "model": "Model 16998", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.18917509734196, + 24.461588630877184 + ] + }, + "properties": { + "id": "meter-16999", + "maker": "Maker D", + "model": "Model 16999", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.988732020136155, + 29.138584226460647 + ] + }, + "properties": { + "id": "meter-17000", + "maker": "Maker H", + "model": "Model 17000", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.441181445676705, + 27.233670789813903 + ] + }, + "properties": { + "id": "meter-17001", + "maker": "Maker H", + "model": "Model 17001", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.518261687068886, + 27.318919187692202 + ] + }, + "properties": { + "id": "meter-17002", + "maker": "Maker C", + "model": "Model 17002", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.59522698447752, + 23.566671722209776 + ] + }, + "properties": { + "id": "meter-17003", + "maker": "Maker H", + "model": "Model 17003", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51334039112585, + 29.089599462576352 + ] + }, + "properties": { + "id": "meter-17004", + "maker": "Maker D", + "model": "Model 17004", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.153528029263875, + 26.51839878846001 + ] + }, + "properties": { + "id": "meter-17005", + "maker": "Maker B", + "model": "Model 17005", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.66928474467864, + 23.10655654613672 + ] + }, + "properties": { + "id": "meter-17006", + "maker": "Maker G", + "model": "Model 17006", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.940346955430265, + 22.651192889223427 + ] + }, + "properties": { + "id": "meter-17007", + "maker": "Maker J", + "model": "Model 17007", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.39459606327816, + 19.366906531794303 + ] + }, + "properties": { + "id": "meter-17008", + "maker": "Maker A", + "model": "Model 17008", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69985597117605, + 21.770562702403513 + ] + }, + "properties": { + "id": "meter-17009", + "maker": "Maker G", + "model": "Model 17009", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.701278550548125, + 27.781701671091238 + ] + }, + "properties": { + "id": "meter-17010", + "maker": "Maker A", + "model": "Model 17010", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.33085140469242, + 21.898785487625734 + ] + }, + "properties": { + "id": "meter-17011", + "maker": "Maker A", + "model": "Model 17011", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.41809385482871, + 30.19314824319533 + ] + }, + "properties": { + "id": "meter-17012", + "maker": "Maker C", + "model": "Model 17012", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.962682976864876, + 27.297521631830815 + ] + }, + "properties": { + "id": "meter-17013", + "maker": "Maker A", + "model": "Model 17013", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.62301314852472, + 22.995400955188703 + ] + }, + "properties": { + "id": "meter-17014", + "maker": "Maker F", + "model": "Model 17014", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.52197772041016, + 27.38314456474573 + ] + }, + "properties": { + "id": "meter-17015", + "maker": "Maker J", + "model": "Model 17015", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.9218329713769, + 26.957065099669695 + ] + }, + "properties": { + "id": "meter-17016", + "maker": "Maker F", + "model": "Model 17016", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.157767176902546, + 29.49447712519454 + ] + }, + "properties": { + "id": "meter-17017", + "maker": "Maker J", + "model": "Model 17017", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.29642994471678, + 25.258646854314442 + ] + }, + "properties": { + "id": "meter-17018", + "maker": "Maker D", + "model": "Model 17018", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.846155735967635, + 27.463464072079738 + ] + }, + "properties": { + "id": "meter-17019", + "maker": "Maker I", + "model": "Model 17019", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.498877944383025, + 22.318657875853265 + ] + }, + "properties": { + "id": "meter-17020", + "maker": "Maker C", + "model": "Model 17020", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2742120084039, + 21.18112069663171 + ] + }, + "properties": { + "id": "meter-17021", + "maker": "Maker F", + "model": "Model 17021", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.476795018490115, + 23.852971829977466 + ] + }, + "properties": { + "id": "meter-17022", + "maker": "Maker D", + "model": "Model 17022", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.97548578773154, + 20.456775329608067 + ] + }, + "properties": { + "id": "meter-17023", + "maker": "Maker J", + "model": "Model 17023", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.482169375506246, + 22.18270361021093 + ] + }, + "properties": { + "id": "meter-17024", + "maker": "Maker E", + "model": "Model 17024", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.72390388875251, + 25.348864207180807 + ] + }, + "properties": { + "id": "meter-17025", + "maker": "Maker F", + "model": "Model 17025", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.24385379623531, + 18.733494089248953 + ] + }, + "properties": { + "id": "meter-17026", + "maker": "Maker J", + "model": "Model 17026", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.28529945601045, + 19.018414807452743 + ] + }, + "properties": { + "id": "meter-17027", + "maker": "Maker C", + "model": "Model 17027", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.42621427422144, + 17.14987769025446 + ] + }, + "properties": { + "id": "meter-17028", + "maker": "Maker I", + "model": "Model 17028", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.631322003603856, + 26.82078043691054 + ] + }, + "properties": { + "id": "meter-17029", + "maker": "Maker E", + "model": "Model 17029", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.230121399193344, + 25.349310837185712 + ] + }, + "properties": { + "id": "meter-17030", + "maker": "Maker D", + "model": "Model 17030", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.16383743994633, + 23.848227004069457 + ] + }, + "properties": { + "id": "meter-17031", + "maker": "Maker D", + "model": "Model 17031", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.714176365172506, + 29.002820750347606 + ] + }, + "properties": { + "id": "meter-17032", + "maker": "Maker A", + "model": "Model 17032", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.02303688129625, + 30.33167071786903 + ] + }, + "properties": { + "id": "meter-17033", + "maker": "Maker E", + "model": "Model 17033", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.63985438848165, + 19.46972450689723 + ] + }, + "properties": { + "id": "meter-17034", + "maker": "Maker G", + "model": "Model 17034", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.76497468556966, + 27.092119421329194 + ] + }, + "properties": { + "id": "meter-17035", + "maker": "Maker E", + "model": "Model 17035", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.689330114978894, + 26.200830886661183 + ] + }, + "properties": { + "id": "meter-17036", + "maker": "Maker E", + "model": "Model 17036", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.587494658666216, + 26.04944823703636 + ] + }, + "properties": { + "id": "meter-17037", + "maker": "Maker B", + "model": "Model 17037", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.28976936499922, + 21.289844922382905 + ] + }, + "properties": { + "id": "meter-17038", + "maker": "Maker I", + "model": "Model 17038", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.59761755798766, + 25.16359881970601 + ] + }, + "properties": { + "id": "meter-17039", + "maker": "Maker A", + "model": "Model 17039", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.5000732615723, + 19.266819682973875 + ] + }, + "properties": { + "id": "meter-17040", + "maker": "Maker A", + "model": "Model 17040", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45933787142307, + 25.648734408340985 + ] + }, + "properties": { + "id": "meter-17041", + "maker": "Maker I", + "model": "Model 17041", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.56553726632168, + 28.977133658553086 + ] + }, + "properties": { + "id": "meter-17042", + "maker": "Maker D", + "model": "Model 17042", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.29944537140356, + 25.68035996134779 + ] + }, + "properties": { + "id": "meter-17043", + "maker": "Maker I", + "model": "Model 17043", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.97058315191879, + 24.304774932102273 + ] + }, + "properties": { + "id": "meter-17044", + "maker": "Maker F", + "model": "Model 17044", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.53792490705034, + 24.68536279361995 + ] + }, + "properties": { + "id": "meter-17045", + "maker": "Maker C", + "model": "Model 17045", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.30450335454499, + 28.16378329395538 + ] + }, + "properties": { + "id": "meter-17046", + "maker": "Maker F", + "model": "Model 17046", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.43232292940209, + 20.933399301233752 + ] + }, + "properties": { + "id": "meter-17047", + "maker": "Maker F", + "model": "Model 17047", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.74126455267863, + 27.11763519967808 + ] + }, + "properties": { + "id": "meter-17048", + "maker": "Maker J", + "model": "Model 17048", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.4551592053496, + 29.06923076312561 + ] + }, + "properties": { + "id": "meter-17049", + "maker": "Maker D", + "model": "Model 17049", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.014968481574414, + 26.002499409735947 + ] + }, + "properties": { + "id": "meter-17050", + "maker": "Maker E", + "model": "Model 17050", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.416864693490716, + 26.65591786135598 + ] + }, + "properties": { + "id": "meter-17051", + "maker": "Maker H", + "model": "Model 17051", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.74879595958821, + 25.92778947376589 + ] + }, + "properties": { + "id": "meter-17052", + "maker": "Maker F", + "model": "Model 17052", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.92028522578276, + 26.343977925675794 + ] + }, + "properties": { + "id": "meter-17053", + "maker": "Maker A", + "model": "Model 17053", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.94125119718068, + 22.50139683390207 + ] + }, + "properties": { + "id": "meter-17054", + "maker": "Maker I", + "model": "Model 17054", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.351112834264526, + 26.31957655195318 + ] + }, + "properties": { + "id": "meter-17055", + "maker": "Maker G", + "model": "Model 17055", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.647783734666106, + 23.38049460200309 + ] + }, + "properties": { + "id": "meter-17056", + "maker": "Maker F", + "model": "Model 17056", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.47958448374336, + 23.518903220547678 + ] + }, + "properties": { + "id": "meter-17057", + "maker": "Maker I", + "model": "Model 17057", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.861203717373094, + 20.315674537028652 + ] + }, + "properties": { + "id": "meter-17058", + "maker": "Maker I", + "model": "Model 17058", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.78977028193869, + 31.483667717529244 + ] + }, + "properties": { + "id": "meter-17059", + "maker": "Maker B", + "model": "Model 17059", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.005640698046676, + 27.535543037671097 + ] + }, + "properties": { + "id": "meter-17060", + "maker": "Maker I", + "model": "Model 17060", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.772958024849835, + 29.12575578376819 + ] + }, + "properties": { + "id": "meter-17061", + "maker": "Maker B", + "model": "Model 17061", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.29835928108093, + 30.675314518067562 + ] + }, + "properties": { + "id": "meter-17062", + "maker": "Maker H", + "model": "Model 17062", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.785556671507614, + 18.631947163284817 + ] + }, + "properties": { + "id": "meter-17063", + "maker": "Maker C", + "model": "Model 17063", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.577790977202426, + 18.951851221438197 + ] + }, + "properties": { + "id": "meter-17064", + "maker": "Maker H", + "model": "Model 17064", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.366976418706216, + 19.603288049645684 + ] + }, + "properties": { + "id": "meter-17065", + "maker": "Maker B", + "model": "Model 17065", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.32844030327373, + 26.577161353039315 + ] + }, + "properties": { + "id": "meter-17066", + "maker": "Maker J", + "model": "Model 17066", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.53233386183737, + 30.554287990275263 + ] + }, + "properties": { + "id": "meter-17067", + "maker": "Maker E", + "model": "Model 17067", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.907769562134916, + 29.0007982385905 + ] + }, + "properties": { + "id": "meter-17068", + "maker": "Maker I", + "model": "Model 17068", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.8700992881687, + 21.726345897015335 + ] + }, + "properties": { + "id": "meter-17069", + "maker": "Maker F", + "model": "Model 17069", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.852712141108896, + 20.94170711877775 + ] + }, + "properties": { + "id": "meter-17070", + "maker": "Maker E", + "model": "Model 17070", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.726240103322205, + 29.236698318668775 + ] + }, + "properties": { + "id": "meter-17071", + "maker": "Maker I", + "model": "Model 17071", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.815641644683964, + 27.58672942849948 + ] + }, + "properties": { + "id": "meter-17072", + "maker": "Maker I", + "model": "Model 17072", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.72854192294344, + 27.16038030189945 + ] + }, + "properties": { + "id": "meter-17073", + "maker": "Maker I", + "model": "Model 17073", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.73261262951918, + 23.87765970124504 + ] + }, + "properties": { + "id": "meter-17074", + "maker": "Maker F", + "model": "Model 17074", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.39588183474035, + 24.672661772275564 + ] + }, + "properties": { + "id": "meter-17075", + "maker": "Maker D", + "model": "Model 17075", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.98186988673822, + 26.14165364722137 + ] + }, + "properties": { + "id": "meter-17076", + "maker": "Maker C", + "model": "Model 17076", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.45163321352619, + 22.19474094202482 + ] + }, + "properties": { + "id": "meter-17077", + "maker": "Maker J", + "model": "Model 17077", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.1285433463366, + 17.01858499875291 + ] + }, + "properties": { + "id": "meter-17078", + "maker": "Maker B", + "model": "Model 17078", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.4266438252721, + 27.09124828728457 + ] + }, + "properties": { + "id": "meter-17079", + "maker": "Maker F", + "model": "Model 17079", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.36443155379331, + 23.212222980917012 + ] + }, + "properties": { + "id": "meter-17080", + "maker": "Maker I", + "model": "Model 17080", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.32622152581776, + 30.5183909470707 + ] + }, + "properties": { + "id": "meter-17081", + "maker": "Maker H", + "model": "Model 17081", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.06576741517503, + 27.872376784218524 + ] + }, + "properties": { + "id": "meter-17082", + "maker": "Maker F", + "model": "Model 17082", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.364605879889, + 28.563791908303937 + ] + }, + "properties": { + "id": "meter-17083", + "maker": "Maker G", + "model": "Model 17083", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.961013674387544, + 25.14695387816396 + ] + }, + "properties": { + "id": "meter-17084", + "maker": "Maker B", + "model": "Model 17084", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.4743472023455, + 24.5277873360977 + ] + }, + "properties": { + "id": "meter-17085", + "maker": "Maker C", + "model": "Model 17085", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.56627130972937, + 26.279993185993206 + ] + }, + "properties": { + "id": "meter-17086", + "maker": "Maker B", + "model": "Model 17086", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.3340960718895, + 31.40239626872357 + ] + }, + "properties": { + "id": "meter-17087", + "maker": "Maker B", + "model": "Model 17087", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.05585069785142, + 19.735027704302237 + ] + }, + "properties": { + "id": "meter-17088", + "maker": "Maker D", + "model": "Model 17088", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.90203750231261, + 26.345401587784963 + ] + }, + "properties": { + "id": "meter-17089", + "maker": "Maker H", + "model": "Model 17089", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.95083552904205, + 22.364380989693707 + ] + }, + "properties": { + "id": "meter-17090", + "maker": "Maker G", + "model": "Model 17090", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.267121871114526, + 21.173040268708938 + ] + }, + "properties": { + "id": "meter-17091", + "maker": "Maker C", + "model": "Model 17091", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.3648274499173, + 17.368153884056216 + ] + }, + "properties": { + "id": "meter-17092", + "maker": "Maker J", + "model": "Model 17092", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03292111151573, + 21.0613011842946 + ] + }, + "properties": { + "id": "meter-17093", + "maker": "Maker J", + "model": "Model 17093", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.35853716584782, + 28.42380994747485 + ] + }, + "properties": { + "id": "meter-17094", + "maker": "Maker C", + "model": "Model 17094", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.30360742143422, + 19.68601902747751 + ] + }, + "properties": { + "id": "meter-17095", + "maker": "Maker I", + "model": "Model 17095", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.10413692047518, + 24.93303975480456 + ] + }, + "properties": { + "id": "meter-17096", + "maker": "Maker E", + "model": "Model 17096", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.1662918107161, + 22.353049581473684 + ] + }, + "properties": { + "id": "meter-17097", + "maker": "Maker A", + "model": "Model 17097", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.028722288978074, + 26.516731767520085 + ] + }, + "properties": { + "id": "meter-17098", + "maker": "Maker A", + "model": "Model 17098", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.71862836932988, + 23.836791802750774 + ] + }, + "properties": { + "id": "meter-17099", + "maker": "Maker D", + "model": "Model 17099", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.62144561640403, + 22.3085985021593 + ] + }, + "properties": { + "id": "meter-17100", + "maker": "Maker E", + "model": "Model 17100", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.96299715219674, + 19.375339311564293 + ] + }, + "properties": { + "id": "meter-17101", + "maker": "Maker B", + "model": "Model 17101", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.171028535349535, + 20.506109497414734 + ] + }, + "properties": { + "id": "meter-17102", + "maker": "Maker E", + "model": "Model 17102", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.037491402092286, + 22.078473604268357 + ] + }, + "properties": { + "id": "meter-17103", + "maker": "Maker D", + "model": "Model 17103", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.0711785406402, + 31.383749476932806 + ] + }, + "properties": { + "id": "meter-17104", + "maker": "Maker H", + "model": "Model 17104", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.32492063848468, + 28.231056681166375 + ] + }, + "properties": { + "id": "meter-17105", + "maker": "Maker D", + "model": "Model 17105", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.79338819058381, + 24.22089030390188 + ] + }, + "properties": { + "id": "meter-17106", + "maker": "Maker D", + "model": "Model 17106", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.70431026641046, + 19.814555969950835 + ] + }, + "properties": { + "id": "meter-17107", + "maker": "Maker C", + "model": "Model 17107", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.85581253169461, + 29.4080357441995 + ] + }, + "properties": { + "id": "meter-17108", + "maker": "Maker F", + "model": "Model 17108", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.3595133568587, + 21.863085116645458 + ] + }, + "properties": { + "id": "meter-17109", + "maker": "Maker G", + "model": "Model 17109", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.53856003732129, + 23.129523988272155 + ] + }, + "properties": { + "id": "meter-17110", + "maker": "Maker I", + "model": "Model 17110", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63547201064496, + 27.803416433933045 + ] + }, + "properties": { + "id": "meter-17111", + "maker": "Maker H", + "model": "Model 17111", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63707490505934, + 23.801535360280948 + ] + }, + "properties": { + "id": "meter-17112", + "maker": "Maker C", + "model": "Model 17112", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.32917051341051, + 26.485299635573302 + ] + }, + "properties": { + "id": "meter-17113", + "maker": "Maker D", + "model": "Model 17113", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.205100372801326, + 20.326904660321116 + ] + }, + "properties": { + "id": "meter-17114", + "maker": "Maker J", + "model": "Model 17114", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.31321659797388, + 22.114174837873897 + ] + }, + "properties": { + "id": "meter-17115", + "maker": "Maker D", + "model": "Model 17115", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.16866988037231, + 26.99418820811006 + ] + }, + "properties": { + "id": "meter-17116", + "maker": "Maker A", + "model": "Model 17116", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.22266760590617, + 28.20295735250161 + ] + }, + "properties": { + "id": "meter-17117", + "maker": "Maker F", + "model": "Model 17117", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.70328793346117, + 28.648710203181583 + ] + }, + "properties": { + "id": "meter-17118", + "maker": "Maker H", + "model": "Model 17118", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.66191769139163, + 26.501739447879473 + ] + }, + "properties": { + "id": "meter-17119", + "maker": "Maker A", + "model": "Model 17119", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.00466680527876, + 23.2851260732118 + ] + }, + "properties": { + "id": "meter-17120", + "maker": "Maker B", + "model": "Model 17120", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.44112305667703, + 27.298022074320123 + ] + }, + "properties": { + "id": "meter-17121", + "maker": "Maker I", + "model": "Model 17121", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.849137516378626, + 21.694161028771788 + ] + }, + "properties": { + "id": "meter-17122", + "maker": "Maker D", + "model": "Model 17122", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.58338584315433, + 20.743736763106185 + ] + }, + "properties": { + "id": "meter-17123", + "maker": "Maker C", + "model": "Model 17123", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.90873944202319, + 23.17679676376138 + ] + }, + "properties": { + "id": "meter-17124", + "maker": "Maker H", + "model": "Model 17124", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47038387824104, + 19.545832667733812 + ] + }, + "properties": { + "id": "meter-17125", + "maker": "Maker D", + "model": "Model 17125", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.061971254285176, + 30.794616573715814 + ] + }, + "properties": { + "id": "meter-17126", + "maker": "Maker H", + "model": "Model 17126", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.4145001152199, + 20.399645401762246 + ] + }, + "properties": { + "id": "meter-17127", + "maker": "Maker I", + "model": "Model 17127", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.0207874868965, + 19.87667512304925 + ] + }, + "properties": { + "id": "meter-17128", + "maker": "Maker J", + "model": "Model 17128", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.50690512052209, + 27.813394015266397 + ] + }, + "properties": { + "id": "meter-17129", + "maker": "Maker I", + "model": "Model 17129", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.81681777793272, + 22.21232287835425 + ] + }, + "properties": { + "id": "meter-17130", + "maker": "Maker C", + "model": "Model 17130", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.61158035019953, + 24.39635787398692 + ] + }, + "properties": { + "id": "meter-17131", + "maker": "Maker E", + "model": "Model 17131", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.06358771816855, + 22.490179786465855 + ] + }, + "properties": { + "id": "meter-17132", + "maker": "Maker C", + "model": "Model 17132", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.48433947896356, + 21.816614433677948 + ] + }, + "properties": { + "id": "meter-17133", + "maker": "Maker D", + "model": "Model 17133", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.86620728626291, + 18.36184404652922 + ] + }, + "properties": { + "id": "meter-17134", + "maker": "Maker G", + "model": "Model 17134", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.58936058146587, + 25.954633432169956 + ] + }, + "properties": { + "id": "meter-17135", + "maker": "Maker B", + "model": "Model 17135", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.75336773732679, + 19.556534710159582 + ] + }, + "properties": { + "id": "meter-17136", + "maker": "Maker F", + "model": "Model 17136", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.17693029197579, + 22.27448501651502 + ] + }, + "properties": { + "id": "meter-17137", + "maker": "Maker H", + "model": "Model 17137", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.45305649484272, + 28.203264962047278 + ] + }, + "properties": { + "id": "meter-17138", + "maker": "Maker C", + "model": "Model 17138", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.82885204867584, + 26.104878855470083 + ] + }, + "properties": { + "id": "meter-17139", + "maker": "Maker E", + "model": "Model 17139", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.51235574049948, + 31.686207133508113 + ] + }, + "properties": { + "id": "meter-17140", + "maker": "Maker F", + "model": "Model 17140", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.171602380657426, + 27.640149950839156 + ] + }, + "properties": { + "id": "meter-17141", + "maker": "Maker I", + "model": "Model 17141", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.524525417533, + 18.99932093672554 + ] + }, + "properties": { + "id": "meter-17142", + "maker": "Maker H", + "model": "Model 17142", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.034318917557435, + 21.77165513675383 + ] + }, + "properties": { + "id": "meter-17143", + "maker": "Maker E", + "model": "Model 17143", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.53256532930826, + 26.886423280805833 + ] + }, + "properties": { + "id": "meter-17144", + "maker": "Maker A", + "model": "Model 17144", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.396920759114565, + 20.448772057194518 + ] + }, + "properties": { + "id": "meter-17145", + "maker": "Maker C", + "model": "Model 17145", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.11465534907616, + 24.20421160352102 + ] + }, + "properties": { + "id": "meter-17146", + "maker": "Maker B", + "model": "Model 17146", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.69190383610449, + 25.137143063563443 + ] + }, + "properties": { + "id": "meter-17147", + "maker": "Maker J", + "model": "Model 17147", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.256756364430245, + 23.609721306915134 + ] + }, + "properties": { + "id": "meter-17148", + "maker": "Maker J", + "model": "Model 17148", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.83703349466595, + 21.655839991858855 + ] + }, + "properties": { + "id": "meter-17149", + "maker": "Maker A", + "model": "Model 17149", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.04436648104666, + 23.572687096076347 + ] + }, + "properties": { + "id": "meter-17150", + "maker": "Maker I", + "model": "Model 17150", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.90689440693844, + 24.210778706807478 + ] + }, + "properties": { + "id": "meter-17151", + "maker": "Maker G", + "model": "Model 17151", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.749885721967104, + 20.345156477888644 + ] + }, + "properties": { + "id": "meter-17152", + "maker": "Maker F", + "model": "Model 17152", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.538315518075876, + 17.503598542012384 + ] + }, + "properties": { + "id": "meter-17153", + "maker": "Maker I", + "model": "Model 17153", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.529002064535945, + 25.20174280636933 + ] + }, + "properties": { + "id": "meter-17154", + "maker": "Maker H", + "model": "Model 17154", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.94824389388126, + 28.922063938445763 + ] + }, + "properties": { + "id": "meter-17155", + "maker": "Maker B", + "model": "Model 17155", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.352788856110735, + 21.28545431589782 + ] + }, + "properties": { + "id": "meter-17156", + "maker": "Maker H", + "model": "Model 17156", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.12588933232824, + 28.178361920310863 + ] + }, + "properties": { + "id": "meter-17157", + "maker": "Maker A", + "model": "Model 17157", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.24679518090627, + 22.776957545060945 + ] + }, + "properties": { + "id": "meter-17158", + "maker": "Maker D", + "model": "Model 17158", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.629200523752445, + 18.783151479459214 + ] + }, + "properties": { + "id": "meter-17159", + "maker": "Maker B", + "model": "Model 17159", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.0620034967638, + 29.070844575139006 + ] + }, + "properties": { + "id": "meter-17160", + "maker": "Maker I", + "model": "Model 17160", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.807795118741026, + 28.715079250868662 + ] + }, + "properties": { + "id": "meter-17161", + "maker": "Maker I", + "model": "Model 17161", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.717392446931626, + 18.87832900543792 + ] + }, + "properties": { + "id": "meter-17162", + "maker": "Maker B", + "model": "Model 17162", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.45247770938798, + 27.863080053352274 + ] + }, + "properties": { + "id": "meter-17163", + "maker": "Maker A", + "model": "Model 17163", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.9272365696111, + 29.025708311726714 + ] + }, + "properties": { + "id": "meter-17164", + "maker": "Maker H", + "model": "Model 17164", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.93942271841874, + 23.165811239794913 + ] + }, + "properties": { + "id": "meter-17165", + "maker": "Maker H", + "model": "Model 17165", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.37772898060369, + 22.68548896502188 + ] + }, + "properties": { + "id": "meter-17166", + "maker": "Maker J", + "model": "Model 17166", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.180779974777764, + 21.88784027581032 + ] + }, + "properties": { + "id": "meter-17167", + "maker": "Maker J", + "model": "Model 17167", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.83411808018242, + 26.697347680216218 + ] + }, + "properties": { + "id": "meter-17168", + "maker": "Maker C", + "model": "Model 17168", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.77730390022473, + 26.210929131016798 + ] + }, + "properties": { + "id": "meter-17169", + "maker": "Maker D", + "model": "Model 17169", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.875350556750355, + 26.227511976462033 + ] + }, + "properties": { + "id": "meter-17170", + "maker": "Maker E", + "model": "Model 17170", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.00516429385618, + 19.48511840784434 + ] + }, + "properties": { + "id": "meter-17171", + "maker": "Maker J", + "model": "Model 17171", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.445891233345776, + 26.345819111724957 + ] + }, + "properties": { + "id": "meter-17172", + "maker": "Maker I", + "model": "Model 17172", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.778883817905204, + 21.037603068675804 + ] + }, + "properties": { + "id": "meter-17173", + "maker": "Maker B", + "model": "Model 17173", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.5640676665849, + 27.04271889443465 + ] + }, + "properties": { + "id": "meter-17174", + "maker": "Maker E", + "model": "Model 17174", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.29595893099395, + 19.739229119902923 + ] + }, + "properties": { + "id": "meter-17175", + "maker": "Maker G", + "model": "Model 17175", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.93252377739152, + 27.847814310045116 + ] + }, + "properties": { + "id": "meter-17176", + "maker": "Maker H", + "model": "Model 17176", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.76110811882809, + 17.92394186799827 + ] + }, + "properties": { + "id": "meter-17177", + "maker": "Maker G", + "model": "Model 17177", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.21263307226735, + 22.566056055736418 + ] + }, + "properties": { + "id": "meter-17178", + "maker": "Maker E", + "model": "Model 17178", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.433962032726896, + 22.23511008021063 + ] + }, + "properties": { + "id": "meter-17179", + "maker": "Maker J", + "model": "Model 17179", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.7185108437076, + 21.127296283738247 + ] + }, + "properties": { + "id": "meter-17180", + "maker": "Maker C", + "model": "Model 17180", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.971472239039926, + 31.002303910158805 + ] + }, + "properties": { + "id": "meter-17181", + "maker": "Maker A", + "model": "Model 17181", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.24702450858165, + 17.155773264636945 + ] + }, + "properties": { + "id": "meter-17182", + "maker": "Maker F", + "model": "Model 17182", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.176387403552766, + 29.759087486071458 + ] + }, + "properties": { + "id": "meter-17183", + "maker": "Maker I", + "model": "Model 17183", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.40432747439855, + 21.256519541909277 + ] + }, + "properties": { + "id": "meter-17184", + "maker": "Maker G", + "model": "Model 17184", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.36279885191418, + 23.505260651894975 + ] + }, + "properties": { + "id": "meter-17185", + "maker": "Maker J", + "model": "Model 17185", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.31677166242999, + 28.388787076337827 + ] + }, + "properties": { + "id": "meter-17186", + "maker": "Maker I", + "model": "Model 17186", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.00884113555721, + 30.64830800815035 + ] + }, + "properties": { + "id": "meter-17187", + "maker": "Maker I", + "model": "Model 17187", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.608650813951265, + 22.222909971704574 + ] + }, + "properties": { + "id": "meter-17188", + "maker": "Maker F", + "model": "Model 17188", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.7103332930559, + 23.956287060103467 + ] + }, + "properties": { + "id": "meter-17189", + "maker": "Maker F", + "model": "Model 17189", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.39088181812828, + 19.23558580307438 + ] + }, + "properties": { + "id": "meter-17190", + "maker": "Maker J", + "model": "Model 17190", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.976825241746226, + 19.431741458773278 + ] + }, + "properties": { + "id": "meter-17191", + "maker": "Maker E", + "model": "Model 17191", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.55825727101269, + 27.43901961328089 + ] + }, + "properties": { + "id": "meter-17192", + "maker": "Maker D", + "model": "Model 17192", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.539217153592276, + 29.277223303941888 + ] + }, + "properties": { + "id": "meter-17193", + "maker": "Maker D", + "model": "Model 17193", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.65312262534882, + 27.944862392757948 + ] + }, + "properties": { + "id": "meter-17194", + "maker": "Maker D", + "model": "Model 17194", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.667082201011965, + 18.80549101228263 + ] + }, + "properties": { + "id": "meter-17195", + "maker": "Maker C", + "model": "Model 17195", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.086000682610866, + 22.85266565620287 + ] + }, + "properties": { + "id": "meter-17196", + "maker": "Maker A", + "model": "Model 17196", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.803479433458214, + 20.559015502277507 + ] + }, + "properties": { + "id": "meter-17197", + "maker": "Maker J", + "model": "Model 17197", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.208265903680285, + 26.99463245566576 + ] + }, + "properties": { + "id": "meter-17198", + "maker": "Maker H", + "model": "Model 17198", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.17822499261814, + 22.59401054114577 + ] + }, + "properties": { + "id": "meter-17199", + "maker": "Maker G", + "model": "Model 17199", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.90860497152724, + 26.740002623095574 + ] + }, + "properties": { + "id": "meter-17200", + "maker": "Maker F", + "model": "Model 17200", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.63800166703063, + 19.777994265127003 + ] + }, + "properties": { + "id": "meter-17201", + "maker": "Maker E", + "model": "Model 17201", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.586052649538274, + 17.5717639719511 + ] + }, + "properties": { + "id": "meter-17202", + "maker": "Maker B", + "model": "Model 17202", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.518146224369076, + 27.92043358995933 + ] + }, + "properties": { + "id": "meter-17203", + "maker": "Maker G", + "model": "Model 17203", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.960791691227726, + 26.85638604481274 + ] + }, + "properties": { + "id": "meter-17204", + "maker": "Maker G", + "model": "Model 17204", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.672003638729144, + 30.014158425883185 + ] + }, + "properties": { + "id": "meter-17205", + "maker": "Maker A", + "model": "Model 17205", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.52261480373427, + 25.531601518688788 + ] + }, + "properties": { + "id": "meter-17206", + "maker": "Maker E", + "model": "Model 17206", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.33534795192942, + 22.250540456264734 + ] + }, + "properties": { + "id": "meter-17207", + "maker": "Maker D", + "model": "Model 17207", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.06719803302609, + 23.65419959123173 + ] + }, + "properties": { + "id": "meter-17208", + "maker": "Maker D", + "model": "Model 17208", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.667970800520074, + 21.617784682319844 + ] + }, + "properties": { + "id": "meter-17209", + "maker": "Maker I", + "model": "Model 17209", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94910960406855, + 23.507877817994988 + ] + }, + "properties": { + "id": "meter-17210", + "maker": "Maker D", + "model": "Model 17210", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.80880442995698, + 22.534473035175225 + ] + }, + "properties": { + "id": "meter-17211", + "maker": "Maker F", + "model": "Model 17211", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.727248273966026, + 26.990821791980416 + ] + }, + "properties": { + "id": "meter-17212", + "maker": "Maker A", + "model": "Model 17212", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.253012746059966, + 19.561067560419495 + ] + }, + "properties": { + "id": "meter-17213", + "maker": "Maker A", + "model": "Model 17213", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.33361973436435, + 25.12325448013626 + ] + }, + "properties": { + "id": "meter-17214", + "maker": "Maker J", + "model": "Model 17214", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.64248278963234, + 22.3358921193381 + ] + }, + "properties": { + "id": "meter-17215", + "maker": "Maker H", + "model": "Model 17215", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.01967376288753, + 25.12395661263509 + ] + }, + "properties": { + "id": "meter-17216", + "maker": "Maker J", + "model": "Model 17216", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.000477443923195, + 26.331983511397315 + ] + }, + "properties": { + "id": "meter-17217", + "maker": "Maker H", + "model": "Model 17217", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.833766897582144, + 17.9794312358827 + ] + }, + "properties": { + "id": "meter-17218", + "maker": "Maker A", + "model": "Model 17218", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.900792327245426, + 20.851899028459393 + ] + }, + "properties": { + "id": "meter-17219", + "maker": "Maker D", + "model": "Model 17219", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.62433840724515, + 20.52913145660404 + ] + }, + "properties": { + "id": "meter-17220", + "maker": "Maker H", + "model": "Model 17220", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.94114069214619, + 25.488968909835087 + ] + }, + "properties": { + "id": "meter-17221", + "maker": "Maker J", + "model": "Model 17221", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.89230277443074, + 27.104156897225995 + ] + }, + "properties": { + "id": "meter-17222", + "maker": "Maker H", + "model": "Model 17222", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.6960910949559, + 28.32362849486423 + ] + }, + "properties": { + "id": "meter-17223", + "maker": "Maker H", + "model": "Model 17223", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.04586651479097, + 19.91909540117763 + ] + }, + "properties": { + "id": "meter-17224", + "maker": "Maker B", + "model": "Model 17224", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.87947045755723, + 19.170732632562554 + ] + }, + "properties": { + "id": "meter-17225", + "maker": "Maker B", + "model": "Model 17225", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.175550465862564, + 26.507244871206694 + ] + }, + "properties": { + "id": "meter-17226", + "maker": "Maker I", + "model": "Model 17226", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.879113976732825, + 19.220076433344534 + ] + }, + "properties": { + "id": "meter-17227", + "maker": "Maker B", + "model": "Model 17227", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.743675638875736, + 26.816021233975114 + ] + }, + "properties": { + "id": "meter-17228", + "maker": "Maker H", + "model": "Model 17228", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.02427413548061, + 25.607281925858082 + ] + }, + "properties": { + "id": "meter-17229", + "maker": "Maker B", + "model": "Model 17229", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.131830434600126, + 18.662707782269074 + ] + }, + "properties": { + "id": "meter-17230", + "maker": "Maker D", + "model": "Model 17230", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.10690392949427, + 30.925321360197774 + ] + }, + "properties": { + "id": "meter-17231", + "maker": "Maker I", + "model": "Model 17231", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.55818349894237, + 26.173580863008258 + ] + }, + "properties": { + "id": "meter-17232", + "maker": "Maker A", + "model": "Model 17232", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.10462792411572, + 23.28099378930741 + ] + }, + "properties": { + "id": "meter-17233", + "maker": "Maker B", + "model": "Model 17233", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.29997474694257, + 23.123548471814082 + ] + }, + "properties": { + "id": "meter-17234", + "maker": "Maker J", + "model": "Model 17234", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.129734332011026, + 23.706858177914008 + ] + }, + "properties": { + "id": "meter-17235", + "maker": "Maker D", + "model": "Model 17235", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.60748044173909, + 26.11672585785835 + ] + }, + "properties": { + "id": "meter-17236", + "maker": "Maker E", + "model": "Model 17236", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89535811823545, + 28.68304195147019 + ] + }, + "properties": { + "id": "meter-17237", + "maker": "Maker F", + "model": "Model 17237", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.29150123699717, + 24.698577235979748 + ] + }, + "properties": { + "id": "meter-17238", + "maker": "Maker E", + "model": "Model 17238", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.657697206457456, + 18.986331871231663 + ] + }, + "properties": { + "id": "meter-17239", + "maker": "Maker D", + "model": "Model 17239", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.24498623632782, + 27.672001247929636 + ] + }, + "properties": { + "id": "meter-17240", + "maker": "Maker D", + "model": "Model 17240", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.72773207858147, + 22.819871534301875 + ] + }, + "properties": { + "id": "meter-17241", + "maker": "Maker A", + "model": "Model 17241", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.748007984265435, + 26.931284629371476 + ] + }, + "properties": { + "id": "meter-17242", + "maker": "Maker G", + "model": "Model 17242", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.485812659303406, + 28.053938612716188 + ] + }, + "properties": { + "id": "meter-17243", + "maker": "Maker F", + "model": "Model 17243", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.891676661045786, + 21.48141240398568 + ] + }, + "properties": { + "id": "meter-17244", + "maker": "Maker E", + "model": "Model 17244", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46025923736395, + 18.80468413317892 + ] + }, + "properties": { + "id": "meter-17245", + "maker": "Maker D", + "model": "Model 17245", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.56859828734599, + 26.736797828146813 + ] + }, + "properties": { + "id": "meter-17246", + "maker": "Maker G", + "model": "Model 17246", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.249846620349295, + 26.866400578552664 + ] + }, + "properties": { + "id": "meter-17247", + "maker": "Maker G", + "model": "Model 17247", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.7133240062768, + 21.73905231815533 + ] + }, + "properties": { + "id": "meter-17248", + "maker": "Maker E", + "model": "Model 17248", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.36728093284445, + 25.98028306225404 + ] + }, + "properties": { + "id": "meter-17249", + "maker": "Maker F", + "model": "Model 17249", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.83751975843889, + 21.826927342250706 + ] + }, + "properties": { + "id": "meter-17250", + "maker": "Maker C", + "model": "Model 17250", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.933691816616395, + 22.820858398202983 + ] + }, + "properties": { + "id": "meter-17251", + "maker": "Maker I", + "model": "Model 17251", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.144863077374254, + 26.96064273634382 + ] + }, + "properties": { + "id": "meter-17252", + "maker": "Maker H", + "model": "Model 17252", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.86026571097364, + 25.260262167199308 + ] + }, + "properties": { + "id": "meter-17253", + "maker": "Maker F", + "model": "Model 17253", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.86382291063801, + 21.327909341942508 + ] + }, + "properties": { + "id": "meter-17254", + "maker": "Maker D", + "model": "Model 17254", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.778401506412976, + 23.773047483345316 + ] + }, + "properties": { + "id": "meter-17255", + "maker": "Maker J", + "model": "Model 17255", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.615241269365434, + 19.768553839363758 + ] + }, + "properties": { + "id": "meter-17256", + "maker": "Maker D", + "model": "Model 17256", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.060534600753336, + 25.078803423743075 + ] + }, + "properties": { + "id": "meter-17257", + "maker": "Maker D", + "model": "Model 17257", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.313510073610246, + 20.3888922997492 + ] + }, + "properties": { + "id": "meter-17258", + "maker": "Maker F", + "model": "Model 17258", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.27253778576679, + 22.75866930761434 + ] + }, + "properties": { + "id": "meter-17259", + "maker": "Maker D", + "model": "Model 17259", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.16198363843119, + 24.43445859271759 + ] + }, + "properties": { + "id": "meter-17260", + "maker": "Maker B", + "model": "Model 17260", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.93678222475756, + 19.928425675953875 + ] + }, + "properties": { + "id": "meter-17261", + "maker": "Maker H", + "model": "Model 17261", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.24924266894683, + 25.278737296671927 + ] + }, + "properties": { + "id": "meter-17262", + "maker": "Maker D", + "model": "Model 17262", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.61839624380063, + 23.009402847416915 + ] + }, + "properties": { + "id": "meter-17263", + "maker": "Maker G", + "model": "Model 17263", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.24314415169148, + 22.214390201355776 + ] + }, + "properties": { + "id": "meter-17264", + "maker": "Maker F", + "model": "Model 17264", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.8540550953062, + 22.012400207587735 + ] + }, + "properties": { + "id": "meter-17265", + "maker": "Maker G", + "model": "Model 17265", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.34066972155559, + 20.23206917813044 + ] + }, + "properties": { + "id": "meter-17266", + "maker": "Maker F", + "model": "Model 17266", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.793294897113206, + 26.215054912318884 + ] + }, + "properties": { + "id": "meter-17267", + "maker": "Maker G", + "model": "Model 17267", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.72065880395278, + 22.226500996327097 + ] + }, + "properties": { + "id": "meter-17268", + "maker": "Maker B", + "model": "Model 17268", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.124710562033584, + 29.034352364401492 + ] + }, + "properties": { + "id": "meter-17269", + "maker": "Maker A", + "model": "Model 17269", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.66890914684352, + 23.249848515745285 + ] + }, + "properties": { + "id": "meter-17270", + "maker": "Maker A", + "model": "Model 17270", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.02333232566324, + 27.208428280478074 + ] + }, + "properties": { + "id": "meter-17271", + "maker": "Maker E", + "model": "Model 17271", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.59863139700942, + 19.415885032612593 + ] + }, + "properties": { + "id": "meter-17272", + "maker": "Maker B", + "model": "Model 17272", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.30833231430377, + 20.308437132680787 + ] + }, + "properties": { + "id": "meter-17273", + "maker": "Maker A", + "model": "Model 17273", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.4487282902611, + 19.584133806911684 + ] + }, + "properties": { + "id": "meter-17274", + "maker": "Maker H", + "model": "Model 17274", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.73896202541497, + 23.49332972877148 + ] + }, + "properties": { + "id": "meter-17275", + "maker": "Maker A", + "model": "Model 17275", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.02972183495358, + 17.198376707522435 + ] + }, + "properties": { + "id": "meter-17276", + "maker": "Maker F", + "model": "Model 17276", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.454762705900144, + 26.46888281164527 + ] + }, + "properties": { + "id": "meter-17277", + "maker": "Maker A", + "model": "Model 17277", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.543366374285796, + 23.83410938628312 + ] + }, + "properties": { + "id": "meter-17278", + "maker": "Maker D", + "model": "Model 17278", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.669706857240996, + 29.927013487203766 + ] + }, + "properties": { + "id": "meter-17279", + "maker": "Maker D", + "model": "Model 17279", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.87924815763258, + 22.59259758441782 + ] + }, + "properties": { + "id": "meter-17280", + "maker": "Maker F", + "model": "Model 17280", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.438470452004026, + 25.09318793802874 + ] + }, + "properties": { + "id": "meter-17281", + "maker": "Maker A", + "model": "Model 17281", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.318331868349254, + 22.616518094257493 + ] + }, + "properties": { + "id": "meter-17282", + "maker": "Maker H", + "model": "Model 17282", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.990624846811265, + 19.75303366323331 + ] + }, + "properties": { + "id": "meter-17283", + "maker": "Maker C", + "model": "Model 17283", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.178976584637454, + 24.56942886426233 + ] + }, + "properties": { + "id": "meter-17284", + "maker": "Maker B", + "model": "Model 17284", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.105327075121366, + 27.45447041807899 + ] + }, + "properties": { + "id": "meter-17285", + "maker": "Maker H", + "model": "Model 17285", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.9227189064183, + 27.540292606145286 + ] + }, + "properties": { + "id": "meter-17286", + "maker": "Maker J", + "model": "Model 17286", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.712253765073335, + 22.355567404875515 + ] + }, + "properties": { + "id": "meter-17287", + "maker": "Maker C", + "model": "Model 17287", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.39616454534756, + 28.79825647463643 + ] + }, + "properties": { + "id": "meter-17288", + "maker": "Maker G", + "model": "Model 17288", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.033560828127634, + 25.350133575298155 + ] + }, + "properties": { + "id": "meter-17289", + "maker": "Maker C", + "model": "Model 17289", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.27559673916869, + 22.723277865327542 + ] + }, + "properties": { + "id": "meter-17290", + "maker": "Maker B", + "model": "Model 17290", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.91715644719771, + 19.38192944073188 + ] + }, + "properties": { + "id": "meter-17291", + "maker": "Maker J", + "model": "Model 17291", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.322093765005036, + 25.4384949072224 + ] + }, + "properties": { + "id": "meter-17292", + "maker": "Maker I", + "model": "Model 17292", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.29738015588296, + 20.37538504285609 + ] + }, + "properties": { + "id": "meter-17293", + "maker": "Maker J", + "model": "Model 17293", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.81546456526989, + 28.115752217144177 + ] + }, + "properties": { + "id": "meter-17294", + "maker": "Maker J", + "model": "Model 17294", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.09769950730442, + 18.003448843893594 + ] + }, + "properties": { + "id": "meter-17295", + "maker": "Maker J", + "model": "Model 17295", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.61906933998994, + 23.930630940888236 + ] + }, + "properties": { + "id": "meter-17296", + "maker": "Maker H", + "model": "Model 17296", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.16466743310281, + 27.376863773445454 + ] + }, + "properties": { + "id": "meter-17297", + "maker": "Maker F", + "model": "Model 17297", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.66300384428022, + 21.654410445018435 + ] + }, + "properties": { + "id": "meter-17298", + "maker": "Maker C", + "model": "Model 17298", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.87977781829428, + 20.450131081410568 + ] + }, + "properties": { + "id": "meter-17299", + "maker": "Maker F", + "model": "Model 17299", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.22922474917422, + 24.37855767275742 + ] + }, + "properties": { + "id": "meter-17300", + "maker": "Maker D", + "model": "Model 17300", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.19774647939977, + 24.18436255969936 + ] + }, + "properties": { + "id": "meter-17301", + "maker": "Maker E", + "model": "Model 17301", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.69654600975528, + 22.297377779908423 + ] + }, + "properties": { + "id": "meter-17302", + "maker": "Maker J", + "model": "Model 17302", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.65976763374459, + 25.81645553363626 + ] + }, + "properties": { + "id": "meter-17303", + "maker": "Maker B", + "model": "Model 17303", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.6727366050899, + 18.804292246053965 + ] + }, + "properties": { + "id": "meter-17304", + "maker": "Maker F", + "model": "Model 17304", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.624349685228445, + 21.331441126535367 + ] + }, + "properties": { + "id": "meter-17305", + "maker": "Maker C", + "model": "Model 17305", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.741717446980616, + 23.355169458328202 + ] + }, + "properties": { + "id": "meter-17306", + "maker": "Maker D", + "model": "Model 17306", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.990662637802274, + 30.98096397456844 + ] + }, + "properties": { + "id": "meter-17307", + "maker": "Maker B", + "model": "Model 17307", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.44411154341129, + 28.88228440425379 + ] + }, + "properties": { + "id": "meter-17308", + "maker": "Maker B", + "model": "Model 17308", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.06927349639857, + 21.92273310267924 + ] + }, + "properties": { + "id": "meter-17309", + "maker": "Maker D", + "model": "Model 17309", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.816379295435134, + 21.204210046953712 + ] + }, + "properties": { + "id": "meter-17310", + "maker": "Maker A", + "model": "Model 17310", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.42792349644838, + 23.911525263322687 + ] + }, + "properties": { + "id": "meter-17311", + "maker": "Maker B", + "model": "Model 17311", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.35040089181822, + 23.117047320333526 + ] + }, + "properties": { + "id": "meter-17312", + "maker": "Maker J", + "model": "Model 17312", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.14154101826888, + 23.777210353200445 + ] + }, + "properties": { + "id": "meter-17313", + "maker": "Maker A", + "model": "Model 17313", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.49041580792303, + 26.92586179455828 + ] + }, + "properties": { + "id": "meter-17314", + "maker": "Maker D", + "model": "Model 17314", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.32524520336426, + 18.742231832446702 + ] + }, + "properties": { + "id": "meter-17315", + "maker": "Maker F", + "model": "Model 17315", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.86919870614737, + 24.82111027002724 + ] + }, + "properties": { + "id": "meter-17316", + "maker": "Maker J", + "model": "Model 17316", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.453833082564735, + 26.265059581754393 + ] + }, + "properties": { + "id": "meter-17317", + "maker": "Maker I", + "model": "Model 17317", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.66425804986525, + 29.758901165753898 + ] + }, + "properties": { + "id": "meter-17318", + "maker": "Maker B", + "model": "Model 17318", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.82210539446831, + 27.537262415099015 + ] + }, + "properties": { + "id": "meter-17319", + "maker": "Maker H", + "model": "Model 17319", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.57558065930853, + 24.474019190482757 + ] + }, + "properties": { + "id": "meter-17320", + "maker": "Maker G", + "model": "Model 17320", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.32277751020127, + 21.63410522208905 + ] + }, + "properties": { + "id": "meter-17321", + "maker": "Maker I", + "model": "Model 17321", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.8653719286416, + 28.020714625117186 + ] + }, + "properties": { + "id": "meter-17322", + "maker": "Maker G", + "model": "Model 17322", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.61029231095367, + 23.804199202782314 + ] + }, + "properties": { + "id": "meter-17323", + "maker": "Maker E", + "model": "Model 17323", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.058436031209595, + 23.353604830515952 + ] + }, + "properties": { + "id": "meter-17324", + "maker": "Maker D", + "model": "Model 17324", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.21570815936369, + 24.83740311437657 + ] + }, + "properties": { + "id": "meter-17325", + "maker": "Maker G", + "model": "Model 17325", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.380181297343945, + 19.664987136306884 + ] + }, + "properties": { + "id": "meter-17326", + "maker": "Maker D", + "model": "Model 17326", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.1545900902456, + 19.007000231310737 + ] + }, + "properties": { + "id": "meter-17327", + "maker": "Maker C", + "model": "Model 17327", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.52025322113238, + 29.62320312986588 + ] + }, + "properties": { + "id": "meter-17328", + "maker": "Maker I", + "model": "Model 17328", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.634549450610486, + 25.888433853987785 + ] + }, + "properties": { + "id": "meter-17329", + "maker": "Maker I", + "model": "Model 17329", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.020848199857475, + 21.967579439234004 + ] + }, + "properties": { + "id": "meter-17330", + "maker": "Maker B", + "model": "Model 17330", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.612694045443675, + 22.29068326249194 + ] + }, + "properties": { + "id": "meter-17331", + "maker": "Maker J", + "model": "Model 17331", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.59631563027663, + 29.248999605638986 + ] + }, + "properties": { + "id": "meter-17332", + "maker": "Maker I", + "model": "Model 17332", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.65530670461236, + 21.885300439364702 + ] + }, + "properties": { + "id": "meter-17333", + "maker": "Maker D", + "model": "Model 17333", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.563363558190005, + 20.954437133974324 + ] + }, + "properties": { + "id": "meter-17334", + "maker": "Maker B", + "model": "Model 17334", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.078852970044345, + 23.87562976802079 + ] + }, + "properties": { + "id": "meter-17335", + "maker": "Maker C", + "model": "Model 17335", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.59368065284517, + 18.431501457627434 + ] + }, + "properties": { + "id": "meter-17336", + "maker": "Maker F", + "model": "Model 17336", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.64249464808023, + 23.058073497082063 + ] + }, + "properties": { + "id": "meter-17337", + "maker": "Maker D", + "model": "Model 17337", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.37225002153538, + 28.798318192096872 + ] + }, + "properties": { + "id": "meter-17338", + "maker": "Maker H", + "model": "Model 17338", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.413920199125414, + 20.573461072957258 + ] + }, + "properties": { + "id": "meter-17339", + "maker": "Maker J", + "model": "Model 17339", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.36457699348911, + 26.919166138210834 + ] + }, + "properties": { + "id": "meter-17340", + "maker": "Maker J", + "model": "Model 17340", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.55582562663238, + 27.685290232222066 + ] + }, + "properties": { + "id": "meter-17341", + "maker": "Maker A", + "model": "Model 17341", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.42619317616523, + 17.70740650697192 + ] + }, + "properties": { + "id": "meter-17342", + "maker": "Maker I", + "model": "Model 17342", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.48519938673593, + 23.476261825126386 + ] + }, + "properties": { + "id": "meter-17343", + "maker": "Maker I", + "model": "Model 17343", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.85028463386461, + 17.96607909162918 + ] + }, + "properties": { + "id": "meter-17344", + "maker": "Maker G", + "model": "Model 17344", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.605747007359334, + 27.571169754000834 + ] + }, + "properties": { + "id": "meter-17345", + "maker": "Maker D", + "model": "Model 17345", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.58421815394672, + 17.391625869821034 + ] + }, + "properties": { + "id": "meter-17346", + "maker": "Maker E", + "model": "Model 17346", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.73839486409991, + 24.320312521968567 + ] + }, + "properties": { + "id": "meter-17347", + "maker": "Maker C", + "model": "Model 17347", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.01694116522528, + 28.066453853598464 + ] + }, + "properties": { + "id": "meter-17348", + "maker": "Maker G", + "model": "Model 17348", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.382465003386635, + 24.421367475396202 + ] + }, + "properties": { + "id": "meter-17349", + "maker": "Maker A", + "model": "Model 17349", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.575920674290245, + 29.51217407372183 + ] + }, + "properties": { + "id": "meter-17350", + "maker": "Maker F", + "model": "Model 17350", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.15195215717668, + 24.426576524388025 + ] + }, + "properties": { + "id": "meter-17351", + "maker": "Maker J", + "model": "Model 17351", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.480945755161464, + 23.666013839982458 + ] + }, + "properties": { + "id": "meter-17352", + "maker": "Maker G", + "model": "Model 17352", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.89551613368269, + 26.783254738514625 + ] + }, + "properties": { + "id": "meter-17353", + "maker": "Maker I", + "model": "Model 17353", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.526421935554296, + 23.26296874155124 + ] + }, + "properties": { + "id": "meter-17354", + "maker": "Maker H", + "model": "Model 17354", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.19043194250384, + 18.502349001010156 + ] + }, + "properties": { + "id": "meter-17355", + "maker": "Maker A", + "model": "Model 17355", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.62303554256386, + 23.596797922760516 + ] + }, + "properties": { + "id": "meter-17356", + "maker": "Maker G", + "model": "Model 17356", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.75753703654406, + 22.763608141910712 + ] + }, + "properties": { + "id": "meter-17357", + "maker": "Maker G", + "model": "Model 17357", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.113567290928074, + 29.49060530006263 + ] + }, + "properties": { + "id": "meter-17358", + "maker": "Maker F", + "model": "Model 17358", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.957374569683275, + 23.517375936834902 + ] + }, + "properties": { + "id": "meter-17359", + "maker": "Maker C", + "model": "Model 17359", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.53343387990715, + 18.687643245846775 + ] + }, + "properties": { + "id": "meter-17360", + "maker": "Maker A", + "model": "Model 17360", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.60760663717312, + 31.399826773625325 + ] + }, + "properties": { + "id": "meter-17361", + "maker": "Maker B", + "model": "Model 17361", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.259490049410914, + 24.17907810048907 + ] + }, + "properties": { + "id": "meter-17362", + "maker": "Maker G", + "model": "Model 17362", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.884300085435015, + 28.051424647239248 + ] + }, + "properties": { + "id": "meter-17363", + "maker": "Maker H", + "model": "Model 17363", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.05681987332226, + 31.93855078648015 + ] + }, + "properties": { + "id": "meter-17364", + "maker": "Maker C", + "model": "Model 17364", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.31754587810327, + 25.890697894801754 + ] + }, + "properties": { + "id": "meter-17365", + "maker": "Maker F", + "model": "Model 17365", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.74195861377812, + 21.89927469919655 + ] + }, + "properties": { + "id": "meter-17366", + "maker": "Maker D", + "model": "Model 17366", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.190829954167434, + 30.41891178950772 + ] + }, + "properties": { + "id": "meter-17367", + "maker": "Maker H", + "model": "Model 17367", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.75322907401605, + 25.652886651948926 + ] + }, + "properties": { + "id": "meter-17368", + "maker": "Maker C", + "model": "Model 17368", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.71265322846936, + 18.750770148402133 + ] + }, + "properties": { + "id": "meter-17369", + "maker": "Maker G", + "model": "Model 17369", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.060093881194234, + 20.22762483174037 + ] + }, + "properties": { + "id": "meter-17370", + "maker": "Maker H", + "model": "Model 17370", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.32103717566096, + 22.774439290986663 + ] + }, + "properties": { + "id": "meter-17371", + "maker": "Maker H", + "model": "Model 17371", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.858990465871614, + 25.140794823063782 + ] + }, + "properties": { + "id": "meter-17372", + "maker": "Maker G", + "model": "Model 17372", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.876511979287066, + 20.577968896273397 + ] + }, + "properties": { + "id": "meter-17373", + "maker": "Maker J", + "model": "Model 17373", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.9413819714878, + 28.99150099512044 + ] + }, + "properties": { + "id": "meter-17374", + "maker": "Maker I", + "model": "Model 17374", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.25000687318071, + 26.294759238348547 + ] + }, + "properties": { + "id": "meter-17375", + "maker": "Maker C", + "model": "Model 17375", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.63987218306133, + 19.55766654235717 + ] + }, + "properties": { + "id": "meter-17376", + "maker": "Maker I", + "model": "Model 17376", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.0996157557051, + 21.242175161482564 + ] + }, + "properties": { + "id": "meter-17377", + "maker": "Maker J", + "model": "Model 17377", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.02078987128075, + 29.549317555998353 + ] + }, + "properties": { + "id": "meter-17378", + "maker": "Maker E", + "model": "Model 17378", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.52313272259058, + 19.015564127805323 + ] + }, + "properties": { + "id": "meter-17379", + "maker": "Maker A", + "model": "Model 17379", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.698879570046174, + 29.38755878421501 + ] + }, + "properties": { + "id": "meter-17380", + "maker": "Maker A", + "model": "Model 17380", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.7666020966888, + 26.355128051161245 + ] + }, + "properties": { + "id": "meter-17381", + "maker": "Maker F", + "model": "Model 17381", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.733606308850966, + 20.934758414637713 + ] + }, + "properties": { + "id": "meter-17382", + "maker": "Maker A", + "model": "Model 17382", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.987271519899465, + 28.13358853942537 + ] + }, + "properties": { + "id": "meter-17383", + "maker": "Maker I", + "model": "Model 17383", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.402493600533006, + 26.28608725537599 + ] + }, + "properties": { + "id": "meter-17384", + "maker": "Maker C", + "model": "Model 17384", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.581573337788704, + 23.114312369258545 + ] + }, + "properties": { + "id": "meter-17385", + "maker": "Maker A", + "model": "Model 17385", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.50957757405639, + 21.654536504146083 + ] + }, + "properties": { + "id": "meter-17386", + "maker": "Maker H", + "model": "Model 17386", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.04749241377339, + 23.018231560688818 + ] + }, + "properties": { + "id": "meter-17387", + "maker": "Maker C", + "model": "Model 17387", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69176178782947, + 25.318882846884467 + ] + }, + "properties": { + "id": "meter-17388", + "maker": "Maker J", + "model": "Model 17388", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.760123249604746, + 28.04610175239693 + ] + }, + "properties": { + "id": "meter-17389", + "maker": "Maker D", + "model": "Model 17389", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.036953462409855, + 18.151090794811456 + ] + }, + "properties": { + "id": "meter-17390", + "maker": "Maker G", + "model": "Model 17390", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.68303759417968, + 24.60478165440087 + ] + }, + "properties": { + "id": "meter-17391", + "maker": "Maker E", + "model": "Model 17391", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.595203395176206, + 21.728078040472756 + ] + }, + "properties": { + "id": "meter-17392", + "maker": "Maker F", + "model": "Model 17392", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.52812946967257, + 20.302014285929978 + ] + }, + "properties": { + "id": "meter-17393", + "maker": "Maker J", + "model": "Model 17393", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.91557501084557, + 26.535955657694625 + ] + }, + "properties": { + "id": "meter-17394", + "maker": "Maker I", + "model": "Model 17394", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.41281438264522, + 21.86531498063252 + ] + }, + "properties": { + "id": "meter-17395", + "maker": "Maker F", + "model": "Model 17395", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.373628738132496, + 20.791867025209456 + ] + }, + "properties": { + "id": "meter-17396", + "maker": "Maker B", + "model": "Model 17396", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.3774576545158, + 26.959057923052193 + ] + }, + "properties": { + "id": "meter-17397", + "maker": "Maker G", + "model": "Model 17397", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.77641720626452, + 29.885117629441396 + ] + }, + "properties": { + "id": "meter-17398", + "maker": "Maker F", + "model": "Model 17398", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.78355340274022, + 25.743389908736308 + ] + }, + "properties": { + "id": "meter-17399", + "maker": "Maker D", + "model": "Model 17399", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.10199238776365, + 27.38927164521309 + ] + }, + "properties": { + "id": "meter-17400", + "maker": "Maker J", + "model": "Model 17400", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.88345637295053, + 22.228101833964317 + ] + }, + "properties": { + "id": "meter-17401", + "maker": "Maker J", + "model": "Model 17401", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63663691836007, + 24.184748596495915 + ] + }, + "properties": { + "id": "meter-17402", + "maker": "Maker D", + "model": "Model 17402", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.215036871024736, + 21.455179154153917 + ] + }, + "properties": { + "id": "meter-17403", + "maker": "Maker B", + "model": "Model 17403", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.80948407428299, + 21.34048471235836 + ] + }, + "properties": { + "id": "meter-17404", + "maker": "Maker J", + "model": "Model 17404", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.059367572716, + 25.206497346589618 + ] + }, + "properties": { + "id": "meter-17405", + "maker": "Maker B", + "model": "Model 17405", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.63661043017154, + 22.595539410359045 + ] + }, + "properties": { + "id": "meter-17406", + "maker": "Maker F", + "model": "Model 17406", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.512879674581875, + 25.36773361535863 + ] + }, + "properties": { + "id": "meter-17407", + "maker": "Maker F", + "model": "Model 17407", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.47430124550786, + 18.644810912834856 + ] + }, + "properties": { + "id": "meter-17408", + "maker": "Maker H", + "model": "Model 17408", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.077054566603536, + 25.864494597117243 + ] + }, + "properties": { + "id": "meter-17409", + "maker": "Maker E", + "model": "Model 17409", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.90943092290184, + 26.43558703235753 + ] + }, + "properties": { + "id": "meter-17410", + "maker": "Maker C", + "model": "Model 17410", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.464996645983376, + 24.011343326856483 + ] + }, + "properties": { + "id": "meter-17411", + "maker": "Maker I", + "model": "Model 17411", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.479359578911456, + 18.66512802822408 + ] + }, + "properties": { + "id": "meter-17412", + "maker": "Maker H", + "model": "Model 17412", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.20034632422101, + 29.71937040282842 + ] + }, + "properties": { + "id": "meter-17413", + "maker": "Maker B", + "model": "Model 17413", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.00769320113491, + 23.02101531540942 + ] + }, + "properties": { + "id": "meter-17414", + "maker": "Maker J", + "model": "Model 17414", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.015210714738934, + 25.677931449735503 + ] + }, + "properties": { + "id": "meter-17415", + "maker": "Maker F", + "model": "Model 17415", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.73360876542851, + 25.613779456867505 + ] + }, + "properties": { + "id": "meter-17416", + "maker": "Maker G", + "model": "Model 17416", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6325555906975, + 30.395411549148378 + ] + }, + "properties": { + "id": "meter-17417", + "maker": "Maker G", + "model": "Model 17417", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.3133337911314, + 22.308157965046718 + ] + }, + "properties": { + "id": "meter-17418", + "maker": "Maker A", + "model": "Model 17418", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.59456848580113, + 23.296075024737597 + ] + }, + "properties": { + "id": "meter-17419", + "maker": "Maker B", + "model": "Model 17419", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.280274301070804, + 22.794773784097842 + ] + }, + "properties": { + "id": "meter-17420", + "maker": "Maker A", + "model": "Model 17420", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.91102981018447, + 18.70387238659174 + ] + }, + "properties": { + "id": "meter-17421", + "maker": "Maker E", + "model": "Model 17421", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.68245038385961, + 25.20703691827911 + ] + }, + "properties": { + "id": "meter-17422", + "maker": "Maker E", + "model": "Model 17422", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81944751528955, + 29.75166263176947 + ] + }, + "properties": { + "id": "meter-17423", + "maker": "Maker J", + "model": "Model 17423", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.547839664040204, + 30.641066188650424 + ] + }, + "properties": { + "id": "meter-17424", + "maker": "Maker C", + "model": "Model 17424", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.56987608107319, + 20.394672671482127 + ] + }, + "properties": { + "id": "meter-17425", + "maker": "Maker B", + "model": "Model 17425", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.14024084169131, + 22.230027853835573 + ] + }, + "properties": { + "id": "meter-17426", + "maker": "Maker E", + "model": "Model 17426", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.263136159166564, + 19.35957472503925 + ] + }, + "properties": { + "id": "meter-17427", + "maker": "Maker G", + "model": "Model 17427", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.64261733648704, + 23.293200008567872 + ] + }, + "properties": { + "id": "meter-17428", + "maker": "Maker J", + "model": "Model 17428", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.6551102506454, + 31.062484032115 + ] + }, + "properties": { + "id": "meter-17429", + "maker": "Maker C", + "model": "Model 17429", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.137900489820126, + 23.639163912318615 + ] + }, + "properties": { + "id": "meter-17430", + "maker": "Maker B", + "model": "Model 17430", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.07262468217569, + 23.892059608322164 + ] + }, + "properties": { + "id": "meter-17431", + "maker": "Maker I", + "model": "Model 17431", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.93828683246893, + 17.64350731580495 + ] + }, + "properties": { + "id": "meter-17432", + "maker": "Maker D", + "model": "Model 17432", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.45354134059634, + 20.30730176011265 + ] + }, + "properties": { + "id": "meter-17433", + "maker": "Maker C", + "model": "Model 17433", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.58165478294016, + 26.83860433730203 + ] + }, + "properties": { + "id": "meter-17434", + "maker": "Maker J", + "model": "Model 17434", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.774033841983815, + 22.89176913787761 + ] + }, + "properties": { + "id": "meter-17435", + "maker": "Maker B", + "model": "Model 17435", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.73353536461135, + 26.964243020041792 + ] + }, + "properties": { + "id": "meter-17436", + "maker": "Maker A", + "model": "Model 17436", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.99478537000329, + 20.040361961845683 + ] + }, + "properties": { + "id": "meter-17437", + "maker": "Maker C", + "model": "Model 17437", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.27119338970408, + 17.208975612093912 + ] + }, + "properties": { + "id": "meter-17438", + "maker": "Maker J", + "model": "Model 17438", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.71677278268788, + 25.196243070518484 + ] + }, + "properties": { + "id": "meter-17439", + "maker": "Maker J", + "model": "Model 17439", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.516101150285316, + 22.25910538536124 + ] + }, + "properties": { + "id": "meter-17440", + "maker": "Maker H", + "model": "Model 17440", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.058303629134855, + 22.40411297774976 + ] + }, + "properties": { + "id": "meter-17441", + "maker": "Maker G", + "model": "Model 17441", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.124636024442964, + 23.02854492907224 + ] + }, + "properties": { + "id": "meter-17442", + "maker": "Maker H", + "model": "Model 17442", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.50049613275509, + 25.197005612592584 + ] + }, + "properties": { + "id": "meter-17443", + "maker": "Maker B", + "model": "Model 17443", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.73463382739588, + 27.11014463258587 + ] + }, + "properties": { + "id": "meter-17444", + "maker": "Maker H", + "model": "Model 17444", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.57526001886163, + 28.63962719867432 + ] + }, + "properties": { + "id": "meter-17445", + "maker": "Maker J", + "model": "Model 17445", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.067974466545344, + 27.774901787626526 + ] + }, + "properties": { + "id": "meter-17446", + "maker": "Maker A", + "model": "Model 17446", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.45883299112669, + 25.321040376433086 + ] + }, + "properties": { + "id": "meter-17447", + "maker": "Maker J", + "model": "Model 17447", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.18553236902194, + 24.661077583055537 + ] + }, + "properties": { + "id": "meter-17448", + "maker": "Maker G", + "model": "Model 17448", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.11678121021343, + 24.371706672077856 + ] + }, + "properties": { + "id": "meter-17449", + "maker": "Maker B", + "model": "Model 17449", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.40582238756632, + 25.852201090740905 + ] + }, + "properties": { + "id": "meter-17450", + "maker": "Maker D", + "model": "Model 17450", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.391281754184334, + 21.094051882989724 + ] + }, + "properties": { + "id": "meter-17451", + "maker": "Maker F", + "model": "Model 17451", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.71271394475153, + 27.93914450471812 + ] + }, + "properties": { + "id": "meter-17452", + "maker": "Maker B", + "model": "Model 17452", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.506678338416904, + 25.36172023018771 + ] + }, + "properties": { + "id": "meter-17453", + "maker": "Maker G", + "model": "Model 17453", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.21646040016047, + 26.52732624210751 + ] + }, + "properties": { + "id": "meter-17454", + "maker": "Maker G", + "model": "Model 17454", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.669681551992994, + 25.756004098245025 + ] + }, + "properties": { + "id": "meter-17455", + "maker": "Maker B", + "model": "Model 17455", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.494996583901624, + 28.290974565277903 + ] + }, + "properties": { + "id": "meter-17456", + "maker": "Maker H", + "model": "Model 17456", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.258278203522664, + 26.91058615066197 + ] + }, + "properties": { + "id": "meter-17457", + "maker": "Maker J", + "model": "Model 17457", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.37901602278557, + 25.370584390938024 + ] + }, + "properties": { + "id": "meter-17458", + "maker": "Maker E", + "model": "Model 17458", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.2068464107663, + 19.589673027558998 + ] + }, + "properties": { + "id": "meter-17459", + "maker": "Maker C", + "model": "Model 17459", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.870109855269995, + 22.538279793337317 + ] + }, + "properties": { + "id": "meter-17460", + "maker": "Maker F", + "model": "Model 17460", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.65248350357912, + 20.15877946300735 + ] + }, + "properties": { + "id": "meter-17461", + "maker": "Maker A", + "model": "Model 17461", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.65455069630757, + 27.081643682916685 + ] + }, + "properties": { + "id": "meter-17462", + "maker": "Maker H", + "model": "Model 17462", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.31046647246129, + 23.994152744404683 + ] + }, + "properties": { + "id": "meter-17463", + "maker": "Maker I", + "model": "Model 17463", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95881603252198, + 21.40418871744545 + ] + }, + "properties": { + "id": "meter-17464", + "maker": "Maker I", + "model": "Model 17464", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.97558559242552, + 22.83505685035302 + ] + }, + "properties": { + "id": "meter-17465", + "maker": "Maker H", + "model": "Model 17465", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.14101962998326, + 19.731950187254142 + ] + }, + "properties": { + "id": "meter-17466", + "maker": "Maker B", + "model": "Model 17466", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.93814920074323, + 19.06074792774888 + ] + }, + "properties": { + "id": "meter-17467", + "maker": "Maker C", + "model": "Model 17467", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.46291279159712, + 24.989773903123293 + ] + }, + "properties": { + "id": "meter-17468", + "maker": "Maker D", + "model": "Model 17468", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.40552875616119, + 25.68655368628542 + ] + }, + "properties": { + "id": "meter-17469", + "maker": "Maker J", + "model": "Model 17469", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.26063848967536, + 29.780753454301312 + ] + }, + "properties": { + "id": "meter-17470", + "maker": "Maker I", + "model": "Model 17470", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.13217682154212, + 20.94158980861259 + ] + }, + "properties": { + "id": "meter-17471", + "maker": "Maker C", + "model": "Model 17471", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.0396901388237, + 22.304722461537974 + ] + }, + "properties": { + "id": "meter-17472", + "maker": "Maker J", + "model": "Model 17472", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.17627061236637, + 28.880802083058377 + ] + }, + "properties": { + "id": "meter-17473", + "maker": "Maker D", + "model": "Model 17473", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.16755278564797, + 26.537187262457145 + ] + }, + "properties": { + "id": "meter-17474", + "maker": "Maker A", + "model": "Model 17474", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.50671332896507, + 31.07691038969306 + ] + }, + "properties": { + "id": "meter-17475", + "maker": "Maker D", + "model": "Model 17475", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.24644483630051, + 21.03765387879325 + ] + }, + "properties": { + "id": "meter-17476", + "maker": "Maker I", + "model": "Model 17476", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.26759184340786, + 23.3142291736597 + ] + }, + "properties": { + "id": "meter-17477", + "maker": "Maker H", + "model": "Model 17477", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.39975906635657, + 22.7645112869811 + ] + }, + "properties": { + "id": "meter-17478", + "maker": "Maker B", + "model": "Model 17478", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.6844862925945, + 26.069415460803775 + ] + }, + "properties": { + "id": "meter-17479", + "maker": "Maker J", + "model": "Model 17479", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.19145399644323, + 21.796263415616036 + ] + }, + "properties": { + "id": "meter-17480", + "maker": "Maker B", + "model": "Model 17480", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.805508667018216, + 25.58570739909824 + ] + }, + "properties": { + "id": "meter-17481", + "maker": "Maker F", + "model": "Model 17481", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.125261921161425, + 19.46603272437149 + ] + }, + "properties": { + "id": "meter-17482", + "maker": "Maker J", + "model": "Model 17482", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.64983121251602, + 23.274809224058338 + ] + }, + "properties": { + "id": "meter-17483", + "maker": "Maker D", + "model": "Model 17483", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.90049524715382, + 18.36206664778143 + ] + }, + "properties": { + "id": "meter-17484", + "maker": "Maker C", + "model": "Model 17484", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.20936866963458, + 19.366584539968073 + ] + }, + "properties": { + "id": "meter-17485", + "maker": "Maker G", + "model": "Model 17485", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.594674214978106, + 27.967860715194497 + ] + }, + "properties": { + "id": "meter-17486", + "maker": "Maker D", + "model": "Model 17486", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.63744186931769, + 21.212529181138745 + ] + }, + "properties": { + "id": "meter-17487", + "maker": "Maker I", + "model": "Model 17487", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.93704562534342, + 18.302640634093194 + ] + }, + "properties": { + "id": "meter-17488", + "maker": "Maker H", + "model": "Model 17488", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.700769072307295, + 22.19091505810858 + ] + }, + "properties": { + "id": "meter-17489", + "maker": "Maker A", + "model": "Model 17489", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.96435382224145, + 24.27584976682099 + ] + }, + "properties": { + "id": "meter-17490", + "maker": "Maker F", + "model": "Model 17490", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.41086176608097, + 22.76292727823837 + ] + }, + "properties": { + "id": "meter-17491", + "maker": "Maker D", + "model": "Model 17491", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.208658212194536, + 27.02009260614789 + ] + }, + "properties": { + "id": "meter-17492", + "maker": "Maker E", + "model": "Model 17492", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.01346123907492, + 23.88405426119418 + ] + }, + "properties": { + "id": "meter-17493", + "maker": "Maker D", + "model": "Model 17493", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.72703828943445, + 29.151232802069114 + ] + }, + "properties": { + "id": "meter-17494", + "maker": "Maker I", + "model": "Model 17494", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.57286039390482, + 28.56499519543624 + ] + }, + "properties": { + "id": "meter-17495", + "maker": "Maker G", + "model": "Model 17495", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.90211517974446, + 20.909388388270642 + ] + }, + "properties": { + "id": "meter-17496", + "maker": "Maker I", + "model": "Model 17496", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.34398598729565, + 21.542570131041934 + ] + }, + "properties": { + "id": "meter-17497", + "maker": "Maker C", + "model": "Model 17497", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.790863616163946, + 17.72700501425243 + ] + }, + "properties": { + "id": "meter-17498", + "maker": "Maker D", + "model": "Model 17498", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.01192978272174, + 23.382656666768387 + ] + }, + "properties": { + "id": "meter-17499", + "maker": "Maker D", + "model": "Model 17499", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.82908278521647, + 19.33868633096692 + ] + }, + "properties": { + "id": "meter-17500", + "maker": "Maker D", + "model": "Model 17500", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.900894010907294, + 18.908888061728497 + ] + }, + "properties": { + "id": "meter-17501", + "maker": "Maker F", + "model": "Model 17501", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95064733193248, + 25.98057071762264 + ] + }, + "properties": { + "id": "meter-17502", + "maker": "Maker C", + "model": "Model 17502", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.09119650041112, + 22.43559408657508 + ] + }, + "properties": { + "id": "meter-17503", + "maker": "Maker F", + "model": "Model 17503", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.26563303472284, + 19.974485850646545 + ] + }, + "properties": { + "id": "meter-17504", + "maker": "Maker G", + "model": "Model 17504", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.28167681922951, + 26.870194638386096 + ] + }, + "properties": { + "id": "meter-17505", + "maker": "Maker B", + "model": "Model 17505", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.69719397100471, + 19.037624278170146 + ] + }, + "properties": { + "id": "meter-17506", + "maker": "Maker A", + "model": "Model 17506", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.131018752252224, + 17.447488054590657 + ] + }, + "properties": { + "id": "meter-17507", + "maker": "Maker H", + "model": "Model 17507", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.82854481545753, + 27.662609861326132 + ] + }, + "properties": { + "id": "meter-17508", + "maker": "Maker J", + "model": "Model 17508", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.37864503289729, + 22.562263451347796 + ] + }, + "properties": { + "id": "meter-17509", + "maker": "Maker F", + "model": "Model 17509", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.09810810629593, + 21.185408339539133 + ] + }, + "properties": { + "id": "meter-17510", + "maker": "Maker J", + "model": "Model 17510", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.2557825482902, + 27.852155970836655 + ] + }, + "properties": { + "id": "meter-17511", + "maker": "Maker C", + "model": "Model 17511", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.39143073313211, + 20.67675257583256 + ] + }, + "properties": { + "id": "meter-17512", + "maker": "Maker J", + "model": "Model 17512", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.14787612758058, + 28.69979411863872 + ] + }, + "properties": { + "id": "meter-17513", + "maker": "Maker C", + "model": "Model 17513", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.01542866191792, + 29.072800975392315 + ] + }, + "properties": { + "id": "meter-17514", + "maker": "Maker E", + "model": "Model 17514", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.55302917270611, + 24.134572523544314 + ] + }, + "properties": { + "id": "meter-17515", + "maker": "Maker G", + "model": "Model 17515", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.39532264010244, + 21.62368419646824 + ] + }, + "properties": { + "id": "meter-17516", + "maker": "Maker E", + "model": "Model 17516", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.440027934191576, + 23.565140327363785 + ] + }, + "properties": { + "id": "meter-17517", + "maker": "Maker I", + "model": "Model 17517", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.89665457060687, + 23.899248689580304 + ] + }, + "properties": { + "id": "meter-17518", + "maker": "Maker G", + "model": "Model 17518", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.54332049738555, + 29.773064668692932 + ] + }, + "properties": { + "id": "meter-17519", + "maker": "Maker D", + "model": "Model 17519", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.89475605305108, + 27.763919269276936 + ] + }, + "properties": { + "id": "meter-17520", + "maker": "Maker B", + "model": "Model 17520", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.50951349566727, + 20.654037507555064 + ] + }, + "properties": { + "id": "meter-17521", + "maker": "Maker F", + "model": "Model 17521", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.730944014479725, + 22.572262640433422 + ] + }, + "properties": { + "id": "meter-17522", + "maker": "Maker J", + "model": "Model 17522", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.07871997147367, + 25.797200328384527 + ] + }, + "properties": { + "id": "meter-17523", + "maker": "Maker J", + "model": "Model 17523", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.579154135781884, + 20.8056818194894 + ] + }, + "properties": { + "id": "meter-17524", + "maker": "Maker F", + "model": "Model 17524", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.65449502055992, + 28.378821372968552 + ] + }, + "properties": { + "id": "meter-17525", + "maker": "Maker J", + "model": "Model 17525", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.518022587876054, + 27.23403810908799 + ] + }, + "properties": { + "id": "meter-17526", + "maker": "Maker D", + "model": "Model 17526", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.36039672696927, + 26.080241334321414 + ] + }, + "properties": { + "id": "meter-17527", + "maker": "Maker F", + "model": "Model 17527", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.11908319335269, + 21.216211840316205 + ] + }, + "properties": { + "id": "meter-17528", + "maker": "Maker B", + "model": "Model 17528", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.89873208361893, + 24.250041593637725 + ] + }, + "properties": { + "id": "meter-17529", + "maker": "Maker F", + "model": "Model 17529", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.11182049920899, + 25.59752896386115 + ] + }, + "properties": { + "id": "meter-17530", + "maker": "Maker A", + "model": "Model 17530", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.43278111561038, + 23.992601750181677 + ] + }, + "properties": { + "id": "meter-17531", + "maker": "Maker H", + "model": "Model 17531", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.17679165543277, + 19.96329090441695 + ] + }, + "properties": { + "id": "meter-17532", + "maker": "Maker J", + "model": "Model 17532", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.92241899095748, + 20.717161699851886 + ] + }, + "properties": { + "id": "meter-17533", + "maker": "Maker I", + "model": "Model 17533", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.77486826607448, + 19.15808483384103 + ] + }, + "properties": { + "id": "meter-17534", + "maker": "Maker C", + "model": "Model 17534", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.82973242788248, + 21.943731366595948 + ] + }, + "properties": { + "id": "meter-17535", + "maker": "Maker D", + "model": "Model 17535", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.220068790261884, + 25.452948646639456 + ] + }, + "properties": { + "id": "meter-17536", + "maker": "Maker F", + "model": "Model 17536", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.38490801008355, + 23.903939404756503 + ] + }, + "properties": { + "id": "meter-17537", + "maker": "Maker A", + "model": "Model 17537", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.54929551514134, + 18.693783688935817 + ] + }, + "properties": { + "id": "meter-17538", + "maker": "Maker B", + "model": "Model 17538", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.1939732568233, + 24.389212281405904 + ] + }, + "properties": { + "id": "meter-17539", + "maker": "Maker D", + "model": "Model 17539", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.74317023131842, + 22.71870077453681 + ] + }, + "properties": { + "id": "meter-17540", + "maker": "Maker B", + "model": "Model 17540", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.11617761512562, + 17.654751070821128 + ] + }, + "properties": { + "id": "meter-17541", + "maker": "Maker H", + "model": "Model 17541", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.748043730736924, + 19.451845592615186 + ] + }, + "properties": { + "id": "meter-17542", + "maker": "Maker A", + "model": "Model 17542", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.58260759767657, + 21.47964464991972 + ] + }, + "properties": { + "id": "meter-17543", + "maker": "Maker D", + "model": "Model 17543", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.8495187906875, + 25.267374258021874 + ] + }, + "properties": { + "id": "meter-17544", + "maker": "Maker A", + "model": "Model 17544", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.28542076707659, + 27.010368296961687 + ] + }, + "properties": { + "id": "meter-17545", + "maker": "Maker G", + "model": "Model 17545", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.90888732642578, + 20.730365803670797 + ] + }, + "properties": { + "id": "meter-17546", + "maker": "Maker E", + "model": "Model 17546", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.461434716833665, + 20.090304696332066 + ] + }, + "properties": { + "id": "meter-17547", + "maker": "Maker E", + "model": "Model 17547", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.38877310140459, + 30.01418795250097 + ] + }, + "properties": { + "id": "meter-17548", + "maker": "Maker B", + "model": "Model 17548", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.41168353896256, + 22.842178519776198 + ] + }, + "properties": { + "id": "meter-17549", + "maker": "Maker E", + "model": "Model 17549", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.38239701916985, + 25.28406740348922 + ] + }, + "properties": { + "id": "meter-17550", + "maker": "Maker I", + "model": "Model 17550", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.63862197598607, + 21.098680574842035 + ] + }, + "properties": { + "id": "meter-17551", + "maker": "Maker F", + "model": "Model 17551", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.51121854324989, + 21.387376034998844 + ] + }, + "properties": { + "id": "meter-17552", + "maker": "Maker H", + "model": "Model 17552", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.00632862870419, + 23.09477542054485 + ] + }, + "properties": { + "id": "meter-17553", + "maker": "Maker J", + "model": "Model 17553", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.69706446656082, + 27.802262621882225 + ] + }, + "properties": { + "id": "meter-17554", + "maker": "Maker D", + "model": "Model 17554", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.567565460015146, + 21.201632126697426 + ] + }, + "properties": { + "id": "meter-17555", + "maker": "Maker G", + "model": "Model 17555", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.87718060251033, + 24.56719538619394 + ] + }, + "properties": { + "id": "meter-17556", + "maker": "Maker E", + "model": "Model 17556", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.363723122232344, + 23.923389123711583 + ] + }, + "properties": { + "id": "meter-17557", + "maker": "Maker A", + "model": "Model 17557", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.49719407565544, + 28.454409793236266 + ] + }, + "properties": { + "id": "meter-17558", + "maker": "Maker J", + "model": "Model 17558", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.85719001985438, + 25.238908390207353 + ] + }, + "properties": { + "id": "meter-17559", + "maker": "Maker H", + "model": "Model 17559", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.85417924403469, + 23.565328412971684 + ] + }, + "properties": { + "id": "meter-17560", + "maker": "Maker D", + "model": "Model 17560", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.83371174078168, + 17.989763300515573 + ] + }, + "properties": { + "id": "meter-17561", + "maker": "Maker G", + "model": "Model 17561", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.84557148016284, + 26.943270348825365 + ] + }, + "properties": { + "id": "meter-17562", + "maker": "Maker I", + "model": "Model 17562", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.69453629129809, + 29.117199307976275 + ] + }, + "properties": { + "id": "meter-17563", + "maker": "Maker C", + "model": "Model 17563", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.619534018531205, + 29.484686183815377 + ] + }, + "properties": { + "id": "meter-17564", + "maker": "Maker J", + "model": "Model 17564", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02288310486093, + 20.827453352070314 + ] + }, + "properties": { + "id": "meter-17565", + "maker": "Maker G", + "model": "Model 17565", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.66587327982675, + 22.95489603210322 + ] + }, + "properties": { + "id": "meter-17566", + "maker": "Maker A", + "model": "Model 17566", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.46730672932439, + 20.984063751651053 + ] + }, + "properties": { + "id": "meter-17567", + "maker": "Maker E", + "model": "Model 17567", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.66159993629536, + 20.000397327928916 + ] + }, + "properties": { + "id": "meter-17568", + "maker": "Maker A", + "model": "Model 17568", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.55005534422583, + 26.85734101682871 + ] + }, + "properties": { + "id": "meter-17569", + "maker": "Maker F", + "model": "Model 17569", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.579674642997205, + 23.464946807966818 + ] + }, + "properties": { + "id": "meter-17570", + "maker": "Maker B", + "model": "Model 17570", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.782762924838394, + 29.554460166437053 + ] + }, + "properties": { + "id": "meter-17571", + "maker": "Maker G", + "model": "Model 17571", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.63322399757591, + 29.01794197444154 + ] + }, + "properties": { + "id": "meter-17572", + "maker": "Maker C", + "model": "Model 17572", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.62072407194707, + 29.22662984177222 + ] + }, + "properties": { + "id": "meter-17573", + "maker": "Maker E", + "model": "Model 17573", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.968710134919405, + 19.45409459321222 + ] + }, + "properties": { + "id": "meter-17574", + "maker": "Maker C", + "model": "Model 17574", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.68779393846602, + 23.824376700921796 + ] + }, + "properties": { + "id": "meter-17575", + "maker": "Maker J", + "model": "Model 17575", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.35820273963485, + 28.696800983979813 + ] + }, + "properties": { + "id": "meter-17576", + "maker": "Maker J", + "model": "Model 17576", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.69487729196999, + 20.18045607206306 + ] + }, + "properties": { + "id": "meter-17577", + "maker": "Maker A", + "model": "Model 17577", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.27296320815322, + 29.257001024573494 + ] + }, + "properties": { + "id": "meter-17578", + "maker": "Maker A", + "model": "Model 17578", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.600284905086966, + 20.28425490736293 + ] + }, + "properties": { + "id": "meter-17579", + "maker": "Maker E", + "model": "Model 17579", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.89339361879928, + 23.966967397992875 + ] + }, + "properties": { + "id": "meter-17580", + "maker": "Maker I", + "model": "Model 17580", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.12513978145207, + 31.395192437531563 + ] + }, + "properties": { + "id": "meter-17581", + "maker": "Maker J", + "model": "Model 17581", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.06792098577718, + 20.872185516112218 + ] + }, + "properties": { + "id": "meter-17582", + "maker": "Maker D", + "model": "Model 17582", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.60429328248931, + 23.38681762516474 + ] + }, + "properties": { + "id": "meter-17583", + "maker": "Maker A", + "model": "Model 17583", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.591342533718844, + 18.509635335961836 + ] + }, + "properties": { + "id": "meter-17584", + "maker": "Maker A", + "model": "Model 17584", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.59693675953667, + 24.074939743270814 + ] + }, + "properties": { + "id": "meter-17585", + "maker": "Maker D", + "model": "Model 17585", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.3121732242333, + 19.354653596338714 + ] + }, + "properties": { + "id": "meter-17586", + "maker": "Maker B", + "model": "Model 17586", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.651832274000895, + 25.69779753594793 + ] + }, + "properties": { + "id": "meter-17587", + "maker": "Maker H", + "model": "Model 17587", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.71638344495281, + 27.651891932159018 + ] + }, + "properties": { + "id": "meter-17588", + "maker": "Maker G", + "model": "Model 17588", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.558552854143215, + 21.175377145724035 + ] + }, + "properties": { + "id": "meter-17589", + "maker": "Maker E", + "model": "Model 17589", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.6925359882455, + 17.433845489057113 + ] + }, + "properties": { + "id": "meter-17590", + "maker": "Maker C", + "model": "Model 17590", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.96638878740187, + 20.43881902225016 + ] + }, + "properties": { + "id": "meter-17591", + "maker": "Maker I", + "model": "Model 17591", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.16702062432504, + 29.039296076908812 + ] + }, + "properties": { + "id": "meter-17592", + "maker": "Maker H", + "model": "Model 17592", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.795386788779886, + 24.523184561654524 + ] + }, + "properties": { + "id": "meter-17593", + "maker": "Maker J", + "model": "Model 17593", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.11290483762021, + 27.670570979837795 + ] + }, + "properties": { + "id": "meter-17594", + "maker": "Maker I", + "model": "Model 17594", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12599156716498, + 25.26334738189768 + ] + }, + "properties": { + "id": "meter-17595", + "maker": "Maker G", + "model": "Model 17595", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.3071491735907, + 21.80995993825625 + ] + }, + "properties": { + "id": "meter-17596", + "maker": "Maker B", + "model": "Model 17596", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.61295279681519, + 26.478240122959676 + ] + }, + "properties": { + "id": "meter-17597", + "maker": "Maker F", + "model": "Model 17597", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.06617664004038, + 22.672970752574237 + ] + }, + "properties": { + "id": "meter-17598", + "maker": "Maker G", + "model": "Model 17598", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.75304303564485, + 22.62597546255983 + ] + }, + "properties": { + "id": "meter-17599", + "maker": "Maker D", + "model": "Model 17599", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.64909483536462, + 22.233988042402224 + ] + }, + "properties": { + "id": "meter-17600", + "maker": "Maker F", + "model": "Model 17600", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.89169730935531, + 21.52415484553576 + ] + }, + "properties": { + "id": "meter-17601", + "maker": "Maker F", + "model": "Model 17601", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.74941153547, + 25.011642624617288 + ] + }, + "properties": { + "id": "meter-17602", + "maker": "Maker A", + "model": "Model 17602", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.55591713194998, + 24.27895187052989 + ] + }, + "properties": { + "id": "meter-17603", + "maker": "Maker C", + "model": "Model 17603", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.72395594453522, + 28.816238678690297 + ] + }, + "properties": { + "id": "meter-17604", + "maker": "Maker C", + "model": "Model 17604", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.75995417369117, + 23.20747566958456 + ] + }, + "properties": { + "id": "meter-17605", + "maker": "Maker C", + "model": "Model 17605", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.294166075196536, + 31.626151223865275 + ] + }, + "properties": { + "id": "meter-17606", + "maker": "Maker I", + "model": "Model 17606", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.56495584100819, + 27.123863652738407 + ] + }, + "properties": { + "id": "meter-17607", + "maker": "Maker D", + "model": "Model 17607", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.54171471892741, + 19.649820062171393 + ] + }, + "properties": { + "id": "meter-17608", + "maker": "Maker I", + "model": "Model 17608", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.079195347454146, + 25.23550496514465 + ] + }, + "properties": { + "id": "meter-17609", + "maker": "Maker H", + "model": "Model 17609", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.573428627667525, + 25.653550108353695 + ] + }, + "properties": { + "id": "meter-17610", + "maker": "Maker A", + "model": "Model 17610", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.206411545977815, + 21.96995186759076 + ] + }, + "properties": { + "id": "meter-17611", + "maker": "Maker G", + "model": "Model 17611", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.21941893982582, + 24.31842012451723 + ] + }, + "properties": { + "id": "meter-17612", + "maker": "Maker D", + "model": "Model 17612", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.342818285943366, + 20.152534645566092 + ] + }, + "properties": { + "id": "meter-17613", + "maker": "Maker D", + "model": "Model 17613", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.37563393572856, + 23.820179824230298 + ] + }, + "properties": { + "id": "meter-17614", + "maker": "Maker G", + "model": "Model 17614", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.53341072400426, + 31.131876999392862 + ] + }, + "properties": { + "id": "meter-17615", + "maker": "Maker B", + "model": "Model 17615", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.7366053407835, + 19.477373835620938 + ] + }, + "properties": { + "id": "meter-17616", + "maker": "Maker G", + "model": "Model 17616", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.27940041567081, + 24.909288788105002 + ] + }, + "properties": { + "id": "meter-17617", + "maker": "Maker J", + "model": "Model 17617", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.83998593491043, + 22.266990971242798 + ] + }, + "properties": { + "id": "meter-17618", + "maker": "Maker H", + "model": "Model 17618", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.32884993368724, + 28.380330202294488 + ] + }, + "properties": { + "id": "meter-17619", + "maker": "Maker E", + "model": "Model 17619", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.4768291335862, + 25.93547665241744 + ] + }, + "properties": { + "id": "meter-17620", + "maker": "Maker H", + "model": "Model 17620", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.25505881142232, + 20.960874482362318 + ] + }, + "properties": { + "id": "meter-17621", + "maker": "Maker C", + "model": "Model 17621", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.85767463267156, + 19.596995649372047 + ] + }, + "properties": { + "id": "meter-17622", + "maker": "Maker F", + "model": "Model 17622", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.65893110395666, + 18.5253583567118 + ] + }, + "properties": { + "id": "meter-17623", + "maker": "Maker J", + "model": "Model 17623", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.42307145935036, + 29.975511368083204 + ] + }, + "properties": { + "id": "meter-17624", + "maker": "Maker J", + "model": "Model 17624", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.455008385533205, + 28.436589417231524 + ] + }, + "properties": { + "id": "meter-17625", + "maker": "Maker H", + "model": "Model 17625", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48026078363381, + 24.79359112970738 + ] + }, + "properties": { + "id": "meter-17626", + "maker": "Maker B", + "model": "Model 17626", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.81330104989906, + 28.804574413847654 + ] + }, + "properties": { + "id": "meter-17627", + "maker": "Maker D", + "model": "Model 17627", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.96303802229006, + 22.538035544251336 + ] + }, + "properties": { + "id": "meter-17628", + "maker": "Maker I", + "model": "Model 17628", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.286235106210015, + 19.868314144019124 + ] + }, + "properties": { + "id": "meter-17629", + "maker": "Maker A", + "model": "Model 17629", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.97425013387517, + 29.17961181684239 + ] + }, + "properties": { + "id": "meter-17630", + "maker": "Maker H", + "model": "Model 17630", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.474655986603594, + 27.817715529783086 + ] + }, + "properties": { + "id": "meter-17631", + "maker": "Maker B", + "model": "Model 17631", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.54779256924018, + 20.378164333510952 + ] + }, + "properties": { + "id": "meter-17632", + "maker": "Maker J", + "model": "Model 17632", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.465871860857504, + 18.789550003099233 + ] + }, + "properties": { + "id": "meter-17633", + "maker": "Maker I", + "model": "Model 17633", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.61112636635915, + 19.097695033218052 + ] + }, + "properties": { + "id": "meter-17634", + "maker": "Maker J", + "model": "Model 17634", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.744584058943595, + 21.332600676839597 + ] + }, + "properties": { + "id": "meter-17635", + "maker": "Maker A", + "model": "Model 17635", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.146245836072104, + 30.096929329302668 + ] + }, + "properties": { + "id": "meter-17636", + "maker": "Maker J", + "model": "Model 17636", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.171595259068745, + 20.55323679557284 + ] + }, + "properties": { + "id": "meter-17637", + "maker": "Maker E", + "model": "Model 17637", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.484764191185214, + 23.32324849191951 + ] + }, + "properties": { + "id": "meter-17638", + "maker": "Maker B", + "model": "Model 17638", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.74979027967269, + 18.354297939291307 + ] + }, + "properties": { + "id": "meter-17639", + "maker": "Maker D", + "model": "Model 17639", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.224711328328475, + 24.346389335176962 + ] + }, + "properties": { + "id": "meter-17640", + "maker": "Maker F", + "model": "Model 17640", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.660361346374025, + 27.48496463896104 + ] + }, + "properties": { + "id": "meter-17641", + "maker": "Maker H", + "model": "Model 17641", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.24331439000634, + 23.124301406060376 + ] + }, + "properties": { + "id": "meter-17642", + "maker": "Maker D", + "model": "Model 17642", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.009276535768, + 19.96061373867238 + ] + }, + "properties": { + "id": "meter-17643", + "maker": "Maker G", + "model": "Model 17643", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.97551858606159, + 28.366572127575537 + ] + }, + "properties": { + "id": "meter-17644", + "maker": "Maker I", + "model": "Model 17644", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.9690291110435, + 18.15559646175673 + ] + }, + "properties": { + "id": "meter-17645", + "maker": "Maker D", + "model": "Model 17645", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.8833039981371, + 24.79499139334311 + ] + }, + "properties": { + "id": "meter-17646", + "maker": "Maker A", + "model": "Model 17646", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.54597479530136, + 27.631820781942665 + ] + }, + "properties": { + "id": "meter-17647", + "maker": "Maker A", + "model": "Model 17647", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.572516632100616, + 26.538861787108623 + ] + }, + "properties": { + "id": "meter-17648", + "maker": "Maker D", + "model": "Model 17648", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.977861111411634, + 24.407022419915865 + ] + }, + "properties": { + "id": "meter-17649", + "maker": "Maker D", + "model": "Model 17649", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.16046465752777, + 22.933821177899485 + ] + }, + "properties": { + "id": "meter-17650", + "maker": "Maker D", + "model": "Model 17650", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.165037799899444, + 25.661104050050096 + ] + }, + "properties": { + "id": "meter-17651", + "maker": "Maker G", + "model": "Model 17651", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.922179063525185, + 22.455300613750282 + ] + }, + "properties": { + "id": "meter-17652", + "maker": "Maker D", + "model": "Model 17652", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.09018044653476, + 24.15190355734682 + ] + }, + "properties": { + "id": "meter-17653", + "maker": "Maker H", + "model": "Model 17653", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.11821988434667, + 27.67346462121306 + ] + }, + "properties": { + "id": "meter-17654", + "maker": "Maker B", + "model": "Model 17654", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.769430111365295, + 19.876219173780832 + ] + }, + "properties": { + "id": "meter-17655", + "maker": "Maker C", + "model": "Model 17655", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.82785020729753, + 28.130923382273973 + ] + }, + "properties": { + "id": "meter-17656", + "maker": "Maker J", + "model": "Model 17656", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.23666492363437, + 26.749176087637778 + ] + }, + "properties": { + "id": "meter-17657", + "maker": "Maker E", + "model": "Model 17657", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.192636765288626, + 19.476547759968344 + ] + }, + "properties": { + "id": "meter-17658", + "maker": "Maker H", + "model": "Model 17658", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.64779122333664, + 21.097058997831354 + ] + }, + "properties": { + "id": "meter-17659", + "maker": "Maker I", + "model": "Model 17659", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.41649582581091, + 23.727584899971447 + ] + }, + "properties": { + "id": "meter-17660", + "maker": "Maker H", + "model": "Model 17660", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.59458377342908, + 21.049404872503132 + ] + }, + "properties": { + "id": "meter-17661", + "maker": "Maker A", + "model": "Model 17661", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.88618031362724, + 25.71312935882346 + ] + }, + "properties": { + "id": "meter-17662", + "maker": "Maker I", + "model": "Model 17662", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.661940969381774, + 23.72044677961245 + ] + }, + "properties": { + "id": "meter-17663", + "maker": "Maker B", + "model": "Model 17663", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.17205306561263, + 24.840960681842354 + ] + }, + "properties": { + "id": "meter-17664", + "maker": "Maker H", + "model": "Model 17664", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.616571977512436, + 23.715567535585418 + ] + }, + "properties": { + "id": "meter-17665", + "maker": "Maker D", + "model": "Model 17665", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.668414312476614, + 24.584903420193385 + ] + }, + "properties": { + "id": "meter-17666", + "maker": "Maker G", + "model": "Model 17666", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.983298774733626, + 21.999974357183284 + ] + }, + "properties": { + "id": "meter-17667", + "maker": "Maker J", + "model": "Model 17667", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71663627505578, + 17.253442524305044 + ] + }, + "properties": { + "id": "meter-17668", + "maker": "Maker D", + "model": "Model 17668", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.8410320875549, + 24.331423651226093 + ] + }, + "properties": { + "id": "meter-17669", + "maker": "Maker G", + "model": "Model 17669", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.18047994982182, + 23.7037864822046 + ] + }, + "properties": { + "id": "meter-17670", + "maker": "Maker I", + "model": "Model 17670", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.12352884280955, + 20.453275461322704 + ] + }, + "properties": { + "id": "meter-17671", + "maker": "Maker C", + "model": "Model 17671", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.241501426921076, + 30.945216733651005 + ] + }, + "properties": { + "id": "meter-17672", + "maker": "Maker A", + "model": "Model 17672", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.70092898608611, + 21.5457724849798 + ] + }, + "properties": { + "id": "meter-17673", + "maker": "Maker I", + "model": "Model 17673", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.58937059194432, + 19.53781602578559 + ] + }, + "properties": { + "id": "meter-17674", + "maker": "Maker H", + "model": "Model 17674", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.8305429832262, + 28.096170454523072 + ] + }, + "properties": { + "id": "meter-17675", + "maker": "Maker I", + "model": "Model 17675", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.87576542120889, + 28.383329668626086 + ] + }, + "properties": { + "id": "meter-17676", + "maker": "Maker J", + "model": "Model 17676", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.55645797547743, + 18.764740944447617 + ] + }, + "properties": { + "id": "meter-17677", + "maker": "Maker D", + "model": "Model 17677", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92330037408976, + 17.830060032349976 + ] + }, + "properties": { + "id": "meter-17678", + "maker": "Maker C", + "model": "Model 17678", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.855954986323766, + 21.12254687873744 + ] + }, + "properties": { + "id": "meter-17679", + "maker": "Maker G", + "model": "Model 17679", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.289710820887876, + 21.73689985377429 + ] + }, + "properties": { + "id": "meter-17680", + "maker": "Maker I", + "model": "Model 17680", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.22886100485219, + 19.04681526296427 + ] + }, + "properties": { + "id": "meter-17681", + "maker": "Maker B", + "model": "Model 17681", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.40541626649097, + 31.585562507817322 + ] + }, + "properties": { + "id": "meter-17682", + "maker": "Maker A", + "model": "Model 17682", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.093930952661424, + 19.33129027005829 + ] + }, + "properties": { + "id": "meter-17683", + "maker": "Maker C", + "model": "Model 17683", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.588086953222685, + 20.562866274978308 + ] + }, + "properties": { + "id": "meter-17684", + "maker": "Maker G", + "model": "Model 17684", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.29021304156684, + 25.89229976467194 + ] + }, + "properties": { + "id": "meter-17685", + "maker": "Maker F", + "model": "Model 17685", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.75424385543358, + 29.76795160688325 + ] + }, + "properties": { + "id": "meter-17686", + "maker": "Maker A", + "model": "Model 17686", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.20799824616156, + 24.73591435427251 + ] + }, + "properties": { + "id": "meter-17687", + "maker": "Maker I", + "model": "Model 17687", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.76977125232565, + 22.132168653873247 + ] + }, + "properties": { + "id": "meter-17688", + "maker": "Maker B", + "model": "Model 17688", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.92028975430162, + 27.2775868078727 + ] + }, + "properties": { + "id": "meter-17689", + "maker": "Maker D", + "model": "Model 17689", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.08069183885613, + 27.802626267880726 + ] + }, + "properties": { + "id": "meter-17690", + "maker": "Maker J", + "model": "Model 17690", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.7115424196876, + 26.147493195600866 + ] + }, + "properties": { + "id": "meter-17691", + "maker": "Maker F", + "model": "Model 17691", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.662129995991464, + 20.955635329536292 + ] + }, + "properties": { + "id": "meter-17692", + "maker": "Maker D", + "model": "Model 17692", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.090470674815336, + 19.426725627486984 + ] + }, + "properties": { + "id": "meter-17693", + "maker": "Maker D", + "model": "Model 17693", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.73918818193521, + 26.143856058463133 + ] + }, + "properties": { + "id": "meter-17694", + "maker": "Maker I", + "model": "Model 17694", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.10821853892041, + 20.530565567040572 + ] + }, + "properties": { + "id": "meter-17695", + "maker": "Maker H", + "model": "Model 17695", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.19882383797138, + 18.152229260864893 + ] + }, + "properties": { + "id": "meter-17696", + "maker": "Maker B", + "model": "Model 17696", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.936231360664465, + 27.351710675405265 + ] + }, + "properties": { + "id": "meter-17697", + "maker": "Maker I", + "model": "Model 17697", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.764606881759335, + 21.866385550779498 + ] + }, + "properties": { + "id": "meter-17698", + "maker": "Maker F", + "model": "Model 17698", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.744661214492055, + 18.60590666301776 + ] + }, + "properties": { + "id": "meter-17699", + "maker": "Maker B", + "model": "Model 17699", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.23577514712307, + 24.877805009524938 + ] + }, + "properties": { + "id": "meter-17700", + "maker": "Maker D", + "model": "Model 17700", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.97055776536271, + 29.01512652599135 + ] + }, + "properties": { + "id": "meter-17701", + "maker": "Maker B", + "model": "Model 17701", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.168611844641354, + 25.31688830130166 + ] + }, + "properties": { + "id": "meter-17702", + "maker": "Maker C", + "model": "Model 17702", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.41860590890873, + 19.869941547724352 + ] + }, + "properties": { + "id": "meter-17703", + "maker": "Maker J", + "model": "Model 17703", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.15290518222839, + 18.586780039444506 + ] + }, + "properties": { + "id": "meter-17704", + "maker": "Maker E", + "model": "Model 17704", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.29924744512305, + 25.529156651659818 + ] + }, + "properties": { + "id": "meter-17705", + "maker": "Maker A", + "model": "Model 17705", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.35731885091806, + 27.94161894535149 + ] + }, + "properties": { + "id": "meter-17706", + "maker": "Maker A", + "model": "Model 17706", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.93455487734667, + 26.576108193487883 + ] + }, + "properties": { + "id": "meter-17707", + "maker": "Maker C", + "model": "Model 17707", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.87677484055889, + 19.91435704886866 + ] + }, + "properties": { + "id": "meter-17708", + "maker": "Maker D", + "model": "Model 17708", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.30976404221567, + 18.020720340065118 + ] + }, + "properties": { + "id": "meter-17709", + "maker": "Maker C", + "model": "Model 17709", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.25154771303494, + 23.366151354479687 + ] + }, + "properties": { + "id": "meter-17710", + "maker": "Maker F", + "model": "Model 17710", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.070653037532566, + 29.61194436810738 + ] + }, + "properties": { + "id": "meter-17711", + "maker": "Maker H", + "model": "Model 17711", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.4794161427056, + 28.8524545526938 + ] + }, + "properties": { + "id": "meter-17712", + "maker": "Maker B", + "model": "Model 17712", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.35240804914523, + 19.9612868754771 + ] + }, + "properties": { + "id": "meter-17713", + "maker": "Maker J", + "model": "Model 17713", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.35243294791119, + 29.040744634463287 + ] + }, + "properties": { + "id": "meter-17714", + "maker": "Maker J", + "model": "Model 17714", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.35041771007993, + 29.434299816720205 + ] + }, + "properties": { + "id": "meter-17715", + "maker": "Maker D", + "model": "Model 17715", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.62129276480502, + 31.294787347993548 + ] + }, + "properties": { + "id": "meter-17716", + "maker": "Maker J", + "model": "Model 17716", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.54755512367257, + 24.01897566386944 + ] + }, + "properties": { + "id": "meter-17717", + "maker": "Maker H", + "model": "Model 17717", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.39783059194073, + 24.348290691104317 + ] + }, + "properties": { + "id": "meter-17718", + "maker": "Maker D", + "model": "Model 17718", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.325873816859534, + 26.72886221658384 + ] + }, + "properties": { + "id": "meter-17719", + "maker": "Maker B", + "model": "Model 17719", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.928909597675776, + 19.654928359392564 + ] + }, + "properties": { + "id": "meter-17720", + "maker": "Maker H", + "model": "Model 17720", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.60113622483925, + 22.41884017251267 + ] + }, + "properties": { + "id": "meter-17721", + "maker": "Maker E", + "model": "Model 17721", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.336500390917294, + 24.524485784747696 + ] + }, + "properties": { + "id": "meter-17722", + "maker": "Maker J", + "model": "Model 17722", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.37510944582121, + 25.100469371275935 + ] + }, + "properties": { + "id": "meter-17723", + "maker": "Maker H", + "model": "Model 17723", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.401429282023855, + 30.95856215717763 + ] + }, + "properties": { + "id": "meter-17724", + "maker": "Maker F", + "model": "Model 17724", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.34438627387777, + 22.989165190973935 + ] + }, + "properties": { + "id": "meter-17725", + "maker": "Maker C", + "model": "Model 17725", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.10789664113277, + 24.85531426852834 + ] + }, + "properties": { + "id": "meter-17726", + "maker": "Maker C", + "model": "Model 17726", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.01913836480169, + 27.54310807890549 + ] + }, + "properties": { + "id": "meter-17727", + "maker": "Maker B", + "model": "Model 17727", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.131750950754615, + 28.734659184750313 + ] + }, + "properties": { + "id": "meter-17728", + "maker": "Maker F", + "model": "Model 17728", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.717940903613886, + 20.877593410062385 + ] + }, + "properties": { + "id": "meter-17729", + "maker": "Maker J", + "model": "Model 17729", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.512176661580895, + 24.403791040758186 + ] + }, + "properties": { + "id": "meter-17730", + "maker": "Maker F", + "model": "Model 17730", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.494841045579676, + 27.055708085653258 + ] + }, + "properties": { + "id": "meter-17731", + "maker": "Maker F", + "model": "Model 17731", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.993876162093486, + 28.245906063759225 + ] + }, + "properties": { + "id": "meter-17732", + "maker": "Maker G", + "model": "Model 17732", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.89963260601286, + 23.49638507447176 + ] + }, + "properties": { + "id": "meter-17733", + "maker": "Maker F", + "model": "Model 17733", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.63160959641631, + 20.22562857784066 + ] + }, + "properties": { + "id": "meter-17734", + "maker": "Maker B", + "model": "Model 17734", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.88954958705546, + 21.545604377786333 + ] + }, + "properties": { + "id": "meter-17735", + "maker": "Maker G", + "model": "Model 17735", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.794827359951086, + 24.10344726155592 + ] + }, + "properties": { + "id": "meter-17736", + "maker": "Maker C", + "model": "Model 17736", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.87952073234501, + 24.83863849942451 + ] + }, + "properties": { + "id": "meter-17737", + "maker": "Maker C", + "model": "Model 17737", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.92993004245046, + 19.015308196874454 + ] + }, + "properties": { + "id": "meter-17738", + "maker": "Maker F", + "model": "Model 17738", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.32650838379787, + 27.832083877012742 + ] + }, + "properties": { + "id": "meter-17739", + "maker": "Maker G", + "model": "Model 17739", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.7875725804998, + 22.127865575466366 + ] + }, + "properties": { + "id": "meter-17740", + "maker": "Maker J", + "model": "Model 17740", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.77199003266767, + 21.242631506951067 + ] + }, + "properties": { + "id": "meter-17741", + "maker": "Maker J", + "model": "Model 17741", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.1645445589294, + 27.48557075518284 + ] + }, + "properties": { + "id": "meter-17742", + "maker": "Maker H", + "model": "Model 17742", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.164375695632046, + 29.68488418932592 + ] + }, + "properties": { + "id": "meter-17743", + "maker": "Maker F", + "model": "Model 17743", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.72358907149736, + 22.55496021968332 + ] + }, + "properties": { + "id": "meter-17744", + "maker": "Maker I", + "model": "Model 17744", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.53269623322095, + 27.05438939329392 + ] + }, + "properties": { + "id": "meter-17745", + "maker": "Maker H", + "model": "Model 17745", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.3717840381938, + 22.78060098033435 + ] + }, + "properties": { + "id": "meter-17746", + "maker": "Maker J", + "model": "Model 17746", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.57420570843698, + 23.287116378091767 + ] + }, + "properties": { + "id": "meter-17747", + "maker": "Maker B", + "model": "Model 17747", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.11682831240658, + 30.20750989402336 + ] + }, + "properties": { + "id": "meter-17748", + "maker": "Maker D", + "model": "Model 17748", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.65733028118321, + 20.099549807367477 + ] + }, + "properties": { + "id": "meter-17749", + "maker": "Maker E", + "model": "Model 17749", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.581189920201204, + 28.348291495917152 + ] + }, + "properties": { + "id": "meter-17750", + "maker": "Maker C", + "model": "Model 17750", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.37687104461152, + 22.507159645639565 + ] + }, + "properties": { + "id": "meter-17751", + "maker": "Maker J", + "model": "Model 17751", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.85712155063108, + 18.17158267938122 + ] + }, + "properties": { + "id": "meter-17752", + "maker": "Maker I", + "model": "Model 17752", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.503480506823855, + 27.713179073979063 + ] + }, + "properties": { + "id": "meter-17753", + "maker": "Maker B", + "model": "Model 17753", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.93701881974637, + 19.661873337613855 + ] + }, + "properties": { + "id": "meter-17754", + "maker": "Maker F", + "model": "Model 17754", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.521743100043224, + 20.990851521962227 + ] + }, + "properties": { + "id": "meter-17755", + "maker": "Maker G", + "model": "Model 17755", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.39207403201459, + 20.638976826084466 + ] + }, + "properties": { + "id": "meter-17756", + "maker": "Maker H", + "model": "Model 17756", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.3992739169439, + 22.576084333064806 + ] + }, + "properties": { + "id": "meter-17757", + "maker": "Maker I", + "model": "Model 17757", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09510061644953, + 24.60754977312665 + ] + }, + "properties": { + "id": "meter-17758", + "maker": "Maker D", + "model": "Model 17758", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.82283713593433, + 27.512035403109582 + ] + }, + "properties": { + "id": "meter-17759", + "maker": "Maker E", + "model": "Model 17759", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.248078165996084, + 26.84110289131305 + ] + }, + "properties": { + "id": "meter-17760", + "maker": "Maker B", + "model": "Model 17760", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.59891433062731, + 22.118178114876443 + ] + }, + "properties": { + "id": "meter-17761", + "maker": "Maker A", + "model": "Model 17761", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.14328912679295, + 19.66620412967946 + ] + }, + "properties": { + "id": "meter-17762", + "maker": "Maker I", + "model": "Model 17762", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.943708813691785, + 19.69133805730929 + ] + }, + "properties": { + "id": "meter-17763", + "maker": "Maker I", + "model": "Model 17763", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.11340436457395, + 20.95891396427706 + ] + }, + "properties": { + "id": "meter-17764", + "maker": "Maker G", + "model": "Model 17764", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.432391087997566, + 19.88762852134962 + ] + }, + "properties": { + "id": "meter-17765", + "maker": "Maker I", + "model": "Model 17765", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.83129963685347, + 19.923122084242898 + ] + }, + "properties": { + "id": "meter-17766", + "maker": "Maker A", + "model": "Model 17766", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.40701669806664, + 18.506041770410402 + ] + }, + "properties": { + "id": "meter-17767", + "maker": "Maker G", + "model": "Model 17767", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.79518891093091, + 24.25572150294264 + ] + }, + "properties": { + "id": "meter-17768", + "maker": "Maker D", + "model": "Model 17768", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.89099685562557, + 22.33206859369649 + ] + }, + "properties": { + "id": "meter-17769", + "maker": "Maker H", + "model": "Model 17769", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.06302879946035, + 26.92992297327438 + ] + }, + "properties": { + "id": "meter-17770", + "maker": "Maker F", + "model": "Model 17770", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.698262707339296, + 20.40820601643592 + ] + }, + "properties": { + "id": "meter-17771", + "maker": "Maker G", + "model": "Model 17771", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.079613142016264, + 23.96272949531576 + ] + }, + "properties": { + "id": "meter-17772", + "maker": "Maker C", + "model": "Model 17772", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.26529412736524, + 22.85127763525128 + ] + }, + "properties": { + "id": "meter-17773", + "maker": "Maker A", + "model": "Model 17773", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.730580379747025, + 25.976857592751674 + ] + }, + "properties": { + "id": "meter-17774", + "maker": "Maker I", + "model": "Model 17774", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.43635689045202, + 29.727845607710485 + ] + }, + "properties": { + "id": "meter-17775", + "maker": "Maker G", + "model": "Model 17775", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.320938991056124, + 24.028602244424075 + ] + }, + "properties": { + "id": "meter-17776", + "maker": "Maker H", + "model": "Model 17776", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.41738506656253, + 27.513090675015846 + ] + }, + "properties": { + "id": "meter-17777", + "maker": "Maker B", + "model": "Model 17777", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.02788313603784, + 27.537683756768594 + ] + }, + "properties": { + "id": "meter-17778", + "maker": "Maker C", + "model": "Model 17778", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.77885814172139, + 28.70255440059079 + ] + }, + "properties": { + "id": "meter-17779", + "maker": "Maker E", + "model": "Model 17779", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.23247241205175, + 19.72997370382123 + ] + }, + "properties": { + "id": "meter-17780", + "maker": "Maker G", + "model": "Model 17780", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.205229902080575, + 24.57078649281658 + ] + }, + "properties": { + "id": "meter-17781", + "maker": "Maker J", + "model": "Model 17781", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.14259716248528, + 24.320095344081366 + ] + }, + "properties": { + "id": "meter-17782", + "maker": "Maker D", + "model": "Model 17782", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.65718077812844, + 25.021336316954283 + ] + }, + "properties": { + "id": "meter-17783", + "maker": "Maker D", + "model": "Model 17783", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.76030259844653, + 25.707783807569037 + ] + }, + "properties": { + "id": "meter-17784", + "maker": "Maker F", + "model": "Model 17784", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.29953303993524, + 21.751924928688695 + ] + }, + "properties": { + "id": "meter-17785", + "maker": "Maker A", + "model": "Model 17785", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.30750378756017, + 23.30071314359396 + ] + }, + "properties": { + "id": "meter-17786", + "maker": "Maker A", + "model": "Model 17786", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.838987458914275, + 24.836098286795497 + ] + }, + "properties": { + "id": "meter-17787", + "maker": "Maker A", + "model": "Model 17787", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.33403614202325, + 17.693692821030908 + ] + }, + "properties": { + "id": "meter-17788", + "maker": "Maker F", + "model": "Model 17788", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.64907624360228, + 20.99707338072546 + ] + }, + "properties": { + "id": "meter-17789", + "maker": "Maker D", + "model": "Model 17789", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.38162842332669, + 24.348297558214636 + ] + }, + "properties": { + "id": "meter-17790", + "maker": "Maker E", + "model": "Model 17790", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.62202998621194, + 25.026578099507194 + ] + }, + "properties": { + "id": "meter-17791", + "maker": "Maker J", + "model": "Model 17791", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11761633248997, + 25.51474199330805 + ] + }, + "properties": { + "id": "meter-17792", + "maker": "Maker E", + "model": "Model 17792", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.725795368499234, + 20.29242137031555 + ] + }, + "properties": { + "id": "meter-17793", + "maker": "Maker I", + "model": "Model 17793", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.00238631762516, + 31.369427398770476 + ] + }, + "properties": { + "id": "meter-17794", + "maker": "Maker E", + "model": "Model 17794", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.015243355571464, + 20.172788606090155 + ] + }, + "properties": { + "id": "meter-17795", + "maker": "Maker F", + "model": "Model 17795", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.80257269010371, + 28.15385660425286 + ] + }, + "properties": { + "id": "meter-17796", + "maker": "Maker E", + "model": "Model 17796", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.608775705803794, + 31.056842192330457 + ] + }, + "properties": { + "id": "meter-17797", + "maker": "Maker G", + "model": "Model 17797", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.69127112247808, + 25.1589141269045 + ] + }, + "properties": { + "id": "meter-17798", + "maker": "Maker H", + "model": "Model 17798", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.65632112890802, + 21.3305898025642 + ] + }, + "properties": { + "id": "meter-17799", + "maker": "Maker G", + "model": "Model 17799", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.26301602242545, + 19.76848858989298 + ] + }, + "properties": { + "id": "meter-17800", + "maker": "Maker G", + "model": "Model 17800", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.80273810201707, + 29.00038917892524 + ] + }, + "properties": { + "id": "meter-17801", + "maker": "Maker E", + "model": "Model 17801", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.74949934549806, + 30.35561584112832 + ] + }, + "properties": { + "id": "meter-17802", + "maker": "Maker B", + "model": "Model 17802", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.824604722960295, + 26.779413109094282 + ] + }, + "properties": { + "id": "meter-17803", + "maker": "Maker E", + "model": "Model 17803", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04945615860634, + 18.618967247444452 + ] + }, + "properties": { + "id": "meter-17804", + "maker": "Maker D", + "model": "Model 17804", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.22950007746008, + 27.03008459624379 + ] + }, + "properties": { + "id": "meter-17805", + "maker": "Maker H", + "model": "Model 17805", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.45146180308318, + 22.7196826554888 + ] + }, + "properties": { + "id": "meter-17806", + "maker": "Maker D", + "model": "Model 17806", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09999824919681, + 24.417645838348772 + ] + }, + "properties": { + "id": "meter-17807", + "maker": "Maker J", + "model": "Model 17807", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.89528217123574, + 19.832071802649573 + ] + }, + "properties": { + "id": "meter-17808", + "maker": "Maker C", + "model": "Model 17808", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.79444073375611, + 20.22912334578314 + ] + }, + "properties": { + "id": "meter-17809", + "maker": "Maker J", + "model": "Model 17809", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.428563244160785, + 27.13329032955711 + ] + }, + "properties": { + "id": "meter-17810", + "maker": "Maker C", + "model": "Model 17810", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.73732622620247, + 20.496287111879287 + ] + }, + "properties": { + "id": "meter-17811", + "maker": "Maker I", + "model": "Model 17811", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.38964783548836, + 28.871308150028064 + ] + }, + "properties": { + "id": "meter-17812", + "maker": "Maker C", + "model": "Model 17812", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.10858709246604, + 18.48148446926167 + ] + }, + "properties": { + "id": "meter-17813", + "maker": "Maker H", + "model": "Model 17813", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.225336366238466, + 22.948860186487078 + ] + }, + "properties": { + "id": "meter-17814", + "maker": "Maker J", + "model": "Model 17814", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.01518174783544, + 21.13588644041648 + ] + }, + "properties": { + "id": "meter-17815", + "maker": "Maker E", + "model": "Model 17815", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.2640384762512, + 28.865040592150383 + ] + }, + "properties": { + "id": "meter-17816", + "maker": "Maker J", + "model": "Model 17816", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.46222676420746, + 27.727701347630187 + ] + }, + "properties": { + "id": "meter-17817", + "maker": "Maker J", + "model": "Model 17817", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.975266328935916, + 21.179624123931184 + ] + }, + "properties": { + "id": "meter-17818", + "maker": "Maker G", + "model": "Model 17818", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.147002575817126, + 20.679225171768714 + ] + }, + "properties": { + "id": "meter-17819", + "maker": "Maker A", + "model": "Model 17819", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.728244559904006, + 24.649846299233133 + ] + }, + "properties": { + "id": "meter-17820", + "maker": "Maker H", + "model": "Model 17820", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.15124988970046, + 18.857369789315705 + ] + }, + "properties": { + "id": "meter-17821", + "maker": "Maker G", + "model": "Model 17821", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.310805387662626, + 30.954711335222687 + ] + }, + "properties": { + "id": "meter-17822", + "maker": "Maker A", + "model": "Model 17822", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.75786353701269, + 21.069260168224325 + ] + }, + "properties": { + "id": "meter-17823", + "maker": "Maker B", + "model": "Model 17823", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.37429738398575, + 27.69746605930366 + ] + }, + "properties": { + "id": "meter-17824", + "maker": "Maker J", + "model": "Model 17824", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.59914662777233, + 22.243320115879776 + ] + }, + "properties": { + "id": "meter-17825", + "maker": "Maker E", + "model": "Model 17825", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.04367636040682, + 28.961364537687597 + ] + }, + "properties": { + "id": "meter-17826", + "maker": "Maker F", + "model": "Model 17826", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.98617016809256, + 23.86586194014236 + ] + }, + "properties": { + "id": "meter-17827", + "maker": "Maker H", + "model": "Model 17827", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.80936917165976, + 28.628961175789712 + ] + }, + "properties": { + "id": "meter-17828", + "maker": "Maker J", + "model": "Model 17828", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.931658277821, + 23.464912456513687 + ] + }, + "properties": { + "id": "meter-17829", + "maker": "Maker C", + "model": "Model 17829", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.4287236191474, + 26.116568488505475 + ] + }, + "properties": { + "id": "meter-17830", + "maker": "Maker C", + "model": "Model 17830", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.83520842288591, + 21.745705063197285 + ] + }, + "properties": { + "id": "meter-17831", + "maker": "Maker B", + "model": "Model 17831", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.676180927940656, + 21.04914452430365 + ] + }, + "properties": { + "id": "meter-17832", + "maker": "Maker F", + "model": "Model 17832", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.99661269253036, + 24.551684600581694 + ] + }, + "properties": { + "id": "meter-17833", + "maker": "Maker F", + "model": "Model 17833", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.31703974183384, + 19.33548539520898 + ] + }, + "properties": { + "id": "meter-17834", + "maker": "Maker B", + "model": "Model 17834", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.63663591543434, + 20.295257553225362 + ] + }, + "properties": { + "id": "meter-17835", + "maker": "Maker E", + "model": "Model 17835", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.38805863682673, + 21.31602260209641 + ] + }, + "properties": { + "id": "meter-17836", + "maker": "Maker J", + "model": "Model 17836", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.7452015128829, + 30.641928603818542 + ] + }, + "properties": { + "id": "meter-17837", + "maker": "Maker G", + "model": "Model 17837", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09100366161956, + 18.858851180076766 + ] + }, + "properties": { + "id": "meter-17838", + "maker": "Maker B", + "model": "Model 17838", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.861557812503534, + 20.513917132131454 + ] + }, + "properties": { + "id": "meter-17839", + "maker": "Maker C", + "model": "Model 17839", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.57207751466193, + 21.174525427642187 + ] + }, + "properties": { + "id": "meter-17840", + "maker": "Maker D", + "model": "Model 17840", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.38491170919099, + 21.066727230982355 + ] + }, + "properties": { + "id": "meter-17841", + "maker": "Maker G", + "model": "Model 17841", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.37521823506215, + 25.541076498259663 + ] + }, + "properties": { + "id": "meter-17842", + "maker": "Maker B", + "model": "Model 17842", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.22792661543609, + 18.969376702945574 + ] + }, + "properties": { + "id": "meter-17843", + "maker": "Maker E", + "model": "Model 17843", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.74625014363788, + 24.985114971565693 + ] + }, + "properties": { + "id": "meter-17844", + "maker": "Maker B", + "model": "Model 17844", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.31274236656006, + 19.274601146335225 + ] + }, + "properties": { + "id": "meter-17845", + "maker": "Maker B", + "model": "Model 17845", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.69699800381968, + 18.48748540536094 + ] + }, + "properties": { + "id": "meter-17846", + "maker": "Maker F", + "model": "Model 17846", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.034431537155356, + 18.37330471934498 + ] + }, + "properties": { + "id": "meter-17847", + "maker": "Maker I", + "model": "Model 17847", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.63900460919324, + 22.91763004344859 + ] + }, + "properties": { + "id": "meter-17848", + "maker": "Maker F", + "model": "Model 17848", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.650059749780546, + 28.941923453445185 + ] + }, + "properties": { + "id": "meter-17849", + "maker": "Maker G", + "model": "Model 17849", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.539778165030604, + 23.273096732053446 + ] + }, + "properties": { + "id": "meter-17850", + "maker": "Maker F", + "model": "Model 17850", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.80934614971219, + 28.377939586788422 + ] + }, + "properties": { + "id": "meter-17851", + "maker": "Maker D", + "model": "Model 17851", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.424984513213616, + 19.12771254970817 + ] + }, + "properties": { + "id": "meter-17852", + "maker": "Maker J", + "model": "Model 17852", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.82585096595213, + 24.253742804359106 + ] + }, + "properties": { + "id": "meter-17853", + "maker": "Maker F", + "model": "Model 17853", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.28018806536017, + 19.176982157743247 + ] + }, + "properties": { + "id": "meter-17854", + "maker": "Maker C", + "model": "Model 17854", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.571291501436015, + 28.615405122914936 + ] + }, + "properties": { + "id": "meter-17855", + "maker": "Maker I", + "model": "Model 17855", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.18532865262879, + 24.57707377287874 + ] + }, + "properties": { + "id": "meter-17856", + "maker": "Maker F", + "model": "Model 17856", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.394319010178805, + 21.179325734736018 + ] + }, + "properties": { + "id": "meter-17857", + "maker": "Maker I", + "model": "Model 17857", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.848223512283, + 29.317961705198158 + ] + }, + "properties": { + "id": "meter-17858", + "maker": "Maker A", + "model": "Model 17858", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.517021326578636, + 19.961521375621963 + ] + }, + "properties": { + "id": "meter-17859", + "maker": "Maker B", + "model": "Model 17859", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.88198569113526, + 25.224435934396247 + ] + }, + "properties": { + "id": "meter-17860", + "maker": "Maker B", + "model": "Model 17860", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.989719583847005, + 19.98434885275061 + ] + }, + "properties": { + "id": "meter-17861", + "maker": "Maker E", + "model": "Model 17861", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.59869764013105, + 24.941322666725753 + ] + }, + "properties": { + "id": "meter-17862", + "maker": "Maker A", + "model": "Model 17862", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.209087069718734, + 24.60711477859228 + ] + }, + "properties": { + "id": "meter-17863", + "maker": "Maker D", + "model": "Model 17863", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.64435800438259, + 19.80038198584268 + ] + }, + "properties": { + "id": "meter-17864", + "maker": "Maker B", + "model": "Model 17864", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.878594727056885, + 26.156312332537148 + ] + }, + "properties": { + "id": "meter-17865", + "maker": "Maker A", + "model": "Model 17865", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.66053983968144, + 28.720128141180272 + ] + }, + "properties": { + "id": "meter-17866", + "maker": "Maker G", + "model": "Model 17866", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.932923979474566, + 28.257554997975475 + ] + }, + "properties": { + "id": "meter-17867", + "maker": "Maker A", + "model": "Model 17867", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.306828357461015, + 22.776499972348752 + ] + }, + "properties": { + "id": "meter-17868", + "maker": "Maker F", + "model": "Model 17868", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.585084047665134, + 29.380955883378796 + ] + }, + "properties": { + "id": "meter-17869", + "maker": "Maker C", + "model": "Model 17869", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.89781542359695, + 29.71233809444065 + ] + }, + "properties": { + "id": "meter-17870", + "maker": "Maker C", + "model": "Model 17870", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8191364516806, + 28.797232925144318 + ] + }, + "properties": { + "id": "meter-17871", + "maker": "Maker C", + "model": "Model 17871", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.64274777364132, + 21.350917452009405 + ] + }, + "properties": { + "id": "meter-17872", + "maker": "Maker G", + "model": "Model 17872", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.821209660018866, + 18.824769048123425 + ] + }, + "properties": { + "id": "meter-17873", + "maker": "Maker G", + "model": "Model 17873", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.77059226594752, + 26.472657653738175 + ] + }, + "properties": { + "id": "meter-17874", + "maker": "Maker G", + "model": "Model 17874", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.84724847840276, + 27.432528698191874 + ] + }, + "properties": { + "id": "meter-17875", + "maker": "Maker A", + "model": "Model 17875", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.892326265769924, + 21.97409676687258 + ] + }, + "properties": { + "id": "meter-17876", + "maker": "Maker D", + "model": "Model 17876", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.577320730117854, + 23.76553395394107 + ] + }, + "properties": { + "id": "meter-17877", + "maker": "Maker H", + "model": "Model 17877", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.68910033947076, + 22.084234997964664 + ] + }, + "properties": { + "id": "meter-17878", + "maker": "Maker G", + "model": "Model 17878", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.003426248389495, + 19.890471477530888 + ] + }, + "properties": { + "id": "meter-17879", + "maker": "Maker C", + "model": "Model 17879", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.401708237117234, + 23.795937966816577 + ] + }, + "properties": { + "id": "meter-17880", + "maker": "Maker H", + "model": "Model 17880", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.03171844237587, + 23.702706363382394 + ] + }, + "properties": { + "id": "meter-17881", + "maker": "Maker A", + "model": "Model 17881", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.83934478019431, + 26.535054790967315 + ] + }, + "properties": { + "id": "meter-17882", + "maker": "Maker B", + "model": "Model 17882", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93853001480011, + 26.00068800409195 + ] + }, + "properties": { + "id": "meter-17883", + "maker": "Maker J", + "model": "Model 17883", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.928194859810475, + 31.812819799345935 + ] + }, + "properties": { + "id": "meter-17884", + "maker": "Maker J", + "model": "Model 17884", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.6171987597145, + 28.06448922045228 + ] + }, + "properties": { + "id": "meter-17885", + "maker": "Maker C", + "model": "Model 17885", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.17578804025847, + 29.373917719772756 + ] + }, + "properties": { + "id": "meter-17886", + "maker": "Maker G", + "model": "Model 17886", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.97347316322358, + 29.86663477447802 + ] + }, + "properties": { + "id": "meter-17887", + "maker": "Maker C", + "model": "Model 17887", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.477080125271, + 27.372549273575117 + ] + }, + "properties": { + "id": "meter-17888", + "maker": "Maker A", + "model": "Model 17888", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93777098900118, + 31.7895732865648 + ] + }, + "properties": { + "id": "meter-17889", + "maker": "Maker F", + "model": "Model 17889", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.71046449541131, + 26.081835670408108 + ] + }, + "properties": { + "id": "meter-17890", + "maker": "Maker D", + "model": "Model 17890", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.32143319456491, + 23.064053029127805 + ] + }, + "properties": { + "id": "meter-17891", + "maker": "Maker E", + "model": "Model 17891", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.901528837464994, + 20.376207345057033 + ] + }, + "properties": { + "id": "meter-17892", + "maker": "Maker A", + "model": "Model 17892", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.81213003105644, + 29.03074728370798 + ] + }, + "properties": { + "id": "meter-17893", + "maker": "Maker F", + "model": "Model 17893", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.10908119159204, + 25.37758222540267 + ] + }, + "properties": { + "id": "meter-17894", + "maker": "Maker H", + "model": "Model 17894", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.6033849254354, + 18.987174234934145 + ] + }, + "properties": { + "id": "meter-17895", + "maker": "Maker G", + "model": "Model 17895", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.55522469142713, + 21.040625218710154 + ] + }, + "properties": { + "id": "meter-17896", + "maker": "Maker B", + "model": "Model 17896", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.75024186542256, + 31.90083553620243 + ] + }, + "properties": { + "id": "meter-17897", + "maker": "Maker A", + "model": "Model 17897", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.190655072385155, + 19.7258528640648 + ] + }, + "properties": { + "id": "meter-17898", + "maker": "Maker I", + "model": "Model 17898", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.48124589837694, + 26.3514509536082 + ] + }, + "properties": { + "id": "meter-17899", + "maker": "Maker I", + "model": "Model 17899", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.232551109658274, + 20.308757299708066 + ] + }, + "properties": { + "id": "meter-17900", + "maker": "Maker I", + "model": "Model 17900", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.57117330987129, + 28.602519238558298 + ] + }, + "properties": { + "id": "meter-17901", + "maker": "Maker B", + "model": "Model 17901", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.20296237895569, + 18.701595856560743 + ] + }, + "properties": { + "id": "meter-17902", + "maker": "Maker I", + "model": "Model 17902", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.28049390339918, + 26.813294162115255 + ] + }, + "properties": { + "id": "meter-17903", + "maker": "Maker A", + "model": "Model 17903", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.17390254186395, + 19.6606865591019 + ] + }, + "properties": { + "id": "meter-17904", + "maker": "Maker F", + "model": "Model 17904", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.745342364310915, + 29.673909746490402 + ] + }, + "properties": { + "id": "meter-17905", + "maker": "Maker A", + "model": "Model 17905", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.08725706783978, + 24.897185170408154 + ] + }, + "properties": { + "id": "meter-17906", + "maker": "Maker H", + "model": "Model 17906", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.37118149000657, + 27.112786873982035 + ] + }, + "properties": { + "id": "meter-17907", + "maker": "Maker G", + "model": "Model 17907", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.628047335499346, + 25.715038984607173 + ] + }, + "properties": { + "id": "meter-17908", + "maker": "Maker E", + "model": "Model 17908", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.68858563554956, + 24.34708494644297 + ] + }, + "properties": { + "id": "meter-17909", + "maker": "Maker I", + "model": "Model 17909", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.52995735773803, + 24.84754620058845 + ] + }, + "properties": { + "id": "meter-17910", + "maker": "Maker H", + "model": "Model 17910", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.12117054651371, + 20.847519820169953 + ] + }, + "properties": { + "id": "meter-17911", + "maker": "Maker F", + "model": "Model 17911", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.35421927566516, + 31.60062591125773 + ] + }, + "properties": { + "id": "meter-17912", + "maker": "Maker J", + "model": "Model 17912", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.09919367850304, + 17.276606613722997 + ] + }, + "properties": { + "id": "meter-17913", + "maker": "Maker C", + "model": "Model 17913", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.84714912566257, + 17.835421639931464 + ] + }, + "properties": { + "id": "meter-17914", + "maker": "Maker A", + "model": "Model 17914", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.30328620230939, + 19.28614050271996 + ] + }, + "properties": { + "id": "meter-17915", + "maker": "Maker F", + "model": "Model 17915", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.7266782382043, + 26.614679497711933 + ] + }, + "properties": { + "id": "meter-17916", + "maker": "Maker D", + "model": "Model 17916", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.943133713862984, + 19.46827804482475 + ] + }, + "properties": { + "id": "meter-17917", + "maker": "Maker H", + "model": "Model 17917", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.43484788869107, + 24.122030393797477 + ] + }, + "properties": { + "id": "meter-17918", + "maker": "Maker B", + "model": "Model 17918", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.415673379233866, + 25.01311592788823 + ] + }, + "properties": { + "id": "meter-17919", + "maker": "Maker H", + "model": "Model 17919", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.051635401620594, + 28.4214350343261 + ] + }, + "properties": { + "id": "meter-17920", + "maker": "Maker I", + "model": "Model 17920", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.510013134483856, + 26.772696408246386 + ] + }, + "properties": { + "id": "meter-17921", + "maker": "Maker I", + "model": "Model 17921", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.46982834907305, + 23.934815817176286 + ] + }, + "properties": { + "id": "meter-17922", + "maker": "Maker J", + "model": "Model 17922", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.57463505032304, + 18.312747382005437 + ] + }, + "properties": { + "id": "meter-17923", + "maker": "Maker D", + "model": "Model 17923", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01930023149965, + 25.087191300882445 + ] + }, + "properties": { + "id": "meter-17924", + "maker": "Maker C", + "model": "Model 17924", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.915600167877784, + 19.70603940334273 + ] + }, + "properties": { + "id": "meter-17925", + "maker": "Maker I", + "model": "Model 17925", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.01721247578798, + 20.38984363877608 + ] + }, + "properties": { + "id": "meter-17926", + "maker": "Maker C", + "model": "Model 17926", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.542017589005354, + 30.340727858048275 + ] + }, + "properties": { + "id": "meter-17927", + "maker": "Maker E", + "model": "Model 17927", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.91566081690425, + 19.904401867773874 + ] + }, + "properties": { + "id": "meter-17928", + "maker": "Maker F", + "model": "Model 17928", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.42485338060065, + 22.174210924447394 + ] + }, + "properties": { + "id": "meter-17929", + "maker": "Maker E", + "model": "Model 17929", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.123065154614764, + 28.453091459359612 + ] + }, + "properties": { + "id": "meter-17930", + "maker": "Maker F", + "model": "Model 17930", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.831279628627556, + 22.490634230480705 + ] + }, + "properties": { + "id": "meter-17931", + "maker": "Maker I", + "model": "Model 17931", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.05170305222688, + 21.323831998568153 + ] + }, + "properties": { + "id": "meter-17932", + "maker": "Maker B", + "model": "Model 17932", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.26853030148037, + 25.830790870144682 + ] + }, + "properties": { + "id": "meter-17933", + "maker": "Maker J", + "model": "Model 17933", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.98570654889068, + 19.32527063681429 + ] + }, + "properties": { + "id": "meter-17934", + "maker": "Maker E", + "model": "Model 17934", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.063254668223905, + 21.749935577828293 + ] + }, + "properties": { + "id": "meter-17935", + "maker": "Maker D", + "model": "Model 17935", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.6924793991395, + 23.479615977484382 + ] + }, + "properties": { + "id": "meter-17936", + "maker": "Maker I", + "model": "Model 17936", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.22681282526343, + 22.911230603782805 + ] + }, + "properties": { + "id": "meter-17937", + "maker": "Maker J", + "model": "Model 17937", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.855757044010524, + 28.85249963637571 + ] + }, + "properties": { + "id": "meter-17938", + "maker": "Maker J", + "model": "Model 17938", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.186608471918866, + 25.18823192608807 + ] + }, + "properties": { + "id": "meter-17939", + "maker": "Maker A", + "model": "Model 17939", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.10697038510665, + 22.197225224387765 + ] + }, + "properties": { + "id": "meter-17940", + "maker": "Maker E", + "model": "Model 17940", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.59920650188633, + 27.583781437857695 + ] + }, + "properties": { + "id": "meter-17941", + "maker": "Maker H", + "model": "Model 17941", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.752397584569046, + 30.06436655165052 + ] + }, + "properties": { + "id": "meter-17942", + "maker": "Maker H", + "model": "Model 17942", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.000676017380535, + 28.356008712886876 + ] + }, + "properties": { + "id": "meter-17943", + "maker": "Maker H", + "model": "Model 17943", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.782926207670826, + 29.03727939005978 + ] + }, + "properties": { + "id": "meter-17944", + "maker": "Maker C", + "model": "Model 17944", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.36116717761993, + 21.55803320665111 + ] + }, + "properties": { + "id": "meter-17945", + "maker": "Maker A", + "model": "Model 17945", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.53492456230053, + 28.665782123438103 + ] + }, + "properties": { + "id": "meter-17946", + "maker": "Maker J", + "model": "Model 17946", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.08410156277798, + 21.961769490562013 + ] + }, + "properties": { + "id": "meter-17947", + "maker": "Maker G", + "model": "Model 17947", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.5394713353908, + 19.91723193665229 + ] + }, + "properties": { + "id": "meter-17948", + "maker": "Maker D", + "model": "Model 17948", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.80593454877504, + 26.973838038712326 + ] + }, + "properties": { + "id": "meter-17949", + "maker": "Maker A", + "model": "Model 17949", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.217397957671906, + 24.703767511511614 + ] + }, + "properties": { + "id": "meter-17950", + "maker": "Maker A", + "model": "Model 17950", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.30611026874749, + 23.28679587917101 + ] + }, + "properties": { + "id": "meter-17951", + "maker": "Maker J", + "model": "Model 17951", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.62181818562996, + 28.116829155055946 + ] + }, + "properties": { + "id": "meter-17952", + "maker": "Maker J", + "model": "Model 17952", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.13652759464208, + 27.88125694121547 + ] + }, + "properties": { + "id": "meter-17953", + "maker": "Maker F", + "model": "Model 17953", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.46401876234813, + 23.78103833361771 + ] + }, + "properties": { + "id": "meter-17954", + "maker": "Maker I", + "model": "Model 17954", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.90195464690015, + 22.99630454981346 + ] + }, + "properties": { + "id": "meter-17955", + "maker": "Maker B", + "model": "Model 17955", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.47206284691322, + 23.45681819878038 + ] + }, + "properties": { + "id": "meter-17956", + "maker": "Maker B", + "model": "Model 17956", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.393596948446024, + 21.630653950800955 + ] + }, + "properties": { + "id": "meter-17957", + "maker": "Maker B", + "model": "Model 17957", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.48096311068788, + 21.55740781710416 + ] + }, + "properties": { + "id": "meter-17958", + "maker": "Maker G", + "model": "Model 17958", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.02994787068704, + 26.61807872898699 + ] + }, + "properties": { + "id": "meter-17959", + "maker": "Maker B", + "model": "Model 17959", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.683725835656816, + 20.059825712194865 + ] + }, + "properties": { + "id": "meter-17960", + "maker": "Maker C", + "model": "Model 17960", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.230952061358714, + 21.430306667814545 + ] + }, + "properties": { + "id": "meter-17961", + "maker": "Maker E", + "model": "Model 17961", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.121987656724116, + 23.041324393370118 + ] + }, + "properties": { + "id": "meter-17962", + "maker": "Maker F", + "model": "Model 17962", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.478384370466834, + 26.26272164712035 + ] + }, + "properties": { + "id": "meter-17963", + "maker": "Maker F", + "model": "Model 17963", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.99636965925102, + 20.173693994539796 + ] + }, + "properties": { + "id": "meter-17964", + "maker": "Maker A", + "model": "Model 17964", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.39978273338098, + 23.774292936973097 + ] + }, + "properties": { + "id": "meter-17965", + "maker": "Maker F", + "model": "Model 17965", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.56337914512321, + 18.750286942686813 + ] + }, + "properties": { + "id": "meter-17966", + "maker": "Maker E", + "model": "Model 17966", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.868341724096666, + 29.01636418693343 + ] + }, + "properties": { + "id": "meter-17967", + "maker": "Maker C", + "model": "Model 17967", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.01007017453285, + 25.4312140681661 + ] + }, + "properties": { + "id": "meter-17968", + "maker": "Maker D", + "model": "Model 17968", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.23284150679167, + 23.525220073142695 + ] + }, + "properties": { + "id": "meter-17969", + "maker": "Maker B", + "model": "Model 17969", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.77436076097996, + 19.967281842236943 + ] + }, + "properties": { + "id": "meter-17970", + "maker": "Maker D", + "model": "Model 17970", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.75452622206787, + 17.43859146733142 + ] + }, + "properties": { + "id": "meter-17971", + "maker": "Maker D", + "model": "Model 17971", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.60465344970553, + 22.203876279613286 + ] + }, + "properties": { + "id": "meter-17972", + "maker": "Maker E", + "model": "Model 17972", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.42029244912341, + 26.20548252745624 + ] + }, + "properties": { + "id": "meter-17973", + "maker": "Maker J", + "model": "Model 17973", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.32042455104512, + 25.15065730778997 + ] + }, + "properties": { + "id": "meter-17974", + "maker": "Maker H", + "model": "Model 17974", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.512547406561566, + 25.42123377133737 + ] + }, + "properties": { + "id": "meter-17975", + "maker": "Maker H", + "model": "Model 17975", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.60258597240869, + 23.119871693095313 + ] + }, + "properties": { + "id": "meter-17976", + "maker": "Maker C", + "model": "Model 17976", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.15701953650614, + 24.724115044335875 + ] + }, + "properties": { + "id": "meter-17977", + "maker": "Maker I", + "model": "Model 17977", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.75270732886975, + 21.595008566633958 + ] + }, + "properties": { + "id": "meter-17978", + "maker": "Maker F", + "model": "Model 17978", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.92824210445529, + 20.277108554969022 + ] + }, + "properties": { + "id": "meter-17979", + "maker": "Maker J", + "model": "Model 17979", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.40000656922259, + 30.458805005291126 + ] + }, + "properties": { + "id": "meter-17980", + "maker": "Maker D", + "model": "Model 17980", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.352500215557626, + 17.51427955788271 + ] + }, + "properties": { + "id": "meter-17981", + "maker": "Maker F", + "model": "Model 17981", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.504315306822384, + 22.259395293774695 + ] + }, + "properties": { + "id": "meter-17982", + "maker": "Maker H", + "model": "Model 17982", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.701674802522504, + 20.989256878042138 + ] + }, + "properties": { + "id": "meter-17983", + "maker": "Maker A", + "model": "Model 17983", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.807221192637314, + 26.683194596857156 + ] + }, + "properties": { + "id": "meter-17984", + "maker": "Maker D", + "model": "Model 17984", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.38487192531944, + 24.430184794703656 + ] + }, + "properties": { + "id": "meter-17985", + "maker": "Maker B", + "model": "Model 17985", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.86987351795395, + 20.14247866638311 + ] + }, + "properties": { + "id": "meter-17986", + "maker": "Maker D", + "model": "Model 17986", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.255140016028825, + 26.858131879181514 + ] + }, + "properties": { + "id": "meter-17987", + "maker": "Maker H", + "model": "Model 17987", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.51138817807309, + 26.77143489480326 + ] + }, + "properties": { + "id": "meter-17988", + "maker": "Maker C", + "model": "Model 17988", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.341882249367465, + 27.941648613120023 + ] + }, + "properties": { + "id": "meter-17989", + "maker": "Maker F", + "model": "Model 17989", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.45233698407049, + 25.02138376625337 + ] + }, + "properties": { + "id": "meter-17990", + "maker": "Maker J", + "model": "Model 17990", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.29066402009876, + 29.075779694350288 + ] + }, + "properties": { + "id": "meter-17991", + "maker": "Maker J", + "model": "Model 17991", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.372009232857465, + 27.915224912983916 + ] + }, + "properties": { + "id": "meter-17992", + "maker": "Maker G", + "model": "Model 17992", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.23071765372297, + 21.54000658620807 + ] + }, + "properties": { + "id": "meter-17993", + "maker": "Maker F", + "model": "Model 17993", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.28777532916632, + 30.788662269029924 + ] + }, + "properties": { + "id": "meter-17994", + "maker": "Maker E", + "model": "Model 17994", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.91115915129028, + 27.935888819718134 + ] + }, + "properties": { + "id": "meter-17995", + "maker": "Maker H", + "model": "Model 17995", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.6555743085985, + 27.525414086401796 + ] + }, + "properties": { + "id": "meter-17996", + "maker": "Maker J", + "model": "Model 17996", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.510678139172846, + 28.601059400838963 + ] + }, + "properties": { + "id": "meter-17997", + "maker": "Maker J", + "model": "Model 17997", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.794838801574734, + 27.578318206963186 + ] + }, + "properties": { + "id": "meter-17998", + "maker": "Maker C", + "model": "Model 17998", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.886210920416644, + 22.39306035978251 + ] + }, + "properties": { + "id": "meter-17999", + "maker": "Maker I", + "model": "Model 17999", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.47602135608274, + 28.69993781842767 + ] + }, + "properties": { + "id": "meter-18000", + "maker": "Maker A", + "model": "Model 18000", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.52549517197309, + 22.731005677284777 + ] + }, + "properties": { + "id": "meter-18001", + "maker": "Maker C", + "model": "Model 18001", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.996157316650795, + 27.519056644932007 + ] + }, + "properties": { + "id": "meter-18002", + "maker": "Maker C", + "model": "Model 18002", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.53001315485767, + 25.16599759043214 + ] + }, + "properties": { + "id": "meter-18003", + "maker": "Maker I", + "model": "Model 18003", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.86682066105168, + 27.789331215479233 + ] + }, + "properties": { + "id": "meter-18004", + "maker": "Maker A", + "model": "Model 18004", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.83947152138746, + 31.332830549556533 + ] + }, + "properties": { + "id": "meter-18005", + "maker": "Maker H", + "model": "Model 18005", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.07382687045831, + 26.91717639505853 + ] + }, + "properties": { + "id": "meter-18006", + "maker": "Maker F", + "model": "Model 18006", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.68353826895137, + 26.262052657376938 + ] + }, + "properties": { + "id": "meter-18007", + "maker": "Maker D", + "model": "Model 18007", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.917169769501626, + 24.11942008654182 + ] + }, + "properties": { + "id": "meter-18008", + "maker": "Maker D", + "model": "Model 18008", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.75735865458592, + 23.58451958558431 + ] + }, + "properties": { + "id": "meter-18009", + "maker": "Maker I", + "model": "Model 18009", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.36863689939646, + 23.41485242440771 + ] + }, + "properties": { + "id": "meter-18010", + "maker": "Maker D", + "model": "Model 18010", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.19562856923246, + 29.12313135573216 + ] + }, + "properties": { + "id": "meter-18011", + "maker": "Maker I", + "model": "Model 18011", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.01515714613882, + 25.350662175393126 + ] + }, + "properties": { + "id": "meter-18012", + "maker": "Maker A", + "model": "Model 18012", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.69670998583176, + 21.968661758617795 + ] + }, + "properties": { + "id": "meter-18013", + "maker": "Maker I", + "model": "Model 18013", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.52802234736144, + 20.134821077149805 + ] + }, + "properties": { + "id": "meter-18014", + "maker": "Maker J", + "model": "Model 18014", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.22190158693692, + 24.86061074094835 + ] + }, + "properties": { + "id": "meter-18015", + "maker": "Maker E", + "model": "Model 18015", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.24733146479378, + 21.874379324491784 + ] + }, + "properties": { + "id": "meter-18016", + "maker": "Maker J", + "model": "Model 18016", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.19318821926937, + 28.346930174118626 + ] + }, + "properties": { + "id": "meter-18017", + "maker": "Maker D", + "model": "Model 18017", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.33636116161261, + 26.47851894053374 + ] + }, + "properties": { + "id": "meter-18018", + "maker": "Maker C", + "model": "Model 18018", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92210971579378, + 27.071561786655238 + ] + }, + "properties": { + "id": "meter-18019", + "maker": "Maker B", + "model": "Model 18019", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.81156517417594, + 27.65009298653964 + ] + }, + "properties": { + "id": "meter-18020", + "maker": "Maker J", + "model": "Model 18020", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.81488112347251, + 20.56455801889203 + ] + }, + "properties": { + "id": "meter-18021", + "maker": "Maker A", + "model": "Model 18021", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.30118098032002, + 21.72641846429118 + ] + }, + "properties": { + "id": "meter-18022", + "maker": "Maker I", + "model": "Model 18022", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.05514006123113, + 20.09331542941775 + ] + }, + "properties": { + "id": "meter-18023", + "maker": "Maker J", + "model": "Model 18023", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.623849839111855, + 17.76416858868687 + ] + }, + "properties": { + "id": "meter-18024", + "maker": "Maker B", + "model": "Model 18024", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.184369062824075, + 18.892733455019826 + ] + }, + "properties": { + "id": "meter-18025", + "maker": "Maker I", + "model": "Model 18025", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.26981352573601, + 24.92999077130494 + ] + }, + "properties": { + "id": "meter-18026", + "maker": "Maker D", + "model": "Model 18026", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.26173480548223, + 29.037016764012044 + ] + }, + "properties": { + "id": "meter-18027", + "maker": "Maker J", + "model": "Model 18027", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.57848109496149, + 20.49952103612195 + ] + }, + "properties": { + "id": "meter-18028", + "maker": "Maker I", + "model": "Model 18028", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.17901911255432, + 17.44374873341812 + ] + }, + "properties": { + "id": "meter-18029", + "maker": "Maker D", + "model": "Model 18029", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.788672258441835, + 18.080028621288783 + ] + }, + "properties": { + "id": "meter-18030", + "maker": "Maker B", + "model": "Model 18030", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.72609573483716, + 28.615015091001553 + ] + }, + "properties": { + "id": "meter-18031", + "maker": "Maker A", + "model": "Model 18031", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.20159065607862, + 27.079031451376814 + ] + }, + "properties": { + "id": "meter-18032", + "maker": "Maker H", + "model": "Model 18032", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92358490061886, + 26.085530145200817 + ] + }, + "properties": { + "id": "meter-18033", + "maker": "Maker E", + "model": "Model 18033", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.66701780687117, + 20.43167004532934 + ] + }, + "properties": { + "id": "meter-18034", + "maker": "Maker A", + "model": "Model 18034", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.98507083200476, + 25.861207119664094 + ] + }, + "properties": { + "id": "meter-18035", + "maker": "Maker D", + "model": "Model 18035", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.29955524577929, + 24.949965563019994 + ] + }, + "properties": { + "id": "meter-18036", + "maker": "Maker E", + "model": "Model 18036", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.15422821463516, + 21.57590881762089 + ] + }, + "properties": { + "id": "meter-18037", + "maker": "Maker G", + "model": "Model 18037", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.64477128596099, + 20.903531210099864 + ] + }, + "properties": { + "id": "meter-18038", + "maker": "Maker A", + "model": "Model 18038", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.025339896130525, + 19.652054761510612 + ] + }, + "properties": { + "id": "meter-18039", + "maker": "Maker G", + "model": "Model 18039", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.24964743727367, + 20.988586935263413 + ] + }, + "properties": { + "id": "meter-18040", + "maker": "Maker G", + "model": "Model 18040", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.96981578606056, + 20.394049141287642 + ] + }, + "properties": { + "id": "meter-18041", + "maker": "Maker A", + "model": "Model 18041", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.47406556980441, + 21.925267276219714 + ] + }, + "properties": { + "id": "meter-18042", + "maker": "Maker H", + "model": "Model 18042", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.89328058856093, + 26.522698498025655 + ] + }, + "properties": { + "id": "meter-18043", + "maker": "Maker B", + "model": "Model 18043", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.36370517254155, + 24.62419350035641 + ] + }, + "properties": { + "id": "meter-18044", + "maker": "Maker A", + "model": "Model 18044", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.522560704890545, + 26.103703645553207 + ] + }, + "properties": { + "id": "meter-18045", + "maker": "Maker B", + "model": "Model 18045", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.89314000925151, + 21.497127394856076 + ] + }, + "properties": { + "id": "meter-18046", + "maker": "Maker B", + "model": "Model 18046", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.86086799472433, + 21.063178737244083 + ] + }, + "properties": { + "id": "meter-18047", + "maker": "Maker G", + "model": "Model 18047", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.79596205279917, + 20.66900257312542 + ] + }, + "properties": { + "id": "meter-18048", + "maker": "Maker F", + "model": "Model 18048", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.95141807408377, + 28.938006245517414 + ] + }, + "properties": { + "id": "meter-18049", + "maker": "Maker C", + "model": "Model 18049", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.325813715314524, + 25.338838668061783 + ] + }, + "properties": { + "id": "meter-18050", + "maker": "Maker B", + "model": "Model 18050", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.64183632558666, + 24.586348714231487 + ] + }, + "properties": { + "id": "meter-18051", + "maker": "Maker F", + "model": "Model 18051", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.83025025200635, + 21.664159292969572 + ] + }, + "properties": { + "id": "meter-18052", + "maker": "Maker F", + "model": "Model 18052", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.66084201099138, + 18.92287066874684 + ] + }, + "properties": { + "id": "meter-18053", + "maker": "Maker B", + "model": "Model 18053", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.2402713526432, + 20.100998948052183 + ] + }, + "properties": { + "id": "meter-18054", + "maker": "Maker H", + "model": "Model 18054", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.849835247403355, + 18.182125962806364 + ] + }, + "properties": { + "id": "meter-18055", + "maker": "Maker E", + "model": "Model 18055", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.09765467358884, + 26.32463703575537 + ] + }, + "properties": { + "id": "meter-18056", + "maker": "Maker F", + "model": "Model 18056", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.746534182577776, + 28.083873238926323 + ] + }, + "properties": { + "id": "meter-18057", + "maker": "Maker G", + "model": "Model 18057", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.70502299737079, + 23.312009103074548 + ] + }, + "properties": { + "id": "meter-18058", + "maker": "Maker B", + "model": "Model 18058", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.124609872709314, + 27.03171898809169 + ] + }, + "properties": { + "id": "meter-18059", + "maker": "Maker A", + "model": "Model 18059", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.41829549869048, + 23.50822812857321 + ] + }, + "properties": { + "id": "meter-18060", + "maker": "Maker A", + "model": "Model 18060", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.89887464955792, + 24.13737266392169 + ] + }, + "properties": { + "id": "meter-18061", + "maker": "Maker F", + "model": "Model 18061", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.81375817948261, + 22.691694885192693 + ] + }, + "properties": { + "id": "meter-18062", + "maker": "Maker B", + "model": "Model 18062", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.570922738941036, + 21.27057359143313 + ] + }, + "properties": { + "id": "meter-18063", + "maker": "Maker B", + "model": "Model 18063", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.420886423497194, + 24.895803215331103 + ] + }, + "properties": { + "id": "meter-18064", + "maker": "Maker A", + "model": "Model 18064", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.216563658751866, + 21.23256455023057 + ] + }, + "properties": { + "id": "meter-18065", + "maker": "Maker I", + "model": "Model 18065", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.24648022443354, + 22.576215383656745 + ] + }, + "properties": { + "id": "meter-18066", + "maker": "Maker C", + "model": "Model 18066", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.28956388090025, + 26.484274610301846 + ] + }, + "properties": { + "id": "meter-18067", + "maker": "Maker F", + "model": "Model 18067", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.952507499341415, + 29.167885896690116 + ] + }, + "properties": { + "id": "meter-18068", + "maker": "Maker D", + "model": "Model 18068", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.442563059486915, + 18.381389927833567 + ] + }, + "properties": { + "id": "meter-18069", + "maker": "Maker H", + "model": "Model 18069", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.31308094063338, + 21.565139516422995 + ] + }, + "properties": { + "id": "meter-18070", + "maker": "Maker G", + "model": "Model 18070", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.4201675428315, + 27.518496458605174 + ] + }, + "properties": { + "id": "meter-18071", + "maker": "Maker G", + "model": "Model 18071", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.15743795159105, + 19.496841284846553 + ] + }, + "properties": { + "id": "meter-18072", + "maker": "Maker B", + "model": "Model 18072", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.707930783016074, + 24.358223766792317 + ] + }, + "properties": { + "id": "meter-18073", + "maker": "Maker F", + "model": "Model 18073", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.321683028971236, + 17.192139311634033 + ] + }, + "properties": { + "id": "meter-18074", + "maker": "Maker D", + "model": "Model 18074", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.99936935273976, + 20.447140567776238 + ] + }, + "properties": { + "id": "meter-18075", + "maker": "Maker C", + "model": "Model 18075", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.5476153220621, + 22.35036785295481 + ] + }, + "properties": { + "id": "meter-18076", + "maker": "Maker C", + "model": "Model 18076", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.719727427992936, + 22.339889488609593 + ] + }, + "properties": { + "id": "meter-18077", + "maker": "Maker H", + "model": "Model 18077", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.737345620008156, + 23.819636785631424 + ] + }, + "properties": { + "id": "meter-18078", + "maker": "Maker A", + "model": "Model 18078", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.557109447388655, + 27.330874243196973 + ] + }, + "properties": { + "id": "meter-18079", + "maker": "Maker C", + "model": "Model 18079", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.44591492385246, + 20.203880993441757 + ] + }, + "properties": { + "id": "meter-18080", + "maker": "Maker H", + "model": "Model 18080", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.93468664216663, + 24.640775497261274 + ] + }, + "properties": { + "id": "meter-18081", + "maker": "Maker D", + "model": "Model 18081", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.30483400687107, + 29.421239639609766 + ] + }, + "properties": { + "id": "meter-18082", + "maker": "Maker I", + "model": "Model 18082", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.37358173353258, + 28.451325185147965 + ] + }, + "properties": { + "id": "meter-18083", + "maker": "Maker A", + "model": "Model 18083", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.76101142883699, + 28.741136849437535 + ] + }, + "properties": { + "id": "meter-18084", + "maker": "Maker G", + "model": "Model 18084", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.776096405558214, + 25.72600588596054 + ] + }, + "properties": { + "id": "meter-18085", + "maker": "Maker F", + "model": "Model 18085", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.94188539959781, + 29.82015877613391 + ] + }, + "properties": { + "id": "meter-18086", + "maker": "Maker I", + "model": "Model 18086", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.94321599307341, + 17.709958410784793 + ] + }, + "properties": { + "id": "meter-18087", + "maker": "Maker H", + "model": "Model 18087", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.93431718329405, + 30.408787476711538 + ] + }, + "properties": { + "id": "meter-18088", + "maker": "Maker G", + "model": "Model 18088", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.020449950028606, + 27.942673420349657 + ] + }, + "properties": { + "id": "meter-18089", + "maker": "Maker D", + "model": "Model 18089", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67346473424374, + 27.177078625496144 + ] + }, + "properties": { + "id": "meter-18090", + "maker": "Maker F", + "model": "Model 18090", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.632768334302774, + 27.671629367970432 + ] + }, + "properties": { + "id": "meter-18091", + "maker": "Maker A", + "model": "Model 18091", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.74139564716556, + 25.76054754547249 + ] + }, + "properties": { + "id": "meter-18092", + "maker": "Maker I", + "model": "Model 18092", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.06135078592192, + 18.372873349114794 + ] + }, + "properties": { + "id": "meter-18093", + "maker": "Maker G", + "model": "Model 18093", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.726359649367375, + 27.961234632214776 + ] + }, + "properties": { + "id": "meter-18094", + "maker": "Maker I", + "model": "Model 18094", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.364845534199034, + 19.874897415204757 + ] + }, + "properties": { + "id": "meter-18095", + "maker": "Maker I", + "model": "Model 18095", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.04528917732648, + 23.797119663305878 + ] + }, + "properties": { + "id": "meter-18096", + "maker": "Maker J", + "model": "Model 18096", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.6709291657906, + 23.129811012056816 + ] + }, + "properties": { + "id": "meter-18097", + "maker": "Maker B", + "model": "Model 18097", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.10679072897503, + 26.538356763370686 + ] + }, + "properties": { + "id": "meter-18098", + "maker": "Maker G", + "model": "Model 18098", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.4686764442239, + 20.643333852649906 + ] + }, + "properties": { + "id": "meter-18099", + "maker": "Maker E", + "model": "Model 18099", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.11927364502429, + 27.397568212297763 + ] + }, + "properties": { + "id": "meter-18100", + "maker": "Maker C", + "model": "Model 18100", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.4909186625257, + 19.965924695508434 + ] + }, + "properties": { + "id": "meter-18101", + "maker": "Maker H", + "model": "Model 18101", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.4905442360767, + 23.683696133781805 + ] + }, + "properties": { + "id": "meter-18102", + "maker": "Maker A", + "model": "Model 18102", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.605422432457054, + 30.897619605383166 + ] + }, + "properties": { + "id": "meter-18103", + "maker": "Maker H", + "model": "Model 18103", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.3631769959061, + 27.34361868825157 + ] + }, + "properties": { + "id": "meter-18104", + "maker": "Maker J", + "model": "Model 18104", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.28384965901557, + 25.57144395784237 + ] + }, + "properties": { + "id": "meter-18105", + "maker": "Maker F", + "model": "Model 18105", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.56242983845398, + 26.977667846831277 + ] + }, + "properties": { + "id": "meter-18106", + "maker": "Maker J", + "model": "Model 18106", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.94969932298798, + 27.229629639560716 + ] + }, + "properties": { + "id": "meter-18107", + "maker": "Maker E", + "model": "Model 18107", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.166972772006915, + 19.316533151450823 + ] + }, + "properties": { + "id": "meter-18108", + "maker": "Maker D", + "model": "Model 18108", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.09526487412595, + 30.385265685622016 + ] + }, + "properties": { + "id": "meter-18109", + "maker": "Maker J", + "model": "Model 18109", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.19293582793923, + 27.9003493722134 + ] + }, + "properties": { + "id": "meter-18110", + "maker": "Maker F", + "model": "Model 18110", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.38503026807142, + 31.50767935717647 + ] + }, + "properties": { + "id": "meter-18111", + "maker": "Maker B", + "model": "Model 18111", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.47843219063721, + 22.08235334356874 + ] + }, + "properties": { + "id": "meter-18112", + "maker": "Maker E", + "model": "Model 18112", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.58138442632987, + 21.734019209151885 + ] + }, + "properties": { + "id": "meter-18113", + "maker": "Maker C", + "model": "Model 18113", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.15407116582281, + 28.182095426728445 + ] + }, + "properties": { + "id": "meter-18114", + "maker": "Maker F", + "model": "Model 18114", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.76072087032675, + 25.07742843835039 + ] + }, + "properties": { + "id": "meter-18115", + "maker": "Maker F", + "model": "Model 18115", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.61827896392823, + 20.972158983495902 + ] + }, + "properties": { + "id": "meter-18116", + "maker": "Maker F", + "model": "Model 18116", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.439547795253105, + 22.028532042740828 + ] + }, + "properties": { + "id": "meter-18117", + "maker": "Maker C", + "model": "Model 18117", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.2885378334017, + 23.67704427604457 + ] + }, + "properties": { + "id": "meter-18118", + "maker": "Maker A", + "model": "Model 18118", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.94767809803917, + 25.458932082456947 + ] + }, + "properties": { + "id": "meter-18119", + "maker": "Maker D", + "model": "Model 18119", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.457444424778906, + 18.108075790633222 + ] + }, + "properties": { + "id": "meter-18120", + "maker": "Maker J", + "model": "Model 18120", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.41080913700466, + 27.062403344269075 + ] + }, + "properties": { + "id": "meter-18121", + "maker": "Maker J", + "model": "Model 18121", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.123166391300316, + 21.525128904935585 + ] + }, + "properties": { + "id": "meter-18122", + "maker": "Maker G", + "model": "Model 18122", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92924918377026, + 23.43270739576753 + ] + }, + "properties": { + "id": "meter-18123", + "maker": "Maker D", + "model": "Model 18123", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.21218227103654, + 20.28560519478644 + ] + }, + "properties": { + "id": "meter-18124", + "maker": "Maker C", + "model": "Model 18124", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.70523750617797, + 30.214955051421228 + ] + }, + "properties": { + "id": "meter-18125", + "maker": "Maker G", + "model": "Model 18125", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.579830811845056, + 22.623366299932428 + ] + }, + "properties": { + "id": "meter-18126", + "maker": "Maker C", + "model": "Model 18126", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.173314285800906, + 25.23807571504035 + ] + }, + "properties": { + "id": "meter-18127", + "maker": "Maker A", + "model": "Model 18127", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.92629741927362, + 29.760294604025628 + ] + }, + "properties": { + "id": "meter-18128", + "maker": "Maker E", + "model": "Model 18128", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.403784081240204, + 18.43564701721436 + ] + }, + "properties": { + "id": "meter-18129", + "maker": "Maker F", + "model": "Model 18129", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.44731106284008, + 19.728195300295823 + ] + }, + "properties": { + "id": "meter-18130", + "maker": "Maker C", + "model": "Model 18130", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.4371274522082, + 21.56639476206954 + ] + }, + "properties": { + "id": "meter-18131", + "maker": "Maker J", + "model": "Model 18131", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.88430996327353, + 17.37002788345714 + ] + }, + "properties": { + "id": "meter-18132", + "maker": "Maker F", + "model": "Model 18132", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.74684357880326, + 23.359443968927792 + ] + }, + "properties": { + "id": "meter-18133", + "maker": "Maker D", + "model": "Model 18133", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.85102604148009, + 22.61255713622738 + ] + }, + "properties": { + "id": "meter-18134", + "maker": "Maker F", + "model": "Model 18134", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.41675359875856, + 24.738597119137808 + ] + }, + "properties": { + "id": "meter-18135", + "maker": "Maker I", + "model": "Model 18135", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.807392573142266, + 24.474802746042695 + ] + }, + "properties": { + "id": "meter-18136", + "maker": "Maker H", + "model": "Model 18136", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.742621800495456, + 20.734144993235404 + ] + }, + "properties": { + "id": "meter-18137", + "maker": "Maker A", + "model": "Model 18137", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.796049287086525, + 17.91905771686916 + ] + }, + "properties": { + "id": "meter-18138", + "maker": "Maker D", + "model": "Model 18138", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.83729626111639, + 18.63889322064613 + ] + }, + "properties": { + "id": "meter-18139", + "maker": "Maker C", + "model": "Model 18139", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.74132810630498, + 28.888370058645016 + ] + }, + "properties": { + "id": "meter-18140", + "maker": "Maker C", + "model": "Model 18140", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.62700798730084, + 23.04740981152173 + ] + }, + "properties": { + "id": "meter-18141", + "maker": "Maker I", + "model": "Model 18141", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.23295662362787, + 29.669945922040437 + ] + }, + "properties": { + "id": "meter-18142", + "maker": "Maker H", + "model": "Model 18142", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.11318225954018, + 22.348780489148005 + ] + }, + "properties": { + "id": "meter-18143", + "maker": "Maker D", + "model": "Model 18143", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.450259720507574, + 28.64352259503465 + ] + }, + "properties": { + "id": "meter-18144", + "maker": "Maker J", + "model": "Model 18144", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.1428384864338, + 21.66743240105839 + ] + }, + "properties": { + "id": "meter-18145", + "maker": "Maker E", + "model": "Model 18145", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.71109450913515, + 19.12953849467909 + ] + }, + "properties": { + "id": "meter-18146", + "maker": "Maker J", + "model": "Model 18146", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.89919520378141, + 22.645494384944897 + ] + }, + "properties": { + "id": "meter-18147", + "maker": "Maker C", + "model": "Model 18147", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.283004804842285, + 27.83703891437484 + ] + }, + "properties": { + "id": "meter-18148", + "maker": "Maker A", + "model": "Model 18148", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.8299655993938, + 23.885631518302663 + ] + }, + "properties": { + "id": "meter-18149", + "maker": "Maker D", + "model": "Model 18149", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.259035773922825, + 26.989462374958084 + ] + }, + "properties": { + "id": "meter-18150", + "maker": "Maker H", + "model": "Model 18150", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.023599907740234, + 25.02508250028691 + ] + }, + "properties": { + "id": "meter-18151", + "maker": "Maker C", + "model": "Model 18151", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.64815481074042, + 27.945381921109664 + ] + }, + "properties": { + "id": "meter-18152", + "maker": "Maker J", + "model": "Model 18152", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.58806096215509, + 20.979690420772858 + ] + }, + "properties": { + "id": "meter-18153", + "maker": "Maker B", + "model": "Model 18153", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.991566272912266, + 18.156918420646942 + ] + }, + "properties": { + "id": "meter-18154", + "maker": "Maker I", + "model": "Model 18154", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.016919816829926, + 19.830603598265803 + ] + }, + "properties": { + "id": "meter-18155", + "maker": "Maker C", + "model": "Model 18155", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.953124230895995, + 30.45331841732792 + ] + }, + "properties": { + "id": "meter-18156", + "maker": "Maker F", + "model": "Model 18156", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.0440110554553, + 30.26732915439699 + ] + }, + "properties": { + "id": "meter-18157", + "maker": "Maker H", + "model": "Model 18157", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.83817149953345, + 25.32130994512137 + ] + }, + "properties": { + "id": "meter-18158", + "maker": "Maker I", + "model": "Model 18158", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.5137821114558, + 27.081751393792068 + ] + }, + "properties": { + "id": "meter-18159", + "maker": "Maker G", + "model": "Model 18159", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.22668982708655, + 21.01302162289812 + ] + }, + "properties": { + "id": "meter-18160", + "maker": "Maker A", + "model": "Model 18160", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.066636155119674, + 24.539210324153707 + ] + }, + "properties": { + "id": "meter-18161", + "maker": "Maker F", + "model": "Model 18161", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.98404185789211, + 20.635399339549757 + ] + }, + "properties": { + "id": "meter-18162", + "maker": "Maker B", + "model": "Model 18162", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.16565198074351, + 21.916618748356097 + ] + }, + "properties": { + "id": "meter-18163", + "maker": "Maker J", + "model": "Model 18163", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.861529884122376, + 25.994456985015884 + ] + }, + "properties": { + "id": "meter-18164", + "maker": "Maker E", + "model": "Model 18164", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.211586482160776, + 28.34999614205276 + ] + }, + "properties": { + "id": "meter-18165", + "maker": "Maker H", + "model": "Model 18165", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.978861831940826, + 23.805719711533417 + ] + }, + "properties": { + "id": "meter-18166", + "maker": "Maker G", + "model": "Model 18166", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.10257171795358, + 31.57106061275227 + ] + }, + "properties": { + "id": "meter-18167", + "maker": "Maker H", + "model": "Model 18167", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.87087400494808, + 21.753813174282946 + ] + }, + "properties": { + "id": "meter-18168", + "maker": "Maker D", + "model": "Model 18168", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.701716237418594, + 21.83499079878103 + ] + }, + "properties": { + "id": "meter-18169", + "maker": "Maker A", + "model": "Model 18169", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59571941454945, + 25.045608087601966 + ] + }, + "properties": { + "id": "meter-18170", + "maker": "Maker D", + "model": "Model 18170", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.23757432851038, + 19.64730834819438 + ] + }, + "properties": { + "id": "meter-18171", + "maker": "Maker G", + "model": "Model 18171", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.89120560887301, + 19.51782552674746 + ] + }, + "properties": { + "id": "meter-18172", + "maker": "Maker D", + "model": "Model 18172", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95655800677844, + 27.045691169262792 + ] + }, + "properties": { + "id": "meter-18173", + "maker": "Maker I", + "model": "Model 18173", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.431248827136855, + 28.646827139026875 + ] + }, + "properties": { + "id": "meter-18174", + "maker": "Maker I", + "model": "Model 18174", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.76837212055677, + 25.53231129449484 + ] + }, + "properties": { + "id": "meter-18175", + "maker": "Maker A", + "model": "Model 18175", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.79077787303149, + 24.373226237700504 + ] + }, + "properties": { + "id": "meter-18176", + "maker": "Maker D", + "model": "Model 18176", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.20258055201084, + 22.509091710273644 + ] + }, + "properties": { + "id": "meter-18177", + "maker": "Maker J", + "model": "Model 18177", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.580950156093316, + 24.751562343716976 + ] + }, + "properties": { + "id": "meter-18178", + "maker": "Maker F", + "model": "Model 18178", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.77372197360951, + 22.346319946301787 + ] + }, + "properties": { + "id": "meter-18179", + "maker": "Maker E", + "model": "Model 18179", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.260881137810664, + 29.099125947095594 + ] + }, + "properties": { + "id": "meter-18180", + "maker": "Maker D", + "model": "Model 18180", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.49732329807555, + 19.65157327121219 + ] + }, + "properties": { + "id": "meter-18181", + "maker": "Maker I", + "model": "Model 18181", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.21628657387876, + 21.938512706598615 + ] + }, + "properties": { + "id": "meter-18182", + "maker": "Maker H", + "model": "Model 18182", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.637357026154895, + 18.633237787828737 + ] + }, + "properties": { + "id": "meter-18183", + "maker": "Maker D", + "model": "Model 18183", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.65248015384626, + 20.6897620681631 + ] + }, + "properties": { + "id": "meter-18184", + "maker": "Maker B", + "model": "Model 18184", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.061859946376245, + 17.435446736968604 + ] + }, + "properties": { + "id": "meter-18185", + "maker": "Maker H", + "model": "Model 18185", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.37292742732338, + 21.079888878928124 + ] + }, + "properties": { + "id": "meter-18186", + "maker": "Maker H", + "model": "Model 18186", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.988294074971414, + 24.449899729978583 + ] + }, + "properties": { + "id": "meter-18187", + "maker": "Maker B", + "model": "Model 18187", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.37887193848487, + 21.70521065484891 + ] + }, + "properties": { + "id": "meter-18188", + "maker": "Maker A", + "model": "Model 18188", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.341295672480896, + 26.47040463536303 + ] + }, + "properties": { + "id": "meter-18189", + "maker": "Maker I", + "model": "Model 18189", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.979957885963614, + 24.224193716778565 + ] + }, + "properties": { + "id": "meter-18190", + "maker": "Maker D", + "model": "Model 18190", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.24744177520543, + 25.98375464432839 + ] + }, + "properties": { + "id": "meter-18191", + "maker": "Maker C", + "model": "Model 18191", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.77363541532935, + 27.132727150421882 + ] + }, + "properties": { + "id": "meter-18192", + "maker": "Maker J", + "model": "Model 18192", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.41896326898962, + 22.290814796729624 + ] + }, + "properties": { + "id": "meter-18193", + "maker": "Maker D", + "model": "Model 18193", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.395967652448675, + 30.42447066486733 + ] + }, + "properties": { + "id": "meter-18194", + "maker": "Maker E", + "model": "Model 18194", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.48472976285428, + 24.78973449546891 + ] + }, + "properties": { + "id": "meter-18195", + "maker": "Maker F", + "model": "Model 18195", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.44526084544284, + 19.30658244987701 + ] + }, + "properties": { + "id": "meter-18196", + "maker": "Maker D", + "model": "Model 18196", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.672580102627585, + 29.97646109904447 + ] + }, + "properties": { + "id": "meter-18197", + "maker": "Maker J", + "model": "Model 18197", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.75783955950682, + 20.927379603436385 + ] + }, + "properties": { + "id": "meter-18198", + "maker": "Maker I", + "model": "Model 18198", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.76235016719123, + 26.912417995609495 + ] + }, + "properties": { + "id": "meter-18199", + "maker": "Maker E", + "model": "Model 18199", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.124655824162446, + 21.638217737726137 + ] + }, + "properties": { + "id": "meter-18200", + "maker": "Maker J", + "model": "Model 18200", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.469373955078055, + 18.0164078127773 + ] + }, + "properties": { + "id": "meter-18201", + "maker": "Maker G", + "model": "Model 18201", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.02950873845526, + 28.204540207051096 + ] + }, + "properties": { + "id": "meter-18202", + "maker": "Maker H", + "model": "Model 18202", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.27883451999475, + 19.052775521304618 + ] + }, + "properties": { + "id": "meter-18203", + "maker": "Maker J", + "model": "Model 18203", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.27138707636478, + 30.9276049190769 + ] + }, + "properties": { + "id": "meter-18204", + "maker": "Maker B", + "model": "Model 18204", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.14076596537563, + 26.27464561995224 + ] + }, + "properties": { + "id": "meter-18205", + "maker": "Maker H", + "model": "Model 18205", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.2594703422948, + 24.210855075151937 + ] + }, + "properties": { + "id": "meter-18206", + "maker": "Maker J", + "model": "Model 18206", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92805620114734, + 19.527897399200814 + ] + }, + "properties": { + "id": "meter-18207", + "maker": "Maker B", + "model": "Model 18207", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.903084141628774, + 28.81841845617309 + ] + }, + "properties": { + "id": "meter-18208", + "maker": "Maker B", + "model": "Model 18208", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.86018546412046, + 20.510968490691617 + ] + }, + "properties": { + "id": "meter-18209", + "maker": "Maker G", + "model": "Model 18209", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.91911841967364, + 19.017200640058793 + ] + }, + "properties": { + "id": "meter-18210", + "maker": "Maker H", + "model": "Model 18210", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.667772299548176, + 23.09384951650094 + ] + }, + "properties": { + "id": "meter-18211", + "maker": "Maker C", + "model": "Model 18211", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.38478530171502, + 30.499791300335666 + ] + }, + "properties": { + "id": "meter-18212", + "maker": "Maker C", + "model": "Model 18212", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.02505987148617, + 19.204719974043876 + ] + }, + "properties": { + "id": "meter-18213", + "maker": "Maker A", + "model": "Model 18213", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.632752545535446, + 23.875379967269314 + ] + }, + "properties": { + "id": "meter-18214", + "maker": "Maker B", + "model": "Model 18214", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.337692655719316, + 17.550995000544415 + ] + }, + "properties": { + "id": "meter-18215", + "maker": "Maker B", + "model": "Model 18215", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.30223582684657, + 19.988850697655344 + ] + }, + "properties": { + "id": "meter-18216", + "maker": "Maker B", + "model": "Model 18216", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.24192135376405, + 21.22759732208916 + ] + }, + "properties": { + "id": "meter-18217", + "maker": "Maker F", + "model": "Model 18217", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.067202242026006, + 30.35463511283072 + ] + }, + "properties": { + "id": "meter-18218", + "maker": "Maker C", + "model": "Model 18218", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.76787098293085, + 18.25348649523079 + ] + }, + "properties": { + "id": "meter-18219", + "maker": "Maker E", + "model": "Model 18219", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.449495020738254, + 21.40591035644507 + ] + }, + "properties": { + "id": "meter-18220", + "maker": "Maker B", + "model": "Model 18220", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.34452526169182, + 30.986744135062196 + ] + }, + "properties": { + "id": "meter-18221", + "maker": "Maker I", + "model": "Model 18221", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.15128753060201, + 25.37029794839973 + ] + }, + "properties": { + "id": "meter-18222", + "maker": "Maker J", + "model": "Model 18222", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.90382580314052, + 20.29907500469013 + ] + }, + "properties": { + "id": "meter-18223", + "maker": "Maker F", + "model": "Model 18223", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.37132224444585, + 19.55388502184244 + ] + }, + "properties": { + "id": "meter-18224", + "maker": "Maker B", + "model": "Model 18224", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.96519520358766, + 21.365329420117305 + ] + }, + "properties": { + "id": "meter-18225", + "maker": "Maker B", + "model": "Model 18225", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.309665441034085, + 21.90883110757365 + ] + }, + "properties": { + "id": "meter-18226", + "maker": "Maker J", + "model": "Model 18226", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.696513907565766, + 21.126103843814146 + ] + }, + "properties": { + "id": "meter-18227", + "maker": "Maker H", + "model": "Model 18227", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.063228573628614, + 26.95620729638442 + ] + }, + "properties": { + "id": "meter-18228", + "maker": "Maker B", + "model": "Model 18228", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.453758257885, + 24.92743262655804 + ] + }, + "properties": { + "id": "meter-18229", + "maker": "Maker J", + "model": "Model 18229", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.33807071661277, + 21.513477291408783 + ] + }, + "properties": { + "id": "meter-18230", + "maker": "Maker F", + "model": "Model 18230", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.32484081854567, + 28.93311572813803 + ] + }, + "properties": { + "id": "meter-18231", + "maker": "Maker A", + "model": "Model 18231", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.433914909443786, + 21.26351554852704 + ] + }, + "properties": { + "id": "meter-18232", + "maker": "Maker C", + "model": "Model 18232", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.79306359907648, + 19.13863303926212 + ] + }, + "properties": { + "id": "meter-18233", + "maker": "Maker A", + "model": "Model 18233", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.49930620483174, + 28.989220699509914 + ] + }, + "properties": { + "id": "meter-18234", + "maker": "Maker J", + "model": "Model 18234", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.24937846003358, + 27.463706574469892 + ] + }, + "properties": { + "id": "meter-18235", + "maker": "Maker H", + "model": "Model 18235", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.518756353345154, + 22.431185645129112 + ] + }, + "properties": { + "id": "meter-18236", + "maker": "Maker C", + "model": "Model 18236", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.21480228741257, + 23.571647852745283 + ] + }, + "properties": { + "id": "meter-18237", + "maker": "Maker A", + "model": "Model 18237", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.634248725550194, + 29.236614332692753 + ] + }, + "properties": { + "id": "meter-18238", + "maker": "Maker D", + "model": "Model 18238", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.96592556395957, + 20.894533988477995 + ] + }, + "properties": { + "id": "meter-18239", + "maker": "Maker C", + "model": "Model 18239", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.867051757752954, + 18.70897002538141 + ] + }, + "properties": { + "id": "meter-18240", + "maker": "Maker C", + "model": "Model 18240", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.10119662268313, + 19.8523103846322 + ] + }, + "properties": { + "id": "meter-18241", + "maker": "Maker A", + "model": "Model 18241", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.19181709770955, + 23.060204250409356 + ] + }, + "properties": { + "id": "meter-18242", + "maker": "Maker G", + "model": "Model 18242", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.62752557296762, + 25.732613867703567 + ] + }, + "properties": { + "id": "meter-18243", + "maker": "Maker D", + "model": "Model 18243", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.14571954608678, + 24.605709522727928 + ] + }, + "properties": { + "id": "meter-18244", + "maker": "Maker C", + "model": "Model 18244", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87582465433159, + 31.855075907811955 + ] + }, + "properties": { + "id": "meter-18245", + "maker": "Maker C", + "model": "Model 18245", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.10398634394118, + 23.068456819743677 + ] + }, + "properties": { + "id": "meter-18246", + "maker": "Maker G", + "model": "Model 18246", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.128763034638254, + 20.633173752450887 + ] + }, + "properties": { + "id": "meter-18247", + "maker": "Maker F", + "model": "Model 18247", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.114685292356064, + 24.415878074575474 + ] + }, + "properties": { + "id": "meter-18248", + "maker": "Maker I", + "model": "Model 18248", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.043616299328676, + 20.100991610361177 + ] + }, + "properties": { + "id": "meter-18249", + "maker": "Maker E", + "model": "Model 18249", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.46360311542765, + 25.259089839506885 + ] + }, + "properties": { + "id": "meter-18250", + "maker": "Maker C", + "model": "Model 18250", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.21669231939689, + 25.752777071564477 + ] + }, + "properties": { + "id": "meter-18251", + "maker": "Maker F", + "model": "Model 18251", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.192234648265966, + 19.18926193570184 + ] + }, + "properties": { + "id": "meter-18252", + "maker": "Maker E", + "model": "Model 18252", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.87915367432741, + 18.523067571239817 + ] + }, + "properties": { + "id": "meter-18253", + "maker": "Maker H", + "model": "Model 18253", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.38818680321261, + 28.206997461948937 + ] + }, + "properties": { + "id": "meter-18254", + "maker": "Maker D", + "model": "Model 18254", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.90147320539197, + 25.474171699774267 + ] + }, + "properties": { + "id": "meter-18255", + "maker": "Maker E", + "model": "Model 18255", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.79478074837038, + 23.592210518194705 + ] + }, + "properties": { + "id": "meter-18256", + "maker": "Maker I", + "model": "Model 18256", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.809483206598856, + 20.61550436319949 + ] + }, + "properties": { + "id": "meter-18257", + "maker": "Maker C", + "model": "Model 18257", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.68103505436412, + 24.29119542803701 + ] + }, + "properties": { + "id": "meter-18258", + "maker": "Maker I", + "model": "Model 18258", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.13087365425744, + 21.193375095287294 + ] + }, + "properties": { + "id": "meter-18259", + "maker": "Maker F", + "model": "Model 18259", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.75220665196282, + 28.357966236048963 + ] + }, + "properties": { + "id": "meter-18260", + "maker": "Maker I", + "model": "Model 18260", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.2489179561088, + 19.861801511635093 + ] + }, + "properties": { + "id": "meter-18261", + "maker": "Maker C", + "model": "Model 18261", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46108057936511, + 20.587756144082054 + ] + }, + "properties": { + "id": "meter-18262", + "maker": "Maker A", + "model": "Model 18262", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.702262868542945, + 20.367295543232657 + ] + }, + "properties": { + "id": "meter-18263", + "maker": "Maker J", + "model": "Model 18263", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.19233661294805, + 19.276884456504057 + ] + }, + "properties": { + "id": "meter-18264", + "maker": "Maker F", + "model": "Model 18264", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.71103043869464, + 22.340409974556493 + ] + }, + "properties": { + "id": "meter-18265", + "maker": "Maker F", + "model": "Model 18265", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.025458906042324, + 21.780650793291144 + ] + }, + "properties": { + "id": "meter-18266", + "maker": "Maker D", + "model": "Model 18266", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.847324979068, + 26.208721702984334 + ] + }, + "properties": { + "id": "meter-18267", + "maker": "Maker D", + "model": "Model 18267", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.20793722123077, + 20.797579840214198 + ] + }, + "properties": { + "id": "meter-18268", + "maker": "Maker F", + "model": "Model 18268", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.41354530927318, + 19.253890810945823 + ] + }, + "properties": { + "id": "meter-18269", + "maker": "Maker J", + "model": "Model 18269", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.7013728291425, + 18.6348067948727 + ] + }, + "properties": { + "id": "meter-18270", + "maker": "Maker A", + "model": "Model 18270", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92717903737351, + 30.01914379102771 + ] + }, + "properties": { + "id": "meter-18271", + "maker": "Maker A", + "model": "Model 18271", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.17334255743698, + 19.42527612995948 + ] + }, + "properties": { + "id": "meter-18272", + "maker": "Maker G", + "model": "Model 18272", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.66159992069167, + 22.71592444566596 + ] + }, + "properties": { + "id": "meter-18273", + "maker": "Maker B", + "model": "Model 18273", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.46642909720074, + 30.41293670194206 + ] + }, + "properties": { + "id": "meter-18274", + "maker": "Maker D", + "model": "Model 18274", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.31933051628152, + 25.060551832706185 + ] + }, + "properties": { + "id": "meter-18275", + "maker": "Maker A", + "model": "Model 18275", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.29051783560962, + 21.755134584582773 + ] + }, + "properties": { + "id": "meter-18276", + "maker": "Maker H", + "model": "Model 18276", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.88770371309797, + 25.09805568077611 + ] + }, + "properties": { + "id": "meter-18277", + "maker": "Maker J", + "model": "Model 18277", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.54119225009381, + 18.21289346905136 + ] + }, + "properties": { + "id": "meter-18278", + "maker": "Maker E", + "model": "Model 18278", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.565847937465875, + 18.615462103318077 + ] + }, + "properties": { + "id": "meter-18279", + "maker": "Maker F", + "model": "Model 18279", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.32726361035069, + 24.989487574044134 + ] + }, + "properties": { + "id": "meter-18280", + "maker": "Maker G", + "model": "Model 18280", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.74963476651348, + 17.50413564343628 + ] + }, + "properties": { + "id": "meter-18281", + "maker": "Maker C", + "model": "Model 18281", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.12420972418648, + 20.920434755743543 + ] + }, + "properties": { + "id": "meter-18282", + "maker": "Maker A", + "model": "Model 18282", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.311371774036346, + 23.698593512471152 + ] + }, + "properties": { + "id": "meter-18283", + "maker": "Maker A", + "model": "Model 18283", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.557900250566846, + 24.008776009090006 + ] + }, + "properties": { + "id": "meter-18284", + "maker": "Maker J", + "model": "Model 18284", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.20215120327869, + 30.08828064695936 + ] + }, + "properties": { + "id": "meter-18285", + "maker": "Maker B", + "model": "Model 18285", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.06365466035341, + 22.703963080485945 + ] + }, + "properties": { + "id": "meter-18286", + "maker": "Maker C", + "model": "Model 18286", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.470967477047736, + 26.463325881952567 + ] + }, + "properties": { + "id": "meter-18287", + "maker": "Maker J", + "model": "Model 18287", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.59976505898251, + 29.697906149573573 + ] + }, + "properties": { + "id": "meter-18288", + "maker": "Maker F", + "model": "Model 18288", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.32143856041579, + 26.498414103504835 + ] + }, + "properties": { + "id": "meter-18289", + "maker": "Maker G", + "model": "Model 18289", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.932870462370914, + 20.61171683389479 + ] + }, + "properties": { + "id": "meter-18290", + "maker": "Maker A", + "model": "Model 18290", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.43465201654509, + 19.868971056659248 + ] + }, + "properties": { + "id": "meter-18291", + "maker": "Maker I", + "model": "Model 18291", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.402558368243426, + 19.223583306440638 + ] + }, + "properties": { + "id": "meter-18292", + "maker": "Maker H", + "model": "Model 18292", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.41304499274363, + 22.548374153569114 + ] + }, + "properties": { + "id": "meter-18293", + "maker": "Maker A", + "model": "Model 18293", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.30325605215041, + 21.337914483865767 + ] + }, + "properties": { + "id": "meter-18294", + "maker": "Maker C", + "model": "Model 18294", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.88729011600098, + 29.343587098613966 + ] + }, + "properties": { + "id": "meter-18295", + "maker": "Maker A", + "model": "Model 18295", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.619591117682475, + 20.573644615741262 + ] + }, + "properties": { + "id": "meter-18296", + "maker": "Maker J", + "model": "Model 18296", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.091588250500436, + 21.830236749185552 + ] + }, + "properties": { + "id": "meter-18297", + "maker": "Maker B", + "model": "Model 18297", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.802834406155874, + 24.073358241884776 + ] + }, + "properties": { + "id": "meter-18298", + "maker": "Maker A", + "model": "Model 18298", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.848139263383985, + 24.724867260643745 + ] + }, + "properties": { + "id": "meter-18299", + "maker": "Maker F", + "model": "Model 18299", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.56755974708584, + 23.20600998844934 + ] + }, + "properties": { + "id": "meter-18300", + "maker": "Maker A", + "model": "Model 18300", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.07304256719397, + 25.721098648715483 + ] + }, + "properties": { + "id": "meter-18301", + "maker": "Maker B", + "model": "Model 18301", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.49321033455333, + 20.70453697545646 + ] + }, + "properties": { + "id": "meter-18302", + "maker": "Maker D", + "model": "Model 18302", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.1423993870789, + 19.372326542802877 + ] + }, + "properties": { + "id": "meter-18303", + "maker": "Maker E", + "model": "Model 18303", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.91277254673307, + 27.116834206045645 + ] + }, + "properties": { + "id": "meter-18304", + "maker": "Maker J", + "model": "Model 18304", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.32906918386778, + 25.026659652612402 + ] + }, + "properties": { + "id": "meter-18305", + "maker": "Maker H", + "model": "Model 18305", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.788353033520664, + 28.947638823042684 + ] + }, + "properties": { + "id": "meter-18306", + "maker": "Maker G", + "model": "Model 18306", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.94746508055768, + 21.651548610665554 + ] + }, + "properties": { + "id": "meter-18307", + "maker": "Maker A", + "model": "Model 18307", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.849437099359776, + 24.308327760046318 + ] + }, + "properties": { + "id": "meter-18308", + "maker": "Maker H", + "model": "Model 18308", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.664200937836185, + 26.413490306053333 + ] + }, + "properties": { + "id": "meter-18309", + "maker": "Maker H", + "model": "Model 18309", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.014650717334064, + 23.693076094218444 + ] + }, + "properties": { + "id": "meter-18310", + "maker": "Maker C", + "model": "Model 18310", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.061473902927304, + 19.23922283150908 + ] + }, + "properties": { + "id": "meter-18311", + "maker": "Maker A", + "model": "Model 18311", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.39702347657306, + 24.72912269240972 + ] + }, + "properties": { + "id": "meter-18312", + "maker": "Maker J", + "model": "Model 18312", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.537214603005836, + 22.005863306183535 + ] + }, + "properties": { + "id": "meter-18313", + "maker": "Maker E", + "model": "Model 18313", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.748120978069274, + 28.82724792961133 + ] + }, + "properties": { + "id": "meter-18314", + "maker": "Maker D", + "model": "Model 18314", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.545059757315535, + 23.132369454695592 + ] + }, + "properties": { + "id": "meter-18315", + "maker": "Maker G", + "model": "Model 18315", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.39494117824611, + 18.75759595260924 + ] + }, + "properties": { + "id": "meter-18316", + "maker": "Maker F", + "model": "Model 18316", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.867389279144376, + 22.106960112546243 + ] + }, + "properties": { + "id": "meter-18317", + "maker": "Maker A", + "model": "Model 18317", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.87587255603887, + 21.168812860477274 + ] + }, + "properties": { + "id": "meter-18318", + "maker": "Maker I", + "model": "Model 18318", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.98733199492421, + 29.69524454573827 + ] + }, + "properties": { + "id": "meter-18319", + "maker": "Maker H", + "model": "Model 18319", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.22305310485726, + 19.733486214469053 + ] + }, + "properties": { + "id": "meter-18320", + "maker": "Maker F", + "model": "Model 18320", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.73849616000331, + 24.51939270723976 + ] + }, + "properties": { + "id": "meter-18321", + "maker": "Maker H", + "model": "Model 18321", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.17623712632121, + 21.983796826842678 + ] + }, + "properties": { + "id": "meter-18322", + "maker": "Maker B", + "model": "Model 18322", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.08593874401783, + 19.66767012392293 + ] + }, + "properties": { + "id": "meter-18323", + "maker": "Maker D", + "model": "Model 18323", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.16663591952202, + 22.321037436817498 + ] + }, + "properties": { + "id": "meter-18324", + "maker": "Maker A", + "model": "Model 18324", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.395205711207176, + 21.61372064144692 + ] + }, + "properties": { + "id": "meter-18325", + "maker": "Maker E", + "model": "Model 18325", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.47956924790277, + 25.98553700146611 + ] + }, + "properties": { + "id": "meter-18326", + "maker": "Maker G", + "model": "Model 18326", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.431565424675966, + 22.89975559362787 + ] + }, + "properties": { + "id": "meter-18327", + "maker": "Maker D", + "model": "Model 18327", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.29001334245699, + 30.23496639591374 + ] + }, + "properties": { + "id": "meter-18328", + "maker": "Maker A", + "model": "Model 18328", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.38792194261987, + 21.73543062658488 + ] + }, + "properties": { + "id": "meter-18329", + "maker": "Maker B", + "model": "Model 18329", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.56954629317916, + 25.50813511866622 + ] + }, + "properties": { + "id": "meter-18330", + "maker": "Maker J", + "model": "Model 18330", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.40246993345372, + 23.783211476399025 + ] + }, + "properties": { + "id": "meter-18331", + "maker": "Maker G", + "model": "Model 18331", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.24882617726131, + 29.11280793029449 + ] + }, + "properties": { + "id": "meter-18332", + "maker": "Maker A", + "model": "Model 18332", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.9106858315646, + 26.739327856718106 + ] + }, + "properties": { + "id": "meter-18333", + "maker": "Maker H", + "model": "Model 18333", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.732754201423184, + 28.182714323418278 + ] + }, + "properties": { + "id": "meter-18334", + "maker": "Maker G", + "model": "Model 18334", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.05938248052394, + 20.515065262435094 + ] + }, + "properties": { + "id": "meter-18335", + "maker": "Maker A", + "model": "Model 18335", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.09250033650153, + 30.281852425285557 + ] + }, + "properties": { + "id": "meter-18336", + "maker": "Maker E", + "model": "Model 18336", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.3870817784174, + 31.654774813133386 + ] + }, + "properties": { + "id": "meter-18337", + "maker": "Maker D", + "model": "Model 18337", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.15213088349901, + 27.28611172449733 + ] + }, + "properties": { + "id": "meter-18338", + "maker": "Maker J", + "model": "Model 18338", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.4949923197652, + 20.345447007876373 + ] + }, + "properties": { + "id": "meter-18339", + "maker": "Maker B", + "model": "Model 18339", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.74155203665331, + 25.957027334381856 + ] + }, + "properties": { + "id": "meter-18340", + "maker": "Maker J", + "model": "Model 18340", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.36580082942276, + 22.562971646417914 + ] + }, + "properties": { + "id": "meter-18341", + "maker": "Maker B", + "model": "Model 18341", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.48132356120354, + 21.92777692955209 + ] + }, + "properties": { + "id": "meter-18342", + "maker": "Maker B", + "model": "Model 18342", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.01193135863433, + 28.157134028668203 + ] + }, + "properties": { + "id": "meter-18343", + "maker": "Maker J", + "model": "Model 18343", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.598301695217316, + 22.490898727549208 + ] + }, + "properties": { + "id": "meter-18344", + "maker": "Maker F", + "model": "Model 18344", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13118423506114, + 28.767851366024033 + ] + }, + "properties": { + "id": "meter-18345", + "maker": "Maker F", + "model": "Model 18345", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.27521978422773, + 25.122987272915516 + ] + }, + "properties": { + "id": "meter-18346", + "maker": "Maker I", + "model": "Model 18346", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.410850125179095, + 23.742547931865552 + ] + }, + "properties": { + "id": "meter-18347", + "maker": "Maker J", + "model": "Model 18347", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.70705660065233, + 28.217601251462803 + ] + }, + "properties": { + "id": "meter-18348", + "maker": "Maker H", + "model": "Model 18348", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.859425243178094, + 20.830630149730553 + ] + }, + "properties": { + "id": "meter-18349", + "maker": "Maker B", + "model": "Model 18349", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.92609470240906, + 20.95169433260122 + ] + }, + "properties": { + "id": "meter-18350", + "maker": "Maker B", + "model": "Model 18350", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.34949558613901, + 22.520144314900552 + ] + }, + "properties": { + "id": "meter-18351", + "maker": "Maker J", + "model": "Model 18351", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.384707329290315, + 28.113842841320277 + ] + }, + "properties": { + "id": "meter-18352", + "maker": "Maker A", + "model": "Model 18352", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.21195751547318, + 27.778876318218288 + ] + }, + "properties": { + "id": "meter-18353", + "maker": "Maker J", + "model": "Model 18353", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.17598460495217, + 28.14774481548786 + ] + }, + "properties": { + "id": "meter-18354", + "maker": "Maker F", + "model": "Model 18354", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.31716917811687, + 23.796835040928496 + ] + }, + "properties": { + "id": "meter-18355", + "maker": "Maker F", + "model": "Model 18355", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.53736277222664, + 23.12795686840089 + ] + }, + "properties": { + "id": "meter-18356", + "maker": "Maker F", + "model": "Model 18356", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.18683019934016, + 26.724641531637847 + ] + }, + "properties": { + "id": "meter-18357", + "maker": "Maker D", + "model": "Model 18357", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.49164013464092, + 27.337071529239488 + ] + }, + "properties": { + "id": "meter-18358", + "maker": "Maker B", + "model": "Model 18358", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.0058119803855, + 20.00573581558668 + ] + }, + "properties": { + "id": "meter-18359", + "maker": "Maker J", + "model": "Model 18359", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.606804223685906, + 17.14090124295325 + ] + }, + "properties": { + "id": "meter-18360", + "maker": "Maker A", + "model": "Model 18360", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.58966097987578, + 22.509199819081488 + ] + }, + "properties": { + "id": "meter-18361", + "maker": "Maker D", + "model": "Model 18361", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.316813855183106, + 20.92906670159153 + ] + }, + "properties": { + "id": "meter-18362", + "maker": "Maker E", + "model": "Model 18362", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.17343776312333, + 27.981269199636763 + ] + }, + "properties": { + "id": "meter-18363", + "maker": "Maker D", + "model": "Model 18363", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.605367348063545, + 20.710786309765822 + ] + }, + "properties": { + "id": "meter-18364", + "maker": "Maker D", + "model": "Model 18364", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.68316604882854, + 24.0415701810866 + ] + }, + "properties": { + "id": "meter-18365", + "maker": "Maker J", + "model": "Model 18365", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.0371010726062, + 20.942329496548037 + ] + }, + "properties": { + "id": "meter-18366", + "maker": "Maker H", + "model": "Model 18366", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.556963600635655, + 25.392674451246016 + ] + }, + "properties": { + "id": "meter-18367", + "maker": "Maker A", + "model": "Model 18367", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.23557564855503, + 22.9690552948641 + ] + }, + "properties": { + "id": "meter-18368", + "maker": "Maker I", + "model": "Model 18368", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.64665058424925, + 26.54818552895675 + ] + }, + "properties": { + "id": "meter-18369", + "maker": "Maker H", + "model": "Model 18369", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.57560520534982, + 29.458021852119817 + ] + }, + "properties": { + "id": "meter-18370", + "maker": "Maker H", + "model": "Model 18370", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.59901610773264, + 24.111659323908015 + ] + }, + "properties": { + "id": "meter-18371", + "maker": "Maker B", + "model": "Model 18371", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.95155960965145, + 26.77585262071731 + ] + }, + "properties": { + "id": "meter-18372", + "maker": "Maker I", + "model": "Model 18372", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.63919728707403, + 20.580300299894613 + ] + }, + "properties": { + "id": "meter-18373", + "maker": "Maker H", + "model": "Model 18373", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.38950546953761, + 21.300251741326488 + ] + }, + "properties": { + "id": "meter-18374", + "maker": "Maker F", + "model": "Model 18374", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.294598420342865, + 20.073703961291688 + ] + }, + "properties": { + "id": "meter-18375", + "maker": "Maker J", + "model": "Model 18375", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.77520677059571, + 19.760061472299554 + ] + }, + "properties": { + "id": "meter-18376", + "maker": "Maker I", + "model": "Model 18376", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.427923331618004, + 21.481599439570704 + ] + }, + "properties": { + "id": "meter-18377", + "maker": "Maker H", + "model": "Model 18377", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.48964009721087, + 20.43833145393884 + ] + }, + "properties": { + "id": "meter-18378", + "maker": "Maker A", + "model": "Model 18378", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.725625526329345, + 21.680536704060692 + ] + }, + "properties": { + "id": "meter-18379", + "maker": "Maker D", + "model": "Model 18379", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.738033767806854, + 26.376036728936 + ] + }, + "properties": { + "id": "meter-18380", + "maker": "Maker F", + "model": "Model 18380", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.61987324830147, + 19.592870936955997 + ] + }, + "properties": { + "id": "meter-18381", + "maker": "Maker B", + "model": "Model 18381", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.66312080626073, + 18.04699733130249 + ] + }, + "properties": { + "id": "meter-18382", + "maker": "Maker G", + "model": "Model 18382", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.426353574280085, + 27.957426360746407 + ] + }, + "properties": { + "id": "meter-18383", + "maker": "Maker B", + "model": "Model 18383", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.81890325308874, + 17.996352071193105 + ] + }, + "properties": { + "id": "meter-18384", + "maker": "Maker F", + "model": "Model 18384", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.069757127108865, + 28.958073370456233 + ] + }, + "properties": { + "id": "meter-18385", + "maker": "Maker H", + "model": "Model 18385", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.46596252024226, + 25.12408634824455 + ] + }, + "properties": { + "id": "meter-18386", + "maker": "Maker B", + "model": "Model 18386", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.101937516227906, + 18.286549572356027 + ] + }, + "properties": { + "id": "meter-18387", + "maker": "Maker H", + "model": "Model 18387", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.82330700381666, + 27.127650248436492 + ] + }, + "properties": { + "id": "meter-18388", + "maker": "Maker G", + "model": "Model 18388", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.30980470191253, + 20.122852664369002 + ] + }, + "properties": { + "id": "meter-18389", + "maker": "Maker D", + "model": "Model 18389", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.85413094579285, + 25.08733836815515 + ] + }, + "properties": { + "id": "meter-18390", + "maker": "Maker F", + "model": "Model 18390", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.823761862229, + 22.61939079657983 + ] + }, + "properties": { + "id": "meter-18391", + "maker": "Maker A", + "model": "Model 18391", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.40978628189505, + 25.943028354834194 + ] + }, + "properties": { + "id": "meter-18392", + "maker": "Maker A", + "model": "Model 18392", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.17690534753415, + 25.006237075942988 + ] + }, + "properties": { + "id": "meter-18393", + "maker": "Maker F", + "model": "Model 18393", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.859145163872554, + 22.964296328578797 + ] + }, + "properties": { + "id": "meter-18394", + "maker": "Maker A", + "model": "Model 18394", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.1186637471544, + 24.77650911352428 + ] + }, + "properties": { + "id": "meter-18395", + "maker": "Maker B", + "model": "Model 18395", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.101573251041884, + 20.367874956097896 + ] + }, + "properties": { + "id": "meter-18396", + "maker": "Maker A", + "model": "Model 18396", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.962497515002354, + 22.625261853709986 + ] + }, + "properties": { + "id": "meter-18397", + "maker": "Maker C", + "model": "Model 18397", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.682006079588106, + 26.97706345820452 + ] + }, + "properties": { + "id": "meter-18398", + "maker": "Maker A", + "model": "Model 18398", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.44343633830702, + 28.412450188570496 + ] + }, + "properties": { + "id": "meter-18399", + "maker": "Maker G", + "model": "Model 18399", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.08815751689393, + 26.489829806407283 + ] + }, + "properties": { + "id": "meter-18400", + "maker": "Maker J", + "model": "Model 18400", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.32815495024223, + 18.509802382683553 + ] + }, + "properties": { + "id": "meter-18401", + "maker": "Maker I", + "model": "Model 18401", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.74147281179536, + 21.50381206319743 + ] + }, + "properties": { + "id": "meter-18402", + "maker": "Maker C", + "model": "Model 18402", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.322661876175864, + 19.623717106692993 + ] + }, + "properties": { + "id": "meter-18403", + "maker": "Maker G", + "model": "Model 18403", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.41575636120672, + 22.891407287155012 + ] + }, + "properties": { + "id": "meter-18404", + "maker": "Maker E", + "model": "Model 18404", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.94112129440687, + 27.444324785342125 + ] + }, + "properties": { + "id": "meter-18405", + "maker": "Maker C", + "model": "Model 18405", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.337824315181145, + 23.42551175978788 + ] + }, + "properties": { + "id": "meter-18406", + "maker": "Maker C", + "model": "Model 18406", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.261132773394195, + 21.17448935722482 + ] + }, + "properties": { + "id": "meter-18407", + "maker": "Maker C", + "model": "Model 18407", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.11299601743771, + 22.316197624828988 + ] + }, + "properties": { + "id": "meter-18408", + "maker": "Maker H", + "model": "Model 18408", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95248919101315, + 24.84436723649614 + ] + }, + "properties": { + "id": "meter-18409", + "maker": "Maker A", + "model": "Model 18409", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.88267312796725, + 26.05895738657302 + ] + }, + "properties": { + "id": "meter-18410", + "maker": "Maker G", + "model": "Model 18410", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.44660559877425, + 19.16551701338789 + ] + }, + "properties": { + "id": "meter-18411", + "maker": "Maker C", + "model": "Model 18411", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.255187668615726, + 27.827291195764538 + ] + }, + "properties": { + "id": "meter-18412", + "maker": "Maker B", + "model": "Model 18412", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.72392203887829, + 29.47109178085742 + ] + }, + "properties": { + "id": "meter-18413", + "maker": "Maker G", + "model": "Model 18413", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.762708813643265, + 26.042018263283037 + ] + }, + "properties": { + "id": "meter-18414", + "maker": "Maker I", + "model": "Model 18414", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.6517877454025, + 19.45258021235542 + ] + }, + "properties": { + "id": "meter-18415", + "maker": "Maker F", + "model": "Model 18415", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.34898626389899, + 27.99616609417585 + ] + }, + "properties": { + "id": "meter-18416", + "maker": "Maker H", + "model": "Model 18416", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.196963059206546, + 22.234398095607787 + ] + }, + "properties": { + "id": "meter-18417", + "maker": "Maker C", + "model": "Model 18417", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.63558738762209, + 26.223319140721898 + ] + }, + "properties": { + "id": "meter-18418", + "maker": "Maker F", + "model": "Model 18418", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.71152746337642, + 21.016775139535568 + ] + }, + "properties": { + "id": "meter-18419", + "maker": "Maker J", + "model": "Model 18419", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.50396594897892, + 30.957745851014952 + ] + }, + "properties": { + "id": "meter-18420", + "maker": "Maker J", + "model": "Model 18420", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.07285388633868, + 25.999317874563193 + ] + }, + "properties": { + "id": "meter-18421", + "maker": "Maker J", + "model": "Model 18421", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.046453323986604, + 24.134008685151443 + ] + }, + "properties": { + "id": "meter-18422", + "maker": "Maker I", + "model": "Model 18422", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.07762452894887, + 20.9058630491583 + ] + }, + "properties": { + "id": "meter-18423", + "maker": "Maker I", + "model": "Model 18423", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.406251094787876, + 27.76460063542562 + ] + }, + "properties": { + "id": "meter-18424", + "maker": "Maker F", + "model": "Model 18424", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.834597886623925, + 22.331590504007284 + ] + }, + "properties": { + "id": "meter-18425", + "maker": "Maker F", + "model": "Model 18425", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.907615899666006, + 23.487016026681385 + ] + }, + "properties": { + "id": "meter-18426", + "maker": "Maker C", + "model": "Model 18426", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.11228660696849, + 22.60494692898337 + ] + }, + "properties": { + "id": "meter-18427", + "maker": "Maker J", + "model": "Model 18427", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.642059626871884, + 25.637390840456533 + ] + }, + "properties": { + "id": "meter-18428", + "maker": "Maker G", + "model": "Model 18428", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.409520349893384, + 20.726358946823176 + ] + }, + "properties": { + "id": "meter-18429", + "maker": "Maker E", + "model": "Model 18429", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.5620531828734, + 25.759844764010275 + ] + }, + "properties": { + "id": "meter-18430", + "maker": "Maker B", + "model": "Model 18430", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.16110339154496, + 29.769213825733065 + ] + }, + "properties": { + "id": "meter-18431", + "maker": "Maker I", + "model": "Model 18431", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.22065550956914, + 21.115898725077994 + ] + }, + "properties": { + "id": "meter-18432", + "maker": "Maker H", + "model": "Model 18432", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.909085170072025, + 31.067036556865204 + ] + }, + "properties": { + "id": "meter-18433", + "maker": "Maker B", + "model": "Model 18433", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.21619194811308, + 26.17659033751105 + ] + }, + "properties": { + "id": "meter-18434", + "maker": "Maker D", + "model": "Model 18434", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.13224119414846, + 23.302833047467246 + ] + }, + "properties": { + "id": "meter-18435", + "maker": "Maker I", + "model": "Model 18435", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.87946858082821, + 27.67160994881583 + ] + }, + "properties": { + "id": "meter-18436", + "maker": "Maker G", + "model": "Model 18436", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.64377086757228, + 23.12042800120303 + ] + }, + "properties": { + "id": "meter-18437", + "maker": "Maker J", + "model": "Model 18437", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.63753146404488, + 28.746930798732656 + ] + }, + "properties": { + "id": "meter-18438", + "maker": "Maker J", + "model": "Model 18438", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.00860043527762, + 27.19304721397584 + ] + }, + "properties": { + "id": "meter-18439", + "maker": "Maker J", + "model": "Model 18439", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.58013148914466, + 24.911159669742876 + ] + }, + "properties": { + "id": "meter-18440", + "maker": "Maker G", + "model": "Model 18440", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.30571362063672, + 21.641096285060318 + ] + }, + "properties": { + "id": "meter-18441", + "maker": "Maker C", + "model": "Model 18441", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.34051909860277, + 17.631025539764998 + ] + }, + "properties": { + "id": "meter-18442", + "maker": "Maker J", + "model": "Model 18442", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.054616767383, + 24.185158335453256 + ] + }, + "properties": { + "id": "meter-18443", + "maker": "Maker G", + "model": "Model 18443", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.40111626528335, + 26.367449475341076 + ] + }, + "properties": { + "id": "meter-18444", + "maker": "Maker F", + "model": "Model 18444", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.12094525123332, + 27.847658559151988 + ] + }, + "properties": { + "id": "meter-18445", + "maker": "Maker H", + "model": "Model 18445", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.96673093073258, + 20.864302843898997 + ] + }, + "properties": { + "id": "meter-18446", + "maker": "Maker J", + "model": "Model 18446", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.328708656220954, + 22.48708875917584 + ] + }, + "properties": { + "id": "meter-18447", + "maker": "Maker F", + "model": "Model 18447", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.61327373170864, + 29.10194975954654 + ] + }, + "properties": { + "id": "meter-18448", + "maker": "Maker E", + "model": "Model 18448", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.84171275289328, + 27.090584339949185 + ] + }, + "properties": { + "id": "meter-18449", + "maker": "Maker B", + "model": "Model 18449", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.592103833648196, + 28.568530912447308 + ] + }, + "properties": { + "id": "meter-18450", + "maker": "Maker I", + "model": "Model 18450", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.54811683543715, + 24.04993553413532 + ] + }, + "properties": { + "id": "meter-18451", + "maker": "Maker A", + "model": "Model 18451", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.06885802653987, + 27.12419389461084 + ] + }, + "properties": { + "id": "meter-18452", + "maker": "Maker E", + "model": "Model 18452", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.60021925493006, + 20.571292812889634 + ] + }, + "properties": { + "id": "meter-18453", + "maker": "Maker J", + "model": "Model 18453", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.71154261396278, + 18.30158247448345 + ] + }, + "properties": { + "id": "meter-18454", + "maker": "Maker I", + "model": "Model 18454", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.431697040563606, + 27.375745406130687 + ] + }, + "properties": { + "id": "meter-18455", + "maker": "Maker F", + "model": "Model 18455", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.362304830657266, + 20.52199688649858 + ] + }, + "properties": { + "id": "meter-18456", + "maker": "Maker F", + "model": "Model 18456", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.0227537419006, + 26.20315934044994 + ] + }, + "properties": { + "id": "meter-18457", + "maker": "Maker A", + "model": "Model 18457", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.79919909434153, + 24.590263304292893 + ] + }, + "properties": { + "id": "meter-18458", + "maker": "Maker C", + "model": "Model 18458", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.916056476882105, + 20.47518079750864 + ] + }, + "properties": { + "id": "meter-18459", + "maker": "Maker B", + "model": "Model 18459", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.90789414187533, + 29.233954076889702 + ] + }, + "properties": { + "id": "meter-18460", + "maker": "Maker A", + "model": "Model 18460", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.032880592068054, + 24.396269113741027 + ] + }, + "properties": { + "id": "meter-18461", + "maker": "Maker J", + "model": "Model 18461", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.165110352071586, + 18.64493879902783 + ] + }, + "properties": { + "id": "meter-18462", + "maker": "Maker I", + "model": "Model 18462", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.52330558508616, + 24.62646279824742 + ] + }, + "properties": { + "id": "meter-18463", + "maker": "Maker F", + "model": "Model 18463", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.99271111960635, + 30.208070175075576 + ] + }, + "properties": { + "id": "meter-18464", + "maker": "Maker A", + "model": "Model 18464", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.56654731300546, + 26.08286111956083 + ] + }, + "properties": { + "id": "meter-18465", + "maker": "Maker C", + "model": "Model 18465", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.74756499494462, + 23.85717994939311 + ] + }, + "properties": { + "id": "meter-18466", + "maker": "Maker C", + "model": "Model 18466", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.29514243866652, + 25.188883722266432 + ] + }, + "properties": { + "id": "meter-18467", + "maker": "Maker B", + "model": "Model 18467", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.945074397886124, + 29.352271557013893 + ] + }, + "properties": { + "id": "meter-18468", + "maker": "Maker C", + "model": "Model 18468", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.37389874865367, + 24.510492365710224 + ] + }, + "properties": { + "id": "meter-18469", + "maker": "Maker F", + "model": "Model 18469", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.79248826510267, + 26.86447756590233 + ] + }, + "properties": { + "id": "meter-18470", + "maker": "Maker D", + "model": "Model 18470", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.34235191524744, + 30.277932336153174 + ] + }, + "properties": { + "id": "meter-18471", + "maker": "Maker E", + "model": "Model 18471", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.30123236995733, + 21.032544459338244 + ] + }, + "properties": { + "id": "meter-18472", + "maker": "Maker D", + "model": "Model 18472", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.90182428120072, + 23.425312745754155 + ] + }, + "properties": { + "id": "meter-18473", + "maker": "Maker B", + "model": "Model 18473", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.75697085024679, + 29.021770794537574 + ] + }, + "properties": { + "id": "meter-18474", + "maker": "Maker F", + "model": "Model 18474", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.26820941817367, + 21.457071258142197 + ] + }, + "properties": { + "id": "meter-18475", + "maker": "Maker J", + "model": "Model 18475", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.5495078899495, + 21.059548546443335 + ] + }, + "properties": { + "id": "meter-18476", + "maker": "Maker I", + "model": "Model 18476", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.53349223556569, + 21.24528986062637 + ] + }, + "properties": { + "id": "meter-18477", + "maker": "Maker H", + "model": "Model 18477", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.95556741408734, + 20.68820975179124 + ] + }, + "properties": { + "id": "meter-18478", + "maker": "Maker A", + "model": "Model 18478", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.147876323810166, + 20.930110173491805 + ] + }, + "properties": { + "id": "meter-18479", + "maker": "Maker B", + "model": "Model 18479", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.49568776266072, + 18.720866874869802 + ] + }, + "properties": { + "id": "meter-18480", + "maker": "Maker H", + "model": "Model 18480", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.29668628113956, + 28.122989775577725 + ] + }, + "properties": { + "id": "meter-18481", + "maker": "Maker H", + "model": "Model 18481", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.57507441493016, + 27.927015032086807 + ] + }, + "properties": { + "id": "meter-18482", + "maker": "Maker G", + "model": "Model 18482", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.89433887902424, + 18.40293328090098 + ] + }, + "properties": { + "id": "meter-18483", + "maker": "Maker G", + "model": "Model 18483", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.324566381829115, + 26.634310040504975 + ] + }, + "properties": { + "id": "meter-18484", + "maker": "Maker C", + "model": "Model 18484", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.110604969994384, + 23.50027663370389 + ] + }, + "properties": { + "id": "meter-18485", + "maker": "Maker E", + "model": "Model 18485", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.82865237302783, + 23.827783463498953 + ] + }, + "properties": { + "id": "meter-18486", + "maker": "Maker A", + "model": "Model 18486", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.9383578037997, + 18.906255362242185 + ] + }, + "properties": { + "id": "meter-18487", + "maker": "Maker B", + "model": "Model 18487", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.62989402896551, + 27.328781237022003 + ] + }, + "properties": { + "id": "meter-18488", + "maker": "Maker E", + "model": "Model 18488", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.23092576421086, + 27.479264019462065 + ] + }, + "properties": { + "id": "meter-18489", + "maker": "Maker G", + "model": "Model 18489", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.90795236393437, + 30.620752536520286 + ] + }, + "properties": { + "id": "meter-18490", + "maker": "Maker A", + "model": "Model 18490", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.03656683052114, + 21.440439463803575 + ] + }, + "properties": { + "id": "meter-18491", + "maker": "Maker A", + "model": "Model 18491", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46082456736615, + 19.05207674687686 + ] + }, + "properties": { + "id": "meter-18492", + "maker": "Maker C", + "model": "Model 18492", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.6468110386425, + 20.849701209646813 + ] + }, + "properties": { + "id": "meter-18493", + "maker": "Maker G", + "model": "Model 18493", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.81819619592411, + 17.489012766552886 + ] + }, + "properties": { + "id": "meter-18494", + "maker": "Maker F", + "model": "Model 18494", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.95854330904475, + 20.211192546668414 + ] + }, + "properties": { + "id": "meter-18495", + "maker": "Maker F", + "model": "Model 18495", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.66127865264024, + 17.936708032130284 + ] + }, + "properties": { + "id": "meter-18496", + "maker": "Maker I", + "model": "Model 18496", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.127129638798294, + 21.438815439923673 + ] + }, + "properties": { + "id": "meter-18497", + "maker": "Maker A", + "model": "Model 18497", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.08854780101357, + 25.729361387274828 + ] + }, + "properties": { + "id": "meter-18498", + "maker": "Maker A", + "model": "Model 18498", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.01730592228907, + 24.03902986726051 + ] + }, + "properties": { + "id": "meter-18499", + "maker": "Maker F", + "model": "Model 18499", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.11476309837039, + 30.28708980596778 + ] + }, + "properties": { + "id": "meter-18500", + "maker": "Maker C", + "model": "Model 18500", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.78276930821955, + 25.058210649807226 + ] + }, + "properties": { + "id": "meter-18501", + "maker": "Maker A", + "model": "Model 18501", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.63721352432489, + 17.573322683386102 + ] + }, + "properties": { + "id": "meter-18502", + "maker": "Maker B", + "model": "Model 18502", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.43892377343198, + 20.004088542649665 + ] + }, + "properties": { + "id": "meter-18503", + "maker": "Maker A", + "model": "Model 18503", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.25414871241227, + 23.840085215092707 + ] + }, + "properties": { + "id": "meter-18504", + "maker": "Maker F", + "model": "Model 18504", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.17254203796799, + 21.6875573905551 + ] + }, + "properties": { + "id": "meter-18505", + "maker": "Maker G", + "model": "Model 18505", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.491281023967716, + 22.152273663857862 + ] + }, + "properties": { + "id": "meter-18506", + "maker": "Maker F", + "model": "Model 18506", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.05107638272061, + 23.299776898649583 + ] + }, + "properties": { + "id": "meter-18507", + "maker": "Maker G", + "model": "Model 18507", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.55983149952618, + 22.31037803517102 + ] + }, + "properties": { + "id": "meter-18508", + "maker": "Maker A", + "model": "Model 18508", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.93831340918402, + 24.718372979658128 + ] + }, + "properties": { + "id": "meter-18509", + "maker": "Maker I", + "model": "Model 18509", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.92743088468177, + 20.834327115666486 + ] + }, + "properties": { + "id": "meter-18510", + "maker": "Maker F", + "model": "Model 18510", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.0092137969997, + 22.584072933006517 + ] + }, + "properties": { + "id": "meter-18511", + "maker": "Maker A", + "model": "Model 18511", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.427442435379184, + 20.51582329061534 + ] + }, + "properties": { + "id": "meter-18512", + "maker": "Maker E", + "model": "Model 18512", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.68148324970258, + 20.681669737254634 + ] + }, + "properties": { + "id": "meter-18513", + "maker": "Maker H", + "model": "Model 18513", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20331582559682, + 20.513059726432463 + ] + }, + "properties": { + "id": "meter-18514", + "maker": "Maker F", + "model": "Model 18514", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.434317149732834, + 20.654698359185304 + ] + }, + "properties": { + "id": "meter-18515", + "maker": "Maker J", + "model": "Model 18515", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.582669854847985, + 20.936259653006328 + ] + }, + "properties": { + "id": "meter-18516", + "maker": "Maker I", + "model": "Model 18516", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.53196650138636, + 26.442691661490556 + ] + }, + "properties": { + "id": "meter-18517", + "maker": "Maker D", + "model": "Model 18517", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.61390725451268, + 22.109194851934507 + ] + }, + "properties": { + "id": "meter-18518", + "maker": "Maker D", + "model": "Model 18518", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.996214752185814, + 24.536115889319614 + ] + }, + "properties": { + "id": "meter-18519", + "maker": "Maker F", + "model": "Model 18519", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.89410196040673, + 25.35560544631511 + ] + }, + "properties": { + "id": "meter-18520", + "maker": "Maker H", + "model": "Model 18520", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.83169169793774, + 21.501075015550477 + ] + }, + "properties": { + "id": "meter-18521", + "maker": "Maker E", + "model": "Model 18521", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.10332260595641, + 26.92758503139079 + ] + }, + "properties": { + "id": "meter-18522", + "maker": "Maker A", + "model": "Model 18522", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.28666892930344, + 29.309241410148786 + ] + }, + "properties": { + "id": "meter-18523", + "maker": "Maker H", + "model": "Model 18523", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.17290023977408, + 26.545076247197912 + ] + }, + "properties": { + "id": "meter-18524", + "maker": "Maker G", + "model": "Model 18524", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.878178601520226, + 20.871993722560823 + ] + }, + "properties": { + "id": "meter-18525", + "maker": "Maker B", + "model": "Model 18525", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.37110189361344, + 20.571060341987724 + ] + }, + "properties": { + "id": "meter-18526", + "maker": "Maker F", + "model": "Model 18526", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.60047349348387, + 27.209618860851453 + ] + }, + "properties": { + "id": "meter-18527", + "maker": "Maker I", + "model": "Model 18527", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.05261313435103, + 25.988495785111482 + ] + }, + "properties": { + "id": "meter-18528", + "maker": "Maker E", + "model": "Model 18528", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.858980574945605, + 23.59052630121179 + ] + }, + "properties": { + "id": "meter-18529", + "maker": "Maker F", + "model": "Model 18529", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.620882693207925, + 29.072546044791906 + ] + }, + "properties": { + "id": "meter-18530", + "maker": "Maker B", + "model": "Model 18530", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.63318499916753, + 26.567959411977316 + ] + }, + "properties": { + "id": "meter-18531", + "maker": "Maker A", + "model": "Model 18531", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.112419175542094, + 25.295019841681327 + ] + }, + "properties": { + "id": "meter-18532", + "maker": "Maker A", + "model": "Model 18532", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.75934190539543, + 22.071402819173088 + ] + }, + "properties": { + "id": "meter-18533", + "maker": "Maker A", + "model": "Model 18533", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.037670134788286, + 19.579241726552223 + ] + }, + "properties": { + "id": "meter-18534", + "maker": "Maker F", + "model": "Model 18534", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.053085617916196, + 25.275475602404846 + ] + }, + "properties": { + "id": "meter-18535", + "maker": "Maker B", + "model": "Model 18535", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.59568935011884, + 24.50672551236367 + ] + }, + "properties": { + "id": "meter-18536", + "maker": "Maker E", + "model": "Model 18536", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.76936698381981, + 26.88750803913186 + ] + }, + "properties": { + "id": "meter-18537", + "maker": "Maker B", + "model": "Model 18537", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.629184961978055, + 20.140068822280377 + ] + }, + "properties": { + "id": "meter-18538", + "maker": "Maker H", + "model": "Model 18538", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.54326251898758, + 29.010937203184334 + ] + }, + "properties": { + "id": "meter-18539", + "maker": "Maker A", + "model": "Model 18539", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.66922641983033, + 17.586757327196725 + ] + }, + "properties": { + "id": "meter-18540", + "maker": "Maker I", + "model": "Model 18540", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.162193310174516, + 26.35092661567736 + ] + }, + "properties": { + "id": "meter-18541", + "maker": "Maker E", + "model": "Model 18541", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.94232324921937, + 19.50127075132266 + ] + }, + "properties": { + "id": "meter-18542", + "maker": "Maker I", + "model": "Model 18542", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.9075320864894, + 21.002257740920086 + ] + }, + "properties": { + "id": "meter-18543", + "maker": "Maker F", + "model": "Model 18543", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.894494522201995, + 25.658972831607528 + ] + }, + "properties": { + "id": "meter-18544", + "maker": "Maker J", + "model": "Model 18544", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.71585257021503, + 22.78071170822564 + ] + }, + "properties": { + "id": "meter-18545", + "maker": "Maker D", + "model": "Model 18545", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.69601640435603, + 19.68822526791795 + ] + }, + "properties": { + "id": "meter-18546", + "maker": "Maker H", + "model": "Model 18546", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.12638575202134, + 29.318157312089816 + ] + }, + "properties": { + "id": "meter-18547", + "maker": "Maker J", + "model": "Model 18547", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.89341687630642, + 17.460237925554875 + ] + }, + "properties": { + "id": "meter-18548", + "maker": "Maker I", + "model": "Model 18548", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.21493615163262, + 24.0069905171617 + ] + }, + "properties": { + "id": "meter-18549", + "maker": "Maker H", + "model": "Model 18549", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.585558086119015, + 26.881489232378215 + ] + }, + "properties": { + "id": "meter-18550", + "maker": "Maker B", + "model": "Model 18550", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.27834566986542, + 27.998820983382977 + ] + }, + "properties": { + "id": "meter-18551", + "maker": "Maker G", + "model": "Model 18551", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.76398902488303, + 17.501944571620747 + ] + }, + "properties": { + "id": "meter-18552", + "maker": "Maker H", + "model": "Model 18552", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.13294202200256, + 19.162088071353136 + ] + }, + "properties": { + "id": "meter-18553", + "maker": "Maker I", + "model": "Model 18553", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.38159349076885, + 26.927532046936335 + ] + }, + "properties": { + "id": "meter-18554", + "maker": "Maker F", + "model": "Model 18554", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.826665317312276, + 23.83942751701504 + ] + }, + "properties": { + "id": "meter-18555", + "maker": "Maker C", + "model": "Model 18555", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.139381392628664, + 23.122246643185385 + ] + }, + "properties": { + "id": "meter-18556", + "maker": "Maker J", + "model": "Model 18556", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.306102536652176, + 19.808774826819093 + ] + }, + "properties": { + "id": "meter-18557", + "maker": "Maker E", + "model": "Model 18557", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.53526004670092, + 17.52115628497318 + ] + }, + "properties": { + "id": "meter-18558", + "maker": "Maker A", + "model": "Model 18558", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.710299265164096, + 23.36216102596644 + ] + }, + "properties": { + "id": "meter-18559", + "maker": "Maker D", + "model": "Model 18559", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.338512624397644, + 26.78446167000163 + ] + }, + "properties": { + "id": "meter-18560", + "maker": "Maker A", + "model": "Model 18560", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.936172090099745, + 18.146530394207485 + ] + }, + "properties": { + "id": "meter-18561", + "maker": "Maker H", + "model": "Model 18561", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.582781078116575, + 23.4477548487468 + ] + }, + "properties": { + "id": "meter-18562", + "maker": "Maker H", + "model": "Model 18562", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.418315905630465, + 19.54458122252786 + ] + }, + "properties": { + "id": "meter-18563", + "maker": "Maker D", + "model": "Model 18563", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.50612431381049, + 24.99045839030714 + ] + }, + "properties": { + "id": "meter-18564", + "maker": "Maker H", + "model": "Model 18564", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.610729651647894, + 23.647389182599802 + ] + }, + "properties": { + "id": "meter-18565", + "maker": "Maker I", + "model": "Model 18565", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.56918226995617, + 22.96267591199971 + ] + }, + "properties": { + "id": "meter-18566", + "maker": "Maker I", + "model": "Model 18566", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.14313591171236, + 30.792174690846508 + ] + }, + "properties": { + "id": "meter-18567", + "maker": "Maker H", + "model": "Model 18567", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.593297137094126, + 22.8577309519666 + ] + }, + "properties": { + "id": "meter-18568", + "maker": "Maker D", + "model": "Model 18568", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.28246237263211, + 24.0192768553546 + ] + }, + "properties": { + "id": "meter-18569", + "maker": "Maker B", + "model": "Model 18569", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.201908006537344, + 22.850960750998375 + ] + }, + "properties": { + "id": "meter-18570", + "maker": "Maker G", + "model": "Model 18570", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.48547471399407, + 21.89027935963166 + ] + }, + "properties": { + "id": "meter-18571", + "maker": "Maker E", + "model": "Model 18571", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.74712904617603, + 23.27169586465554 + ] + }, + "properties": { + "id": "meter-18572", + "maker": "Maker E", + "model": "Model 18572", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.13999240131014, + 30.101542469166006 + ] + }, + "properties": { + "id": "meter-18573", + "maker": "Maker E", + "model": "Model 18573", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.791596119378596, + 22.371219333400763 + ] + }, + "properties": { + "id": "meter-18574", + "maker": "Maker C", + "model": "Model 18574", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.60803863370259, + 19.53726384977584 + ] + }, + "properties": { + "id": "meter-18575", + "maker": "Maker G", + "model": "Model 18575", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.73733480363113, + 20.238259379433003 + ] + }, + "properties": { + "id": "meter-18576", + "maker": "Maker H", + "model": "Model 18576", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.69046888307363, + 27.456592038423707 + ] + }, + "properties": { + "id": "meter-18577", + "maker": "Maker H", + "model": "Model 18577", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.68472782447759, + 27.92529335653571 + ] + }, + "properties": { + "id": "meter-18578", + "maker": "Maker F", + "model": "Model 18578", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.09417937449072, + 26.133819577980454 + ] + }, + "properties": { + "id": "meter-18579", + "maker": "Maker C", + "model": "Model 18579", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.217270377905095, + 28.711775901892548 + ] + }, + "properties": { + "id": "meter-18580", + "maker": "Maker E", + "model": "Model 18580", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.89353051598209, + 20.224967542816128 + ] + }, + "properties": { + "id": "meter-18581", + "maker": "Maker E", + "model": "Model 18581", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.72114382799945, + 21.338417887513344 + ] + }, + "properties": { + "id": "meter-18582", + "maker": "Maker A", + "model": "Model 18582", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.93038308468712, + 25.888763082989573 + ] + }, + "properties": { + "id": "meter-18583", + "maker": "Maker E", + "model": "Model 18583", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.28952906252909, + 23.39828532008523 + ] + }, + "properties": { + "id": "meter-18584", + "maker": "Maker G", + "model": "Model 18584", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.73693784327522, + 28.668321466008116 + ] + }, + "properties": { + "id": "meter-18585", + "maker": "Maker F", + "model": "Model 18585", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.67465955142006, + 28.955181062488293 + ] + }, + "properties": { + "id": "meter-18586", + "maker": "Maker H", + "model": "Model 18586", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.17268475663508, + 21.747398467192223 + ] + }, + "properties": { + "id": "meter-18587", + "maker": "Maker A", + "model": "Model 18587", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.650134332776176, + 25.295180683693104 + ] + }, + "properties": { + "id": "meter-18588", + "maker": "Maker C", + "model": "Model 18588", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.08674151416361, + 28.171899704948242 + ] + }, + "properties": { + "id": "meter-18589", + "maker": "Maker I", + "model": "Model 18589", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.652310211393555, + 24.26056588680698 + ] + }, + "properties": { + "id": "meter-18590", + "maker": "Maker C", + "model": "Model 18590", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.28256279882301, + 28.09549400340605 + ] + }, + "properties": { + "id": "meter-18591", + "maker": "Maker A", + "model": "Model 18591", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.33690286934642, + 25.90994761020932 + ] + }, + "properties": { + "id": "meter-18592", + "maker": "Maker C", + "model": "Model 18592", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.13574349755301, + 26.21798223348553 + ] + }, + "properties": { + "id": "meter-18593", + "maker": "Maker G", + "model": "Model 18593", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.19282966270538, + 19.57390023589632 + ] + }, + "properties": { + "id": "meter-18594", + "maker": "Maker E", + "model": "Model 18594", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.44215019715714, + 27.103835697803397 + ] + }, + "properties": { + "id": "meter-18595", + "maker": "Maker D", + "model": "Model 18595", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.367432786677725, + 27.93291387667552 + ] + }, + "properties": { + "id": "meter-18596", + "maker": "Maker G", + "model": "Model 18596", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.95174703104987, + 25.139004554782424 + ] + }, + "properties": { + "id": "meter-18597", + "maker": "Maker F", + "model": "Model 18597", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.30893611785758, + 28.78795690608624 + ] + }, + "properties": { + "id": "meter-18598", + "maker": "Maker B", + "model": "Model 18598", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.1817622011259, + 24.90408740731266 + ] + }, + "properties": { + "id": "meter-18599", + "maker": "Maker G", + "model": "Model 18599", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.81821591391706, + 30.518580238070996 + ] + }, + "properties": { + "id": "meter-18600", + "maker": "Maker F", + "model": "Model 18600", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.5362673341374, + 19.21949111378159 + ] + }, + "properties": { + "id": "meter-18601", + "maker": "Maker E", + "model": "Model 18601", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.835558329525526, + 23.628064680140938 + ] + }, + "properties": { + "id": "meter-18602", + "maker": "Maker H", + "model": "Model 18602", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.787243533933406, + 20.892579785094465 + ] + }, + "properties": { + "id": "meter-18603", + "maker": "Maker F", + "model": "Model 18603", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.32633953285747, + 24.345809890715255 + ] + }, + "properties": { + "id": "meter-18604", + "maker": "Maker A", + "model": "Model 18604", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.714993724748574, + 28.282524102056918 + ] + }, + "properties": { + "id": "meter-18605", + "maker": "Maker J", + "model": "Model 18605", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.31748696090261, + 24.868199585586865 + ] + }, + "properties": { + "id": "meter-18606", + "maker": "Maker B", + "model": "Model 18606", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.65392198304494, + 22.200945040817913 + ] + }, + "properties": { + "id": "meter-18607", + "maker": "Maker I", + "model": "Model 18607", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.03723091636804, + 29.14574599097424 + ] + }, + "properties": { + "id": "meter-18608", + "maker": "Maker F", + "model": "Model 18608", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.912780822140874, + 21.70119557854222 + ] + }, + "properties": { + "id": "meter-18609", + "maker": "Maker I", + "model": "Model 18609", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.999877374726935, + 27.723806780576513 + ] + }, + "properties": { + "id": "meter-18610", + "maker": "Maker B", + "model": "Model 18610", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.244207908220154, + 25.826588124739732 + ] + }, + "properties": { + "id": "meter-18611", + "maker": "Maker E", + "model": "Model 18611", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.18293898091053, + 28.352781582514 + ] + }, + "properties": { + "id": "meter-18612", + "maker": "Maker F", + "model": "Model 18612", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.14240312578161, + 17.85770523872104 + ] + }, + "properties": { + "id": "meter-18613", + "maker": "Maker I", + "model": "Model 18613", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.20825226827762, + 19.916401725928807 + ] + }, + "properties": { + "id": "meter-18614", + "maker": "Maker C", + "model": "Model 18614", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.485329259276305, + 22.44944528691644 + ] + }, + "properties": { + "id": "meter-18615", + "maker": "Maker E", + "model": "Model 18615", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.922487501450505, + 18.173544273940568 + ] + }, + "properties": { + "id": "meter-18616", + "maker": "Maker D", + "model": "Model 18616", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.533602319246285, + 28.548985713208587 + ] + }, + "properties": { + "id": "meter-18617", + "maker": "Maker A", + "model": "Model 18617", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.81788499571931, + 19.56542790322751 + ] + }, + "properties": { + "id": "meter-18618", + "maker": "Maker J", + "model": "Model 18618", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.41582365167118, + 27.613525029956676 + ] + }, + "properties": { + "id": "meter-18619", + "maker": "Maker C", + "model": "Model 18619", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.45240536842624, + 22.729607324914735 + ] + }, + "properties": { + "id": "meter-18620", + "maker": "Maker J", + "model": "Model 18620", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.546009633334364, + 31.23469096386672 + ] + }, + "properties": { + "id": "meter-18621", + "maker": "Maker F", + "model": "Model 18621", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.931796324746884, + 19.530221604629244 + ] + }, + "properties": { + "id": "meter-18622", + "maker": "Maker A", + "model": "Model 18622", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.872769908696796, + 17.8956728758023 + ] + }, + "properties": { + "id": "meter-18623", + "maker": "Maker C", + "model": "Model 18623", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.95078502160469, + 20.086797244391168 + ] + }, + "properties": { + "id": "meter-18624", + "maker": "Maker A", + "model": "Model 18624", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.99511426594196, + 28.539977697067435 + ] + }, + "properties": { + "id": "meter-18625", + "maker": "Maker I", + "model": "Model 18625", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.57516934647876, + 21.38118134495384 + ] + }, + "properties": { + "id": "meter-18626", + "maker": "Maker B", + "model": "Model 18626", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.44423212204993, + 24.80796580898859 + ] + }, + "properties": { + "id": "meter-18627", + "maker": "Maker B", + "model": "Model 18627", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.68373936512288, + 21.48305632295736 + ] + }, + "properties": { + "id": "meter-18628", + "maker": "Maker C", + "model": "Model 18628", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.34704753474259, + 27.891605676833233 + ] + }, + "properties": { + "id": "meter-18629", + "maker": "Maker C", + "model": "Model 18629", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.27369375318749, + 26.093652568530402 + ] + }, + "properties": { + "id": "meter-18630", + "maker": "Maker D", + "model": "Model 18630", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.22263712415836, + 21.133058967554167 + ] + }, + "properties": { + "id": "meter-18631", + "maker": "Maker I", + "model": "Model 18631", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.7834708791622, + 27.333137706857226 + ] + }, + "properties": { + "id": "meter-18632", + "maker": "Maker H", + "model": "Model 18632", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.50989005824499, + 24.947488725466407 + ] + }, + "properties": { + "id": "meter-18633", + "maker": "Maker E", + "model": "Model 18633", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.284059927857214, + 21.580707438355077 + ] + }, + "properties": { + "id": "meter-18634", + "maker": "Maker B", + "model": "Model 18634", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.80224585628106, + 22.559362319034594 + ] + }, + "properties": { + "id": "meter-18635", + "maker": "Maker B", + "model": "Model 18635", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.13523207889131, + 28.911505849347535 + ] + }, + "properties": { + "id": "meter-18636", + "maker": "Maker C", + "model": "Model 18636", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.66251899454606, + 28.14255947129567 + ] + }, + "properties": { + "id": "meter-18637", + "maker": "Maker F", + "model": "Model 18637", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.87102251271304, + 20.918921655738465 + ] + }, + "properties": { + "id": "meter-18638", + "maker": "Maker J", + "model": "Model 18638", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.78861182579091, + 19.91346017077092 + ] + }, + "properties": { + "id": "meter-18639", + "maker": "Maker J", + "model": "Model 18639", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.02019056316628, + 28.066855984096467 + ] + }, + "properties": { + "id": "meter-18640", + "maker": "Maker F", + "model": "Model 18640", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.869700561221904, + 22.849586092246806 + ] + }, + "properties": { + "id": "meter-18641", + "maker": "Maker A", + "model": "Model 18641", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.90235788536174, + 18.020273926844943 + ] + }, + "properties": { + "id": "meter-18642", + "maker": "Maker I", + "model": "Model 18642", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.68312117849367, + 20.79769573399932 + ] + }, + "properties": { + "id": "meter-18643", + "maker": "Maker F", + "model": "Model 18643", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.769811032013436, + 23.015546802167044 + ] + }, + "properties": { + "id": "meter-18644", + "maker": "Maker D", + "model": "Model 18644", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.07030307914894, + 23.810550491489135 + ] + }, + "properties": { + "id": "meter-18645", + "maker": "Maker J", + "model": "Model 18645", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.74680447357902, + 23.552448510660156 + ] + }, + "properties": { + "id": "meter-18646", + "maker": "Maker F", + "model": "Model 18646", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.64810577081243, + 20.17556655080878 + ] + }, + "properties": { + "id": "meter-18647", + "maker": "Maker F", + "model": "Model 18647", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.845561378810345, + 26.769557339088536 + ] + }, + "properties": { + "id": "meter-18648", + "maker": "Maker F", + "model": "Model 18648", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.13635612851876, + 28.428128038150767 + ] + }, + "properties": { + "id": "meter-18649", + "maker": "Maker A", + "model": "Model 18649", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.462434613619955, + 25.805872412992898 + ] + }, + "properties": { + "id": "meter-18650", + "maker": "Maker C", + "model": "Model 18650", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.94914912679968, + 24.659893020840915 + ] + }, + "properties": { + "id": "meter-18651", + "maker": "Maker G", + "model": "Model 18651", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.91836534934349, + 26.57714479246413 + ] + }, + "properties": { + "id": "meter-18652", + "maker": "Maker I", + "model": "Model 18652", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.21418943352941, + 29.701937718743785 + ] + }, + "properties": { + "id": "meter-18653", + "maker": "Maker B", + "model": "Model 18653", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.23486526820096, + 17.591875490862137 + ] + }, + "properties": { + "id": "meter-18654", + "maker": "Maker D", + "model": "Model 18654", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.464114633778365, + 24.09679125087323 + ] + }, + "properties": { + "id": "meter-18655", + "maker": "Maker E", + "model": "Model 18655", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.078677908941835, + 25.374415123062747 + ] + }, + "properties": { + "id": "meter-18656", + "maker": "Maker H", + "model": "Model 18656", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.57464728819122, + 28.05610375124813 + ] + }, + "properties": { + "id": "meter-18657", + "maker": "Maker I", + "model": "Model 18657", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.96911604781506, + 26.600302497814354 + ] + }, + "properties": { + "id": "meter-18658", + "maker": "Maker J", + "model": "Model 18658", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.37641843709626, + 26.751836213088538 + ] + }, + "properties": { + "id": "meter-18659", + "maker": "Maker J", + "model": "Model 18659", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88083958603945, + 23.40465131414366 + ] + }, + "properties": { + "id": "meter-18660", + "maker": "Maker I", + "model": "Model 18660", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.673060140951904, + 26.735216946850343 + ] + }, + "properties": { + "id": "meter-18661", + "maker": "Maker I", + "model": "Model 18661", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.04290397334271, + 25.80991226323708 + ] + }, + "properties": { + "id": "meter-18662", + "maker": "Maker A", + "model": "Model 18662", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.42412074520749, + 19.84161530254589 + ] + }, + "properties": { + "id": "meter-18663", + "maker": "Maker E", + "model": "Model 18663", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.9620518764587, + 24.16771748800428 + ] + }, + "properties": { + "id": "meter-18664", + "maker": "Maker B", + "model": "Model 18664", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.81821065286573, + 18.321316062706472 + ] + }, + "properties": { + "id": "meter-18665", + "maker": "Maker J", + "model": "Model 18665", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.34016642198146, + 21.794293378774867 + ] + }, + "properties": { + "id": "meter-18666", + "maker": "Maker J", + "model": "Model 18666", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.97471129007522, + 18.1292678541602 + ] + }, + "properties": { + "id": "meter-18667", + "maker": "Maker H", + "model": "Model 18667", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.02406339704596, + 20.95345434692239 + ] + }, + "properties": { + "id": "meter-18668", + "maker": "Maker G", + "model": "Model 18668", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.31876844537998, + 27.363276914897718 + ] + }, + "properties": { + "id": "meter-18669", + "maker": "Maker C", + "model": "Model 18669", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.35807323350831, + 19.59611565190601 + ] + }, + "properties": { + "id": "meter-18670", + "maker": "Maker A", + "model": "Model 18670", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.07864250865933, + 22.9562756487013 + ] + }, + "properties": { + "id": "meter-18671", + "maker": "Maker D", + "model": "Model 18671", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.355384122957595, + 31.035375068745243 + ] + }, + "properties": { + "id": "meter-18672", + "maker": "Maker D", + "model": "Model 18672", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.43698426912521, + 29.868416530836498 + ] + }, + "properties": { + "id": "meter-18673", + "maker": "Maker I", + "model": "Model 18673", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.83699571566556, + 28.086651475185693 + ] + }, + "properties": { + "id": "meter-18674", + "maker": "Maker I", + "model": "Model 18674", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.42137081558446, + 28.486595002318154 + ] + }, + "properties": { + "id": "meter-18675", + "maker": "Maker E", + "model": "Model 18675", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.329311064267046, + 23.95242835761646 + ] + }, + "properties": { + "id": "meter-18676", + "maker": "Maker F", + "model": "Model 18676", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.13058863271013, + 24.867926712046085 + ] + }, + "properties": { + "id": "meter-18677", + "maker": "Maker F", + "model": "Model 18677", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.41911826879788, + 21.287318852116666 + ] + }, + "properties": { + "id": "meter-18678", + "maker": "Maker C", + "model": "Model 18678", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.10065467132681, + 23.356461510969087 + ] + }, + "properties": { + "id": "meter-18679", + "maker": "Maker A", + "model": "Model 18679", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.3017132636065, + 29.850083930849053 + ] + }, + "properties": { + "id": "meter-18680", + "maker": "Maker H", + "model": "Model 18680", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.43853479755718, + 29.208666852621857 + ] + }, + "properties": { + "id": "meter-18681", + "maker": "Maker D", + "model": "Model 18681", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.45294982793469, + 28.45044946683656 + ] + }, + "properties": { + "id": "meter-18682", + "maker": "Maker A", + "model": "Model 18682", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.37192789314987, + 25.781110109332566 + ] + }, + "properties": { + "id": "meter-18683", + "maker": "Maker F", + "model": "Model 18683", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.584966820745876, + 27.34807758421574 + ] + }, + "properties": { + "id": "meter-18684", + "maker": "Maker H", + "model": "Model 18684", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.16889320948113, + 29.063846624461142 + ] + }, + "properties": { + "id": "meter-18685", + "maker": "Maker E", + "model": "Model 18685", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.57064640242292, + 29.06026249620335 + ] + }, + "properties": { + "id": "meter-18686", + "maker": "Maker B", + "model": "Model 18686", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.55648641014056, + 28.790776121050307 + ] + }, + "properties": { + "id": "meter-18687", + "maker": "Maker E", + "model": "Model 18687", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.006097958984114, + 29.430355669712792 + ] + }, + "properties": { + "id": "meter-18688", + "maker": "Maker H", + "model": "Model 18688", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.077963397388004, + 28.478070958170875 + ] + }, + "properties": { + "id": "meter-18689", + "maker": "Maker B", + "model": "Model 18689", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.692059226272434, + 21.40952845539811 + ] + }, + "properties": { + "id": "meter-18690", + "maker": "Maker H", + "model": "Model 18690", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.22038592831515, + 26.18553517682934 + ] + }, + "properties": { + "id": "meter-18691", + "maker": "Maker F", + "model": "Model 18691", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.30569241005894, + 24.37860094800078 + ] + }, + "properties": { + "id": "meter-18692", + "maker": "Maker F", + "model": "Model 18692", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.77130889834933, + 27.613018206209652 + ] + }, + "properties": { + "id": "meter-18693", + "maker": "Maker C", + "model": "Model 18693", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.14059406286981, + 22.121631358087953 + ] + }, + "properties": { + "id": "meter-18694", + "maker": "Maker H", + "model": "Model 18694", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.73491450804561, + 23.853545313575243 + ] + }, + "properties": { + "id": "meter-18695", + "maker": "Maker I", + "model": "Model 18695", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.032142548185305, + 26.22964868586283 + ] + }, + "properties": { + "id": "meter-18696", + "maker": "Maker F", + "model": "Model 18696", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.22165704636023, + 28.83543482254098 + ] + }, + "properties": { + "id": "meter-18697", + "maker": "Maker B", + "model": "Model 18697", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.678528427579955, + 23.86798593090915 + ] + }, + "properties": { + "id": "meter-18698", + "maker": "Maker E", + "model": "Model 18698", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.45215208657531, + 24.4029355686006 + ] + }, + "properties": { + "id": "meter-18699", + "maker": "Maker F", + "model": "Model 18699", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.55004097512827, + 21.612928822531025 + ] + }, + "properties": { + "id": "meter-18700", + "maker": "Maker G", + "model": "Model 18700", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.72760239745721, + 24.32715040922732 + ] + }, + "properties": { + "id": "meter-18701", + "maker": "Maker H", + "model": "Model 18701", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.286606045239616, + 23.278994976997865 + ] + }, + "properties": { + "id": "meter-18702", + "maker": "Maker G", + "model": "Model 18702", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.55158773837237, + 27.821425161116785 + ] + }, + "properties": { + "id": "meter-18703", + "maker": "Maker C", + "model": "Model 18703", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.576457039708345, + 29.167170640499883 + ] + }, + "properties": { + "id": "meter-18704", + "maker": "Maker F", + "model": "Model 18704", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.15869347388063, + 26.18773308092161 + ] + }, + "properties": { + "id": "meter-18705", + "maker": "Maker H", + "model": "Model 18705", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.25517221785595, + 27.87439590362455 + ] + }, + "properties": { + "id": "meter-18706", + "maker": "Maker E", + "model": "Model 18706", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.19792075301073, + 26.592270698706827 + ] + }, + "properties": { + "id": "meter-18707", + "maker": "Maker B", + "model": "Model 18707", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.291004173524385, + 27.11823409203051 + ] + }, + "properties": { + "id": "meter-18708", + "maker": "Maker F", + "model": "Model 18708", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.126424216722334, + 20.720856946637483 + ] + }, + "properties": { + "id": "meter-18709", + "maker": "Maker I", + "model": "Model 18709", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.108915723799804, + 23.774139482392723 + ] + }, + "properties": { + "id": "meter-18710", + "maker": "Maker C", + "model": "Model 18710", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.94369477692234, + 21.943618156156624 + ] + }, + "properties": { + "id": "meter-18711", + "maker": "Maker D", + "model": "Model 18711", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.80711590653483, + 30.500147943559455 + ] + }, + "properties": { + "id": "meter-18712", + "maker": "Maker I", + "model": "Model 18712", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.17743999762136, + 25.818799831187413 + ] + }, + "properties": { + "id": "meter-18713", + "maker": "Maker C", + "model": "Model 18713", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.62828022809633, + 30.94976091414114 + ] + }, + "properties": { + "id": "meter-18714", + "maker": "Maker A", + "model": "Model 18714", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.82822013702035, + 21.78460511084363 + ] + }, + "properties": { + "id": "meter-18715", + "maker": "Maker J", + "model": "Model 18715", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.43177048102545, + 23.288607738509388 + ] + }, + "properties": { + "id": "meter-18716", + "maker": "Maker J", + "model": "Model 18716", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.3201887624164, + 30.081641553362477 + ] + }, + "properties": { + "id": "meter-18717", + "maker": "Maker I", + "model": "Model 18717", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.86132110312338, + 20.199367765867475 + ] + }, + "properties": { + "id": "meter-18718", + "maker": "Maker G", + "model": "Model 18718", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.60218388456645, + 28.53843645533637 + ] + }, + "properties": { + "id": "meter-18719", + "maker": "Maker B", + "model": "Model 18719", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.23141685069596, + 25.55563381310401 + ] + }, + "properties": { + "id": "meter-18720", + "maker": "Maker F", + "model": "Model 18720", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.191637748827766, + 27.93898376893615 + ] + }, + "properties": { + "id": "meter-18721", + "maker": "Maker C", + "model": "Model 18721", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.46952439300807, + 20.872689135711052 + ] + }, + "properties": { + "id": "meter-18722", + "maker": "Maker G", + "model": "Model 18722", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.04398177501696, + 24.89505426280506 + ] + }, + "properties": { + "id": "meter-18723", + "maker": "Maker A", + "model": "Model 18723", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.761860613080835, + 23.11108519296576 + ] + }, + "properties": { + "id": "meter-18724", + "maker": "Maker D", + "model": "Model 18724", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.57075925860167, + 25.806580636662808 + ] + }, + "properties": { + "id": "meter-18725", + "maker": "Maker C", + "model": "Model 18725", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.24869100895709, + 20.748968350595003 + ] + }, + "properties": { + "id": "meter-18726", + "maker": "Maker C", + "model": "Model 18726", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.79006473199897, + 22.107850484970328 + ] + }, + "properties": { + "id": "meter-18727", + "maker": "Maker E", + "model": "Model 18727", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.43294966139959, + 23.974192673399504 + ] + }, + "properties": { + "id": "meter-18728", + "maker": "Maker F", + "model": "Model 18728", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.253284388698056, + 22.227111402221183 + ] + }, + "properties": { + "id": "meter-18729", + "maker": "Maker A", + "model": "Model 18729", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.34210873296249, + 29.127040507942674 + ] + }, + "properties": { + "id": "meter-18730", + "maker": "Maker H", + "model": "Model 18730", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.89422308628143, + 27.68970653059329 + ] + }, + "properties": { + "id": "meter-18731", + "maker": "Maker C", + "model": "Model 18731", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.397365362277796, + 25.9811978674178 + ] + }, + "properties": { + "id": "meter-18732", + "maker": "Maker B", + "model": "Model 18732", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.41151248026955, + 27.081561200555402 + ] + }, + "properties": { + "id": "meter-18733", + "maker": "Maker F", + "model": "Model 18733", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.52159424210974, + 20.112092035608004 + ] + }, + "properties": { + "id": "meter-18734", + "maker": "Maker A", + "model": "Model 18734", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.790372511117155, + 24.171007453491445 + ] + }, + "properties": { + "id": "meter-18735", + "maker": "Maker A", + "model": "Model 18735", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.177185212178, + 21.860682528641846 + ] + }, + "properties": { + "id": "meter-18736", + "maker": "Maker B", + "model": "Model 18736", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.06177098640557, + 25.120415642821214 + ] + }, + "properties": { + "id": "meter-18737", + "maker": "Maker D", + "model": "Model 18737", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.61513389787828, + 23.3616233542445 + ] + }, + "properties": { + "id": "meter-18738", + "maker": "Maker A", + "model": "Model 18738", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.94349430318806, + 23.166618389946017 + ] + }, + "properties": { + "id": "meter-18739", + "maker": "Maker J", + "model": "Model 18739", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.097888061595214, + 21.337188497798977 + ] + }, + "properties": { + "id": "meter-18740", + "maker": "Maker E", + "model": "Model 18740", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.18464158425446, + 26.215235699084552 + ] + }, + "properties": { + "id": "meter-18741", + "maker": "Maker J", + "model": "Model 18741", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.8039939706357, + 25.12686706364436 + ] + }, + "properties": { + "id": "meter-18742", + "maker": "Maker C", + "model": "Model 18742", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.25513740294467, + 19.888440501970443 + ] + }, + "properties": { + "id": "meter-18743", + "maker": "Maker F", + "model": "Model 18743", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.8106679816174, + 24.63538740640092 + ] + }, + "properties": { + "id": "meter-18744", + "maker": "Maker J", + "model": "Model 18744", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.330015967925775, + 19.683579246108955 + ] + }, + "properties": { + "id": "meter-18745", + "maker": "Maker A", + "model": "Model 18745", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.4075045082909, + 20.10034392076699 + ] + }, + "properties": { + "id": "meter-18746", + "maker": "Maker D", + "model": "Model 18746", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.628603728546885, + 22.869203779427195 + ] + }, + "properties": { + "id": "meter-18747", + "maker": "Maker B", + "model": "Model 18747", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.92120482509687, + 18.747825134552464 + ] + }, + "properties": { + "id": "meter-18748", + "maker": "Maker H", + "model": "Model 18748", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.658933958311366, + 20.689797067628838 + ] + }, + "properties": { + "id": "meter-18749", + "maker": "Maker D", + "model": "Model 18749", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.41306919493422, + 21.741616452811382 + ] + }, + "properties": { + "id": "meter-18750", + "maker": "Maker F", + "model": "Model 18750", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.07135168625784, + 22.875504618442875 + ] + }, + "properties": { + "id": "meter-18751", + "maker": "Maker B", + "model": "Model 18751", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.103186824118744, + 22.878104307507083 + ] + }, + "properties": { + "id": "meter-18752", + "maker": "Maker F", + "model": "Model 18752", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.04217211753539, + 19.17152969024716 + ] + }, + "properties": { + "id": "meter-18753", + "maker": "Maker F", + "model": "Model 18753", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.083036048602466, + 29.839402644852434 + ] + }, + "properties": { + "id": "meter-18754", + "maker": "Maker H", + "model": "Model 18754", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.63449415690346, + 21.743169056890615 + ] + }, + "properties": { + "id": "meter-18755", + "maker": "Maker F", + "model": "Model 18755", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.4501985595359, + 17.670153135333862 + ] + }, + "properties": { + "id": "meter-18756", + "maker": "Maker B", + "model": "Model 18756", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.67848088358285, + 20.023240335363578 + ] + }, + "properties": { + "id": "meter-18757", + "maker": "Maker G", + "model": "Model 18757", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.57978649773465, + 27.49109710951651 + ] + }, + "properties": { + "id": "meter-18758", + "maker": "Maker I", + "model": "Model 18758", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.92343495238047, + 21.568491200274174 + ] + }, + "properties": { + "id": "meter-18759", + "maker": "Maker G", + "model": "Model 18759", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.38515566650583, + 28.13344055029653 + ] + }, + "properties": { + "id": "meter-18760", + "maker": "Maker B", + "model": "Model 18760", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.42459660983401, + 31.068491706754948 + ] + }, + "properties": { + "id": "meter-18761", + "maker": "Maker G", + "model": "Model 18761", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.80665854414591, + 26.245973336016434 + ] + }, + "properties": { + "id": "meter-18762", + "maker": "Maker J", + "model": "Model 18762", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.11126895728334, + 23.312269557967614 + ] + }, + "properties": { + "id": "meter-18763", + "maker": "Maker D", + "model": "Model 18763", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.083432362279524, + 22.20735752723061 + ] + }, + "properties": { + "id": "meter-18764", + "maker": "Maker F", + "model": "Model 18764", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.099521142462045, + 19.82899155035545 + ] + }, + "properties": { + "id": "meter-18765", + "maker": "Maker G", + "model": "Model 18765", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.99418700580276, + 19.75069187786991 + ] + }, + "properties": { + "id": "meter-18766", + "maker": "Maker A", + "model": "Model 18766", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.53136887334804, + 18.894999612551633 + ] + }, + "properties": { + "id": "meter-18767", + "maker": "Maker E", + "model": "Model 18767", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.56874629961599, + 21.848330945696667 + ] + }, + "properties": { + "id": "meter-18768", + "maker": "Maker C", + "model": "Model 18768", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.951871747179624, + 20.827242525328188 + ] + }, + "properties": { + "id": "meter-18769", + "maker": "Maker G", + "model": "Model 18769", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.445625563158316, + 22.960528984161506 + ] + }, + "properties": { + "id": "meter-18770", + "maker": "Maker C", + "model": "Model 18770", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.263295256332924, + 26.684928733513 + ] + }, + "properties": { + "id": "meter-18771", + "maker": "Maker I", + "model": "Model 18771", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.46467864358646, + 27.02654292705566 + ] + }, + "properties": { + "id": "meter-18772", + "maker": "Maker B", + "model": "Model 18772", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.7777080036026, + 25.22624739729233 + ] + }, + "properties": { + "id": "meter-18773", + "maker": "Maker B", + "model": "Model 18773", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.18386277020024, + 21.78275103149114 + ] + }, + "properties": { + "id": "meter-18774", + "maker": "Maker F", + "model": "Model 18774", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.25785383726649, + 27.01554237310046 + ] + }, + "properties": { + "id": "meter-18775", + "maker": "Maker E", + "model": "Model 18775", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.65275084328241, + 23.513790360146395 + ] + }, + "properties": { + "id": "meter-18776", + "maker": "Maker B", + "model": "Model 18776", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.75572160920396, + 20.935033442668097 + ] + }, + "properties": { + "id": "meter-18777", + "maker": "Maker I", + "model": "Model 18777", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.70799048188496, + 25.934234066651342 + ] + }, + "properties": { + "id": "meter-18778", + "maker": "Maker I", + "model": "Model 18778", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.366821467738205, + 27.682083939555397 + ] + }, + "properties": { + "id": "meter-18779", + "maker": "Maker I", + "model": "Model 18779", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.65890301529478, + 27.12690707164897 + ] + }, + "properties": { + "id": "meter-18780", + "maker": "Maker I", + "model": "Model 18780", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.05534750815512, + 27.375840079710564 + ] + }, + "properties": { + "id": "meter-18781", + "maker": "Maker F", + "model": "Model 18781", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.62465899584211, + 22.491927194397093 + ] + }, + "properties": { + "id": "meter-18782", + "maker": "Maker B", + "model": "Model 18782", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.86075053726548, + 22.215563634170643 + ] + }, + "properties": { + "id": "meter-18783", + "maker": "Maker C", + "model": "Model 18783", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.98266862120471, + 25.697389950361988 + ] + }, + "properties": { + "id": "meter-18784", + "maker": "Maker A", + "model": "Model 18784", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68672930952377, + 28.74045155787642 + ] + }, + "properties": { + "id": "meter-18785", + "maker": "Maker F", + "model": "Model 18785", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.06292860645395, + 22.00096914471046 + ] + }, + "properties": { + "id": "meter-18786", + "maker": "Maker J", + "model": "Model 18786", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.765574992176056, + 22.012258902064836 + ] + }, + "properties": { + "id": "meter-18787", + "maker": "Maker J", + "model": "Model 18787", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.73801994082507, + 19.004064223273588 + ] + }, + "properties": { + "id": "meter-18788", + "maker": "Maker G", + "model": "Model 18788", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.49384303250686, + 25.65561317035359 + ] + }, + "properties": { + "id": "meter-18789", + "maker": "Maker A", + "model": "Model 18789", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.6099728247696, + 18.403050048688527 + ] + }, + "properties": { + "id": "meter-18790", + "maker": "Maker I", + "model": "Model 18790", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.70501943179602, + 22.84140984965483 + ] + }, + "properties": { + "id": "meter-18791", + "maker": "Maker D", + "model": "Model 18791", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.91597990850927, + 24.0826311385904 + ] + }, + "properties": { + "id": "meter-18792", + "maker": "Maker F", + "model": "Model 18792", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.69403308583624, + 18.525825066091468 + ] + }, + "properties": { + "id": "meter-18793", + "maker": "Maker D", + "model": "Model 18793", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.450731165258375, + 23.97624714931733 + ] + }, + "properties": { + "id": "meter-18794", + "maker": "Maker I", + "model": "Model 18794", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.79876571463149, + 31.758408369985666 + ] + }, + "properties": { + "id": "meter-18795", + "maker": "Maker J", + "model": "Model 18795", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.00431007932635, + 28.198100695877187 + ] + }, + "properties": { + "id": "meter-18796", + "maker": "Maker C", + "model": "Model 18796", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.61350129054826, + 25.733956176933013 + ] + }, + "properties": { + "id": "meter-18797", + "maker": "Maker G", + "model": "Model 18797", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.80682053635521, + 24.018791396764023 + ] + }, + "properties": { + "id": "meter-18798", + "maker": "Maker H", + "model": "Model 18798", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92352897624689, + 23.536487718021153 + ] + }, + "properties": { + "id": "meter-18799", + "maker": "Maker A", + "model": "Model 18799", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.64144551097138, + 25.140207297513633 + ] + }, + "properties": { + "id": "meter-18800", + "maker": "Maker B", + "model": "Model 18800", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.056769244142025, + 19.332646045115368 + ] + }, + "properties": { + "id": "meter-18801", + "maker": "Maker F", + "model": "Model 18801", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.11598615325435, + 21.894726432950435 + ] + }, + "properties": { + "id": "meter-18802", + "maker": "Maker J", + "model": "Model 18802", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.2664325076673, + 29.10352501235453 + ] + }, + "properties": { + "id": "meter-18803", + "maker": "Maker J", + "model": "Model 18803", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.287669802370964, + 27.644469805010083 + ] + }, + "properties": { + "id": "meter-18804", + "maker": "Maker F", + "model": "Model 18804", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.19769006884103, + 20.395145430117154 + ] + }, + "properties": { + "id": "meter-18805", + "maker": "Maker J", + "model": "Model 18805", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.260970953580404, + 26.94534495863905 + ] + }, + "properties": { + "id": "meter-18806", + "maker": "Maker D", + "model": "Model 18806", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.61411316673462, + 28.793019826263226 + ] + }, + "properties": { + "id": "meter-18807", + "maker": "Maker E", + "model": "Model 18807", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.05606260690261, + 29.075971592120965 + ] + }, + "properties": { + "id": "meter-18808", + "maker": "Maker A", + "model": "Model 18808", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.29338192716658, + 28.492509879211497 + ] + }, + "properties": { + "id": "meter-18809", + "maker": "Maker I", + "model": "Model 18809", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.00096044980632, + 22.90260751261244 + ] + }, + "properties": { + "id": "meter-18810", + "maker": "Maker D", + "model": "Model 18810", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.201120888404795, + 25.1889190297605 + ] + }, + "properties": { + "id": "meter-18811", + "maker": "Maker E", + "model": "Model 18811", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.56296293167419, + 25.49426577615271 + ] + }, + "properties": { + "id": "meter-18812", + "maker": "Maker A", + "model": "Model 18812", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.11027086298017, + 22.814391848837737 + ] + }, + "properties": { + "id": "meter-18813", + "maker": "Maker H", + "model": "Model 18813", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.84338181443567, + 22.35753503576397 + ] + }, + "properties": { + "id": "meter-18814", + "maker": "Maker H", + "model": "Model 18814", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.5511144922216, + 19.153696433062866 + ] + }, + "properties": { + "id": "meter-18815", + "maker": "Maker B", + "model": "Model 18815", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.76021611858702, + 28.310417644419164 + ] + }, + "properties": { + "id": "meter-18816", + "maker": "Maker H", + "model": "Model 18816", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.94206992548431, + 26.57416143707396 + ] + }, + "properties": { + "id": "meter-18817", + "maker": "Maker D", + "model": "Model 18817", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.536775580021946, + 29.55809121559327 + ] + }, + "properties": { + "id": "meter-18818", + "maker": "Maker I", + "model": "Model 18818", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.95527325049791, + 26.701053332456567 + ] + }, + "properties": { + "id": "meter-18819", + "maker": "Maker G", + "model": "Model 18819", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.719727143151935, + 26.969902901064483 + ] + }, + "properties": { + "id": "meter-18820", + "maker": "Maker E", + "model": "Model 18820", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.8274379984608, + 22.551028359123787 + ] + }, + "properties": { + "id": "meter-18821", + "maker": "Maker G", + "model": "Model 18821", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.57544413931364, + 27.746423383406082 + ] + }, + "properties": { + "id": "meter-18822", + "maker": "Maker F", + "model": "Model 18822", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.84107539425605, + 17.841523413000985 + ] + }, + "properties": { + "id": "meter-18823", + "maker": "Maker C", + "model": "Model 18823", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.57437693334737, + 18.96628772582281 + ] + }, + "properties": { + "id": "meter-18824", + "maker": "Maker B", + "model": "Model 18824", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.279699622912666, + 24.8138563148064 + ] + }, + "properties": { + "id": "meter-18825", + "maker": "Maker H", + "model": "Model 18825", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.785846288324976, + 29.05375350707595 + ] + }, + "properties": { + "id": "meter-18826", + "maker": "Maker C", + "model": "Model 18826", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.074436318988624, + 19.8470399637117 + ] + }, + "properties": { + "id": "meter-18827", + "maker": "Maker D", + "model": "Model 18827", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.965889030820726, + 27.252873429239937 + ] + }, + "properties": { + "id": "meter-18828", + "maker": "Maker I", + "model": "Model 18828", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23739285308864, + 30.081439423959146 + ] + }, + "properties": { + "id": "meter-18829", + "maker": "Maker B", + "model": "Model 18829", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.60597610335424, + 19.48075162990865 + ] + }, + "properties": { + "id": "meter-18830", + "maker": "Maker F", + "model": "Model 18830", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.82824645248617, + 30.62066184777366 + ] + }, + "properties": { + "id": "meter-18831", + "maker": "Maker G", + "model": "Model 18831", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08285178264858, + 27.78822023108993 + ] + }, + "properties": { + "id": "meter-18832", + "maker": "Maker D", + "model": "Model 18832", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.91941319803869, + 31.077696294753817 + ] + }, + "properties": { + "id": "meter-18833", + "maker": "Maker F", + "model": "Model 18833", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.88984017978137, + 19.940276187315934 + ] + }, + "properties": { + "id": "meter-18834", + "maker": "Maker C", + "model": "Model 18834", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.79926722129975, + 26.59582551776746 + ] + }, + "properties": { + "id": "meter-18835", + "maker": "Maker J", + "model": "Model 18835", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.353924577572414, + 30.91042454441466 + ] + }, + "properties": { + "id": "meter-18836", + "maker": "Maker G", + "model": "Model 18836", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.86247942118434, + 22.024412271781603 + ] + }, + "properties": { + "id": "meter-18837", + "maker": "Maker B", + "model": "Model 18837", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.75614440911272, + 23.604253998345825 + ] + }, + "properties": { + "id": "meter-18838", + "maker": "Maker I", + "model": "Model 18838", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.41247565511303, + 18.942531767942075 + ] + }, + "properties": { + "id": "meter-18839", + "maker": "Maker B", + "model": "Model 18839", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.30050456543054, + 19.176867294748877 + ] + }, + "properties": { + "id": "meter-18840", + "maker": "Maker F", + "model": "Model 18840", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.514136216404545, + 28.676498707842804 + ] + }, + "properties": { + "id": "meter-18841", + "maker": "Maker C", + "model": "Model 18841", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.39833490718999, + 17.661361440580944 + ] + }, + "properties": { + "id": "meter-18842", + "maker": "Maker D", + "model": "Model 18842", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.142344685015615, + 22.01206435254873 + ] + }, + "properties": { + "id": "meter-18843", + "maker": "Maker H", + "model": "Model 18843", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.83170626438201, + 19.127111467603537 + ] + }, + "properties": { + "id": "meter-18844", + "maker": "Maker H", + "model": "Model 18844", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.753707371603056, + 22.446875295415815 + ] + }, + "properties": { + "id": "meter-18845", + "maker": "Maker E", + "model": "Model 18845", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.37753250912616, + 25.62285641087192 + ] + }, + "properties": { + "id": "meter-18846", + "maker": "Maker A", + "model": "Model 18846", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.379066548373444, + 19.54573474411063 + ] + }, + "properties": { + "id": "meter-18847", + "maker": "Maker G", + "model": "Model 18847", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.6562203184795, + 23.08781147998494 + ] + }, + "properties": { + "id": "meter-18848", + "maker": "Maker H", + "model": "Model 18848", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.506116325866074, + 26.312920334661545 + ] + }, + "properties": { + "id": "meter-18849", + "maker": "Maker A", + "model": "Model 18849", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.10156033410403, + 29.01339180383814 + ] + }, + "properties": { + "id": "meter-18850", + "maker": "Maker G", + "model": "Model 18850", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.670904373597615, + 27.717694671730055 + ] + }, + "properties": { + "id": "meter-18851", + "maker": "Maker D", + "model": "Model 18851", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.00976960886426, + 28.761694477402145 + ] + }, + "properties": { + "id": "meter-18852", + "maker": "Maker I", + "model": "Model 18852", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.83711552736889, + 24.31844375785204 + ] + }, + "properties": { + "id": "meter-18853", + "maker": "Maker E", + "model": "Model 18853", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.415589714745366, + 29.945004018878812 + ] + }, + "properties": { + "id": "meter-18854", + "maker": "Maker I", + "model": "Model 18854", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.89692065043471, + 20.372864705416383 + ] + }, + "properties": { + "id": "meter-18855", + "maker": "Maker I", + "model": "Model 18855", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.931633656187955, + 24.84549522136642 + ] + }, + "properties": { + "id": "meter-18856", + "maker": "Maker A", + "model": "Model 18856", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.856428205654616, + 24.895696641406605 + ] + }, + "properties": { + "id": "meter-18857", + "maker": "Maker H", + "model": "Model 18857", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.41530461178368, + 21.446882735842653 + ] + }, + "properties": { + "id": "meter-18858", + "maker": "Maker H", + "model": "Model 18858", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.85138053834827, + 18.6925793495087 + ] + }, + "properties": { + "id": "meter-18859", + "maker": "Maker H", + "model": "Model 18859", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.51908961310977, + 22.38629580226175 + ] + }, + "properties": { + "id": "meter-18860", + "maker": "Maker J", + "model": "Model 18860", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.22614173985731, + 19.569093798293682 + ] + }, + "properties": { + "id": "meter-18861", + "maker": "Maker G", + "model": "Model 18861", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.40660348130464, + 23.645372639879746 + ] + }, + "properties": { + "id": "meter-18862", + "maker": "Maker D", + "model": "Model 18862", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.77967456664511, + 23.779863235966793 + ] + }, + "properties": { + "id": "meter-18863", + "maker": "Maker H", + "model": "Model 18863", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.26338449299511, + 19.305398598535085 + ] + }, + "properties": { + "id": "meter-18864", + "maker": "Maker E", + "model": "Model 18864", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.56858768500016, + 31.002037337066874 + ] + }, + "properties": { + "id": "meter-18865", + "maker": "Maker I", + "model": "Model 18865", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.71862949430718, + 26.115732398290042 + ] + }, + "properties": { + "id": "meter-18866", + "maker": "Maker G", + "model": "Model 18866", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.09246507420556, + 19.059126752193947 + ] + }, + "properties": { + "id": "meter-18867", + "maker": "Maker F", + "model": "Model 18867", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.722451413115174, + 24.748775951193952 + ] + }, + "properties": { + "id": "meter-18868", + "maker": "Maker J", + "model": "Model 18868", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.501396888014206, + 28.85664794274865 + ] + }, + "properties": { + "id": "meter-18869", + "maker": "Maker D", + "model": "Model 18869", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.576027475113605, + 18.95540732255306 + ] + }, + "properties": { + "id": "meter-18870", + "maker": "Maker J", + "model": "Model 18870", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.302442506119135, + 24.730387693792377 + ] + }, + "properties": { + "id": "meter-18871", + "maker": "Maker I", + "model": "Model 18871", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.39305777688123, + 25.880724980699064 + ] + }, + "properties": { + "id": "meter-18872", + "maker": "Maker H", + "model": "Model 18872", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.158193227098494, + 24.066775668185336 + ] + }, + "properties": { + "id": "meter-18873", + "maker": "Maker A", + "model": "Model 18873", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.557367658708635, + 26.960486070031465 + ] + }, + "properties": { + "id": "meter-18874", + "maker": "Maker B", + "model": "Model 18874", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.70194321194429, + 23.968016221372068 + ] + }, + "properties": { + "id": "meter-18875", + "maker": "Maker E", + "model": "Model 18875", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.09295184901707, + 25.55978961264276 + ] + }, + "properties": { + "id": "meter-18876", + "maker": "Maker D", + "model": "Model 18876", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.3494697113739, + 21.754520164541685 + ] + }, + "properties": { + "id": "meter-18877", + "maker": "Maker E", + "model": "Model 18877", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.80983368950558, + 28.19886699675404 + ] + }, + "properties": { + "id": "meter-18878", + "maker": "Maker E", + "model": "Model 18878", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.07238979709746, + 23.407962395752254 + ] + }, + "properties": { + "id": "meter-18879", + "maker": "Maker C", + "model": "Model 18879", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.54217131684317, + 19.65029141564158 + ] + }, + "properties": { + "id": "meter-18880", + "maker": "Maker G", + "model": "Model 18880", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.000815476453944, + 19.50433891225043 + ] + }, + "properties": { + "id": "meter-18881", + "maker": "Maker F", + "model": "Model 18881", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.44228702211757, + 30.618468069056554 + ] + }, + "properties": { + "id": "meter-18882", + "maker": "Maker B", + "model": "Model 18882", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.25403000002902, + 24.51382118231598 + ] + }, + "properties": { + "id": "meter-18883", + "maker": "Maker E", + "model": "Model 18883", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.04633628705383, + 18.944557976976043 + ] + }, + "properties": { + "id": "meter-18884", + "maker": "Maker B", + "model": "Model 18884", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.51260230046343, + 28.871408192484907 + ] + }, + "properties": { + "id": "meter-18885", + "maker": "Maker A", + "model": "Model 18885", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.346794083334885, + 21.691789989199766 + ] + }, + "properties": { + "id": "meter-18886", + "maker": "Maker D", + "model": "Model 18886", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.445231165235946, + 29.883926066943978 + ] + }, + "properties": { + "id": "meter-18887", + "maker": "Maker A", + "model": "Model 18887", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.973940690518944, + 19.371307590672345 + ] + }, + "properties": { + "id": "meter-18888", + "maker": "Maker H", + "model": "Model 18888", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.370151991678036, + 25.423172259575438 + ] + }, + "properties": { + "id": "meter-18889", + "maker": "Maker F", + "model": "Model 18889", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.191453811198315, + 24.05065429020174 + ] + }, + "properties": { + "id": "meter-18890", + "maker": "Maker J", + "model": "Model 18890", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.26311105708352, + 21.032984214721196 + ] + }, + "properties": { + "id": "meter-18891", + "maker": "Maker D", + "model": "Model 18891", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.611545668118914, + 21.110866018295837 + ] + }, + "properties": { + "id": "meter-18892", + "maker": "Maker E", + "model": "Model 18892", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.633763888477866, + 22.133644207902172 + ] + }, + "properties": { + "id": "meter-18893", + "maker": "Maker I", + "model": "Model 18893", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.178585128277504, + 18.90397552391643 + ] + }, + "properties": { + "id": "meter-18894", + "maker": "Maker B", + "model": "Model 18894", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.79262005809626, + 22.327492268434753 + ] + }, + "properties": { + "id": "meter-18895", + "maker": "Maker B", + "model": "Model 18895", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.21536228119527, + 20.94994174985858 + ] + }, + "properties": { + "id": "meter-18896", + "maker": "Maker D", + "model": "Model 18896", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.620574586220826, + 21.24717740847739 + ] + }, + "properties": { + "id": "meter-18897", + "maker": "Maker F", + "model": "Model 18897", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.347081381886596, + 21.29143440249039 + ] + }, + "properties": { + "id": "meter-18898", + "maker": "Maker F", + "model": "Model 18898", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.124183092551576, + 21.17401097156732 + ] + }, + "properties": { + "id": "meter-18899", + "maker": "Maker B", + "model": "Model 18899", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13063684497968, + 20.03015495244719 + ] + }, + "properties": { + "id": "meter-18900", + "maker": "Maker E", + "model": "Model 18900", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.64856928177577, + 22.95977677028016 + ] + }, + "properties": { + "id": "meter-18901", + "maker": "Maker I", + "model": "Model 18901", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.5173926796855, + 26.23597944451808 + ] + }, + "properties": { + "id": "meter-18902", + "maker": "Maker H", + "model": "Model 18902", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.64666666844434, + 28.118278841391078 + ] + }, + "properties": { + "id": "meter-18903", + "maker": "Maker C", + "model": "Model 18903", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.41085551638412, + 23.694719119722635 + ] + }, + "properties": { + "id": "meter-18904", + "maker": "Maker H", + "model": "Model 18904", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.02233139306095, + 25.690020829322478 + ] + }, + "properties": { + "id": "meter-18905", + "maker": "Maker H", + "model": "Model 18905", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.9622011869113, + 22.259479825288068 + ] + }, + "properties": { + "id": "meter-18906", + "maker": "Maker C", + "model": "Model 18906", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.87677531404643, + 21.49178857166516 + ] + }, + "properties": { + "id": "meter-18907", + "maker": "Maker D", + "model": "Model 18907", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.36822985481602, + 20.18313442335133 + ] + }, + "properties": { + "id": "meter-18908", + "maker": "Maker B", + "model": "Model 18908", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.67413414324834, + 24.42042122764522 + ] + }, + "properties": { + "id": "meter-18909", + "maker": "Maker E", + "model": "Model 18909", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.04715108950219, + 23.04993933873839 + ] + }, + "properties": { + "id": "meter-18910", + "maker": "Maker C", + "model": "Model 18910", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.59917381448346, + 20.52654569468109 + ] + }, + "properties": { + "id": "meter-18911", + "maker": "Maker C", + "model": "Model 18911", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49578855374404, + 17.42080163957696 + ] + }, + "properties": { + "id": "meter-18912", + "maker": "Maker I", + "model": "Model 18912", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.252454588297525, + 25.2871431097983 + ] + }, + "properties": { + "id": "meter-18913", + "maker": "Maker D", + "model": "Model 18913", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.05639059437931, + 24.668336338927325 + ] + }, + "properties": { + "id": "meter-18914", + "maker": "Maker D", + "model": "Model 18914", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.93264936178843, + 29.20251528666932 + ] + }, + "properties": { + "id": "meter-18915", + "maker": "Maker A", + "model": "Model 18915", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.427725934175385, + 21.04910288602678 + ] + }, + "properties": { + "id": "meter-18916", + "maker": "Maker A", + "model": "Model 18916", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.52275463035816, + 20.10039990747613 + ] + }, + "properties": { + "id": "meter-18917", + "maker": "Maker G", + "model": "Model 18917", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.188564003821966, + 24.287771323701804 + ] + }, + "properties": { + "id": "meter-18918", + "maker": "Maker C", + "model": "Model 18918", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.321868955031626, + 25.706072714413366 + ] + }, + "properties": { + "id": "meter-18919", + "maker": "Maker C", + "model": "Model 18919", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.55855420488494, + 30.0590853677295 + ] + }, + "properties": { + "id": "meter-18920", + "maker": "Maker G", + "model": "Model 18920", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.48699068737366, + 20.854972967355454 + ] + }, + "properties": { + "id": "meter-18921", + "maker": "Maker E", + "model": "Model 18921", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.90067175546436, + 22.052154190795093 + ] + }, + "properties": { + "id": "meter-18922", + "maker": "Maker B", + "model": "Model 18922", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.10736755901213, + 25.295941885815296 + ] + }, + "properties": { + "id": "meter-18923", + "maker": "Maker J", + "model": "Model 18923", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.39036047889019, + 25.927713707232357 + ] + }, + "properties": { + "id": "meter-18924", + "maker": "Maker F", + "model": "Model 18924", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.00309705719463, + 21.61570470623169 + ] + }, + "properties": { + "id": "meter-18925", + "maker": "Maker F", + "model": "Model 18925", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.30478460912157, + 21.816256779012193 + ] + }, + "properties": { + "id": "meter-18926", + "maker": "Maker B", + "model": "Model 18926", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.2028510937337, + 22.226104720945195 + ] + }, + "properties": { + "id": "meter-18927", + "maker": "Maker C", + "model": "Model 18927", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.854557328201736, + 23.965411426045144 + ] + }, + "properties": { + "id": "meter-18928", + "maker": "Maker I", + "model": "Model 18928", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.2920298340711, + 22.245977535021485 + ] + }, + "properties": { + "id": "meter-18929", + "maker": "Maker G", + "model": "Model 18929", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.71758448133473, + 17.36637572557759 + ] + }, + "properties": { + "id": "meter-18930", + "maker": "Maker E", + "model": "Model 18930", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.980206882349144, + 27.56736521404731 + ] + }, + "properties": { + "id": "meter-18931", + "maker": "Maker J", + "model": "Model 18931", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.137564396819144, + 31.437545954740067 + ] + }, + "properties": { + "id": "meter-18932", + "maker": "Maker H", + "model": "Model 18932", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.66712234199604, + 22.94668801647183 + ] + }, + "properties": { + "id": "meter-18933", + "maker": "Maker F", + "model": "Model 18933", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.59977306909862, + 25.249551420339763 + ] + }, + "properties": { + "id": "meter-18934", + "maker": "Maker H", + "model": "Model 18934", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.96460978284092, + 20.93145993137609 + ] + }, + "properties": { + "id": "meter-18935", + "maker": "Maker I", + "model": "Model 18935", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.0630483495499, + 22.5036087314923 + ] + }, + "properties": { + "id": "meter-18936", + "maker": "Maker B", + "model": "Model 18936", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.44567797128737, + 23.77175172491238 + ] + }, + "properties": { + "id": "meter-18937", + "maker": "Maker E", + "model": "Model 18937", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.67825861416769, + 18.610531751978698 + ] + }, + "properties": { + "id": "meter-18938", + "maker": "Maker G", + "model": "Model 18938", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.644057296572605, + 29.17064042023336 + ] + }, + "properties": { + "id": "meter-18939", + "maker": "Maker I", + "model": "Model 18939", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.818921161343916, + 27.66504945849092 + ] + }, + "properties": { + "id": "meter-18940", + "maker": "Maker C", + "model": "Model 18940", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.87070242378813, + 18.77791143306862 + ] + }, + "properties": { + "id": "meter-18941", + "maker": "Maker H", + "model": "Model 18941", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.464265090322186, + 18.161045214443046 + ] + }, + "properties": { + "id": "meter-18942", + "maker": "Maker I", + "model": "Model 18942", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.0130704880703, + 20.395963140165556 + ] + }, + "properties": { + "id": "meter-18943", + "maker": "Maker A", + "model": "Model 18943", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.44449457985059, + 26.494658947574393 + ] + }, + "properties": { + "id": "meter-18944", + "maker": "Maker C", + "model": "Model 18944", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.10518533986223, + 27.337309800439392 + ] + }, + "properties": { + "id": "meter-18945", + "maker": "Maker H", + "model": "Model 18945", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.844228011841174, + 21.134669488320352 + ] + }, + "properties": { + "id": "meter-18946", + "maker": "Maker H", + "model": "Model 18946", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.50470568739622, + 29.760595124356783 + ] + }, + "properties": { + "id": "meter-18947", + "maker": "Maker G", + "model": "Model 18947", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.686044377300796, + 22.24789361055243 + ] + }, + "properties": { + "id": "meter-18948", + "maker": "Maker G", + "model": "Model 18948", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.28404855504894, + 23.17956944697255 + ] + }, + "properties": { + "id": "meter-18949", + "maker": "Maker F", + "model": "Model 18949", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.20907416009301, + 24.356851006496775 + ] + }, + "properties": { + "id": "meter-18950", + "maker": "Maker F", + "model": "Model 18950", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.56294540472266, + 20.050564254345616 + ] + }, + "properties": { + "id": "meter-18951", + "maker": "Maker F", + "model": "Model 18951", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.32298148733581, + 27.386060279199675 + ] + }, + "properties": { + "id": "meter-18952", + "maker": "Maker H", + "model": "Model 18952", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.731367282843195, + 25.838799793438714 + ] + }, + "properties": { + "id": "meter-18953", + "maker": "Maker C", + "model": "Model 18953", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.216604002529536, + 20.327711360797274 + ] + }, + "properties": { + "id": "meter-18954", + "maker": "Maker I", + "model": "Model 18954", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.74793965262842, + 18.40132877727732 + ] + }, + "properties": { + "id": "meter-18955", + "maker": "Maker A", + "model": "Model 18955", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.319137103537926, + 27.900833342936576 + ] + }, + "properties": { + "id": "meter-18956", + "maker": "Maker H", + "model": "Model 18956", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.91391760761898, + 23.334928725529622 + ] + }, + "properties": { + "id": "meter-18957", + "maker": "Maker A", + "model": "Model 18957", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.810176620831086, + 25.584833629682024 + ] + }, + "properties": { + "id": "meter-18958", + "maker": "Maker G", + "model": "Model 18958", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.566301996530136, + 23.42802057925966 + ] + }, + "properties": { + "id": "meter-18959", + "maker": "Maker F", + "model": "Model 18959", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.64882960102861, + 20.45259028721139 + ] + }, + "properties": { + "id": "meter-18960", + "maker": "Maker E", + "model": "Model 18960", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.89882978400769, + 27.7641226623521 + ] + }, + "properties": { + "id": "meter-18961", + "maker": "Maker A", + "model": "Model 18961", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69993408106405, + 29.866225106404166 + ] + }, + "properties": { + "id": "meter-18962", + "maker": "Maker D", + "model": "Model 18962", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.868333146287206, + 23.068963690742116 + ] + }, + "properties": { + "id": "meter-18963", + "maker": "Maker H", + "model": "Model 18963", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.459202663640355, + 21.150887539963232 + ] + }, + "properties": { + "id": "meter-18964", + "maker": "Maker F", + "model": "Model 18964", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.04851468477669, + 24.22650699852787 + ] + }, + "properties": { + "id": "meter-18965", + "maker": "Maker C", + "model": "Model 18965", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.32975714114345, + 25.610730912807718 + ] + }, + "properties": { + "id": "meter-18966", + "maker": "Maker G", + "model": "Model 18966", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.950201524420464, + 20.40403008003282 + ] + }, + "properties": { + "id": "meter-18967", + "maker": "Maker J", + "model": "Model 18967", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.6662492707666, + 23.9560300012118 + ] + }, + "properties": { + "id": "meter-18968", + "maker": "Maker I", + "model": "Model 18968", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.0774300049803, + 21.926744740549196 + ] + }, + "properties": { + "id": "meter-18969", + "maker": "Maker D", + "model": "Model 18969", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.819851770268954, + 19.173951380377222 + ] + }, + "properties": { + "id": "meter-18970", + "maker": "Maker A", + "model": "Model 18970", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.338752973774646, + 27.855911117587308 + ] + }, + "properties": { + "id": "meter-18971", + "maker": "Maker J", + "model": "Model 18971", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.05534114418482, + 21.93390878488526 + ] + }, + "properties": { + "id": "meter-18972", + "maker": "Maker D", + "model": "Model 18972", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.13025997139507, + 20.312078719289982 + ] + }, + "properties": { + "id": "meter-18973", + "maker": "Maker F", + "model": "Model 18973", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.84119187845335, + 25.892818211712026 + ] + }, + "properties": { + "id": "meter-18974", + "maker": "Maker A", + "model": "Model 18974", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.019265109611226, + 24.165555481108655 + ] + }, + "properties": { + "id": "meter-18975", + "maker": "Maker E", + "model": "Model 18975", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.59916876375371, + 24.571908974907668 + ] + }, + "properties": { + "id": "meter-18976", + "maker": "Maker F", + "model": "Model 18976", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.30388757712169, + 28.28495346224848 + ] + }, + "properties": { + "id": "meter-18977", + "maker": "Maker E", + "model": "Model 18977", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.60060847131612, + 26.233557139322038 + ] + }, + "properties": { + "id": "meter-18978", + "maker": "Maker A", + "model": "Model 18978", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.803642064589305, + 19.011296780133932 + ] + }, + "properties": { + "id": "meter-18979", + "maker": "Maker H", + "model": "Model 18979", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.542217915442556, + 24.679188653428593 + ] + }, + "properties": { + "id": "meter-18980", + "maker": "Maker A", + "model": "Model 18980", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.30955570048877, + 23.158345286954397 + ] + }, + "properties": { + "id": "meter-18981", + "maker": "Maker E", + "model": "Model 18981", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.797652281183176, + 23.485083494396623 + ] + }, + "properties": { + "id": "meter-18982", + "maker": "Maker J", + "model": "Model 18982", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.31708647977804, + 20.31517750496797 + ] + }, + "properties": { + "id": "meter-18983", + "maker": "Maker J", + "model": "Model 18983", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.34308108437486, + 22.808375652376515 + ] + }, + "properties": { + "id": "meter-18984", + "maker": "Maker B", + "model": "Model 18984", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.53335512669266, + 25.962208279809282 + ] + }, + "properties": { + "id": "meter-18985", + "maker": "Maker I", + "model": "Model 18985", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.21284003530704, + 28.224646148092752 + ] + }, + "properties": { + "id": "meter-18986", + "maker": "Maker F", + "model": "Model 18986", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.53915361787734, + 19.379192821667235 + ] + }, + "properties": { + "id": "meter-18987", + "maker": "Maker D", + "model": "Model 18987", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.20796560934108, + 22.77679749983399 + ] + }, + "properties": { + "id": "meter-18988", + "maker": "Maker E", + "model": "Model 18988", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.478472307940486, + 26.811848900604055 + ] + }, + "properties": { + "id": "meter-18989", + "maker": "Maker J", + "model": "Model 18989", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.97208849592134, + 20.664145377769753 + ] + }, + "properties": { + "id": "meter-18990", + "maker": "Maker H", + "model": "Model 18990", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.44420707819704, + 27.45316974598337 + ] + }, + "properties": { + "id": "meter-18991", + "maker": "Maker E", + "model": "Model 18991", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.22865699610785, + 23.309722815549993 + ] + }, + "properties": { + "id": "meter-18992", + "maker": "Maker C", + "model": "Model 18992", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.95984688372124, + 26.357072049299354 + ] + }, + "properties": { + "id": "meter-18993", + "maker": "Maker C", + "model": "Model 18993", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.26981229525022, + 24.866962247755563 + ] + }, + "properties": { + "id": "meter-18994", + "maker": "Maker I", + "model": "Model 18994", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.51874555628404, + 26.793459935864163 + ] + }, + "properties": { + "id": "meter-18995", + "maker": "Maker B", + "model": "Model 18995", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.88670069270643, + 21.586990319701236 + ] + }, + "properties": { + "id": "meter-18996", + "maker": "Maker B", + "model": "Model 18996", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.217216515254286, + 22.808318599270663 + ] + }, + "properties": { + "id": "meter-18997", + "maker": "Maker I", + "model": "Model 18997", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.03667925745691, + 25.71512511750648 + ] + }, + "properties": { + "id": "meter-18998", + "maker": "Maker I", + "model": "Model 18998", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.10625370010973, + 26.64496520256145 + ] + }, + "properties": { + "id": "meter-18999", + "maker": "Maker I", + "model": "Model 18999", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.412263565205336, + 27.37233730216478 + ] + }, + "properties": { + "id": "meter-19000", + "maker": "Maker J", + "model": "Model 19000", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.14737061495133, + 21.02631203964097 + ] + }, + "properties": { + "id": "meter-19001", + "maker": "Maker G", + "model": "Model 19001", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.23512878481608, + 25.52796732152115 + ] + }, + "properties": { + "id": "meter-19002", + "maker": "Maker B", + "model": "Model 19002", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.193058464909825, + 22.486033845909816 + ] + }, + "properties": { + "id": "meter-19003", + "maker": "Maker J", + "model": "Model 19003", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.479103939402506, + 26.404979479424238 + ] + }, + "properties": { + "id": "meter-19004", + "maker": "Maker H", + "model": "Model 19004", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.88201334020305, + 21.34877194533918 + ] + }, + "properties": { + "id": "meter-19005", + "maker": "Maker I", + "model": "Model 19005", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.538633000479045, + 22.250077332696318 + ] + }, + "properties": { + "id": "meter-19006", + "maker": "Maker I", + "model": "Model 19006", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.099357794067345, + 20.161042803841617 + ] + }, + "properties": { + "id": "meter-19007", + "maker": "Maker C", + "model": "Model 19007", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.284216445386576, + 20.66933671843542 + ] + }, + "properties": { + "id": "meter-19008", + "maker": "Maker A", + "model": "Model 19008", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.19980884307416, + 26.624273346684117 + ] + }, + "properties": { + "id": "meter-19009", + "maker": "Maker C", + "model": "Model 19009", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.490536108525454, + 21.31800232520454 + ] + }, + "properties": { + "id": "meter-19010", + "maker": "Maker E", + "model": "Model 19010", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.10743854232289, + 24.174860487753534 + ] + }, + "properties": { + "id": "meter-19011", + "maker": "Maker F", + "model": "Model 19011", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.056821664391414, + 18.2601176670231 + ] + }, + "properties": { + "id": "meter-19012", + "maker": "Maker J", + "model": "Model 19012", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.34109350232191, + 28.997362327252816 + ] + }, + "properties": { + "id": "meter-19013", + "maker": "Maker I", + "model": "Model 19013", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.90525558838673, + 20.900602078048898 + ] + }, + "properties": { + "id": "meter-19014", + "maker": "Maker I", + "model": "Model 19014", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.575132422912766, + 23.42752272316216 + ] + }, + "properties": { + "id": "meter-19015", + "maker": "Maker I", + "model": "Model 19015", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.72712611723292, + 24.548991700021368 + ] + }, + "properties": { + "id": "meter-19016", + "maker": "Maker H", + "model": "Model 19016", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.862924183315016, + 19.76354173805272 + ] + }, + "properties": { + "id": "meter-19017", + "maker": "Maker F", + "model": "Model 19017", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.158801716000504, + 25.47787288443306 + ] + }, + "properties": { + "id": "meter-19018", + "maker": "Maker J", + "model": "Model 19018", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.665462502662514, + 24.28633549354607 + ] + }, + "properties": { + "id": "meter-19019", + "maker": "Maker G", + "model": "Model 19019", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.33062359621984, + 28.172378979737523 + ] + }, + "properties": { + "id": "meter-19020", + "maker": "Maker A", + "model": "Model 19020", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.430779660510524, + 23.931267171599693 + ] + }, + "properties": { + "id": "meter-19021", + "maker": "Maker E", + "model": "Model 19021", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.18957601494201, + 20.701904460087782 + ] + }, + "properties": { + "id": "meter-19022", + "maker": "Maker H", + "model": "Model 19022", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.22848175914449, + 21.94992471307769 + ] + }, + "properties": { + "id": "meter-19023", + "maker": "Maker H", + "model": "Model 19023", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.46667069694996, + 28.723040327546855 + ] + }, + "properties": { + "id": "meter-19024", + "maker": "Maker F", + "model": "Model 19024", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.533571039234694, + 27.606830280502834 + ] + }, + "properties": { + "id": "meter-19025", + "maker": "Maker F", + "model": "Model 19025", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.89516039523451, + 20.56765886795944 + ] + }, + "properties": { + "id": "meter-19026", + "maker": "Maker H", + "model": "Model 19026", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.04311227833013, + 26.31852004903651 + ] + }, + "properties": { + "id": "meter-19027", + "maker": "Maker F", + "model": "Model 19027", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.52222888305742, + 26.326326035585698 + ] + }, + "properties": { + "id": "meter-19028", + "maker": "Maker D", + "model": "Model 19028", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.82933215397773, + 22.010965296558272 + ] + }, + "properties": { + "id": "meter-19029", + "maker": "Maker A", + "model": "Model 19029", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.081059744295544, + 21.201231332528053 + ] + }, + "properties": { + "id": "meter-19030", + "maker": "Maker A", + "model": "Model 19030", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.38384496956933, + 22.984242250075212 + ] + }, + "properties": { + "id": "meter-19031", + "maker": "Maker H", + "model": "Model 19031", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.31300954340595, + 31.55468143433209 + ] + }, + "properties": { + "id": "meter-19032", + "maker": "Maker B", + "model": "Model 19032", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.825127831470404, + 19.697243010433684 + ] + }, + "properties": { + "id": "meter-19033", + "maker": "Maker I", + "model": "Model 19033", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.81571018573993, + 29.925875719856336 + ] + }, + "properties": { + "id": "meter-19034", + "maker": "Maker H", + "model": "Model 19034", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.753847514910404, + 28.13771924729815 + ] + }, + "properties": { + "id": "meter-19035", + "maker": "Maker F", + "model": "Model 19035", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.69286550513029, + 23.616202535429103 + ] + }, + "properties": { + "id": "meter-19036", + "maker": "Maker C", + "model": "Model 19036", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.083061954070416, + 28.041506678951805 + ] + }, + "properties": { + "id": "meter-19037", + "maker": "Maker G", + "model": "Model 19037", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.42157146450814, + 26.983742280386828 + ] + }, + "properties": { + "id": "meter-19038", + "maker": "Maker G", + "model": "Model 19038", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.03936185336663, + 18.151221967705116 + ] + }, + "properties": { + "id": "meter-19039", + "maker": "Maker C", + "model": "Model 19039", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.92330074058684, + 23.07968489237841 + ] + }, + "properties": { + "id": "meter-19040", + "maker": "Maker G", + "model": "Model 19040", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.416367078246196, + 20.654964191913873 + ] + }, + "properties": { + "id": "meter-19041", + "maker": "Maker C", + "model": "Model 19041", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.262751197159766, + 21.03358507041269 + ] + }, + "properties": { + "id": "meter-19042", + "maker": "Maker D", + "model": "Model 19042", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.87958098182882, + 23.62403734847838 + ] + }, + "properties": { + "id": "meter-19043", + "maker": "Maker F", + "model": "Model 19043", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.14923982092613, + 26.147438337691447 + ] + }, + "properties": { + "id": "meter-19044", + "maker": "Maker C", + "model": "Model 19044", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.608711017361806, + 21.25784397344803 + ] + }, + "properties": { + "id": "meter-19045", + "maker": "Maker D", + "model": "Model 19045", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.366075466080126, + 26.98331204071812 + ] + }, + "properties": { + "id": "meter-19046", + "maker": "Maker B", + "model": "Model 19046", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.48413093597452, + 24.877693879039345 + ] + }, + "properties": { + "id": "meter-19047", + "maker": "Maker D", + "model": "Model 19047", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.10521085338742, + 21.854737922341236 + ] + }, + "properties": { + "id": "meter-19048", + "maker": "Maker B", + "model": "Model 19048", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.34325267727274, + 24.658867462873907 + ] + }, + "properties": { + "id": "meter-19049", + "maker": "Maker F", + "model": "Model 19049", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.03512160857659, + 21.9566024506205 + ] + }, + "properties": { + "id": "meter-19050", + "maker": "Maker B", + "model": "Model 19050", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.22407552905867, + 31.099505990900987 + ] + }, + "properties": { + "id": "meter-19051", + "maker": "Maker C", + "model": "Model 19051", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.42338059031755, + 18.451845547737342 + ] + }, + "properties": { + "id": "meter-19052", + "maker": "Maker A", + "model": "Model 19052", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.15540604748253, + 30.70073966114541 + ] + }, + "properties": { + "id": "meter-19053", + "maker": "Maker H", + "model": "Model 19053", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.99854023590948, + 22.37415398710853 + ] + }, + "properties": { + "id": "meter-19054", + "maker": "Maker I", + "model": "Model 19054", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.99237948529214, + 22.73576922000867 + ] + }, + "properties": { + "id": "meter-19055", + "maker": "Maker H", + "model": "Model 19055", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.090282367221334, + 27.217705311349846 + ] + }, + "properties": { + "id": "meter-19056", + "maker": "Maker I", + "model": "Model 19056", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.90890804881338, + 18.959490338906168 + ] + }, + "properties": { + "id": "meter-19057", + "maker": "Maker G", + "model": "Model 19057", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.059142177294596, + 19.60648490357841 + ] + }, + "properties": { + "id": "meter-19058", + "maker": "Maker F", + "model": "Model 19058", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.18573258038281, + 24.699208394114834 + ] + }, + "properties": { + "id": "meter-19059", + "maker": "Maker J", + "model": "Model 19059", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.72377642998119, + 24.090381046152793 + ] + }, + "properties": { + "id": "meter-19060", + "maker": "Maker G", + "model": "Model 19060", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.48567066073027, + 18.217010946624832 + ] + }, + "properties": { + "id": "meter-19061", + "maker": "Maker A", + "model": "Model 19061", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.07151732904059, + 22.541261793917045 + ] + }, + "properties": { + "id": "meter-19062", + "maker": "Maker D", + "model": "Model 19062", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.768078502421645, + 23.703811950688078 + ] + }, + "properties": { + "id": "meter-19063", + "maker": "Maker D", + "model": "Model 19063", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.608724166257865, + 26.15608105344854 + ] + }, + "properties": { + "id": "meter-19064", + "maker": "Maker I", + "model": "Model 19064", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.63564564779271, + 27.151767878446528 + ] + }, + "properties": { + "id": "meter-19065", + "maker": "Maker I", + "model": "Model 19065", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.99386284923487, + 25.115077839104366 + ] + }, + "properties": { + "id": "meter-19066", + "maker": "Maker E", + "model": "Model 19066", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.774967290430254, + 21.41504050235091 + ] + }, + "properties": { + "id": "meter-19067", + "maker": "Maker B", + "model": "Model 19067", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.94449004707529, + 20.338131734141655 + ] + }, + "properties": { + "id": "meter-19068", + "maker": "Maker B", + "model": "Model 19068", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.498223069112015, + 20.128319220454657 + ] + }, + "properties": { + "id": "meter-19069", + "maker": "Maker I", + "model": "Model 19069", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.29853660238333, + 24.121752710939553 + ] + }, + "properties": { + "id": "meter-19070", + "maker": "Maker J", + "model": "Model 19070", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.88377933238938, + 28.200491608944485 + ] + }, + "properties": { + "id": "meter-19071", + "maker": "Maker F", + "model": "Model 19071", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.01373560909502, + 28.176392241156034 + ] + }, + "properties": { + "id": "meter-19072", + "maker": "Maker J", + "model": "Model 19072", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.16199606110301, + 29.196082329869817 + ] + }, + "properties": { + "id": "meter-19073", + "maker": "Maker B", + "model": "Model 19073", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.13720469860125, + 27.77262533942734 + ] + }, + "properties": { + "id": "meter-19074", + "maker": "Maker I", + "model": "Model 19074", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.300644879307335, + 18.721745036803135 + ] + }, + "properties": { + "id": "meter-19075", + "maker": "Maker C", + "model": "Model 19075", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.75840903721886, + 22.41261241236831 + ] + }, + "properties": { + "id": "meter-19076", + "maker": "Maker F", + "model": "Model 19076", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.533152895542926, + 24.544044782304272 + ] + }, + "properties": { + "id": "meter-19077", + "maker": "Maker C", + "model": "Model 19077", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.715568781188296, + 19.029069646654538 + ] + }, + "properties": { + "id": "meter-19078", + "maker": "Maker F", + "model": "Model 19078", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.304987732372766, + 20.55067985878955 + ] + }, + "properties": { + "id": "meter-19079", + "maker": "Maker B", + "model": "Model 19079", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.38281232040795, + 21.595730353801486 + ] + }, + "properties": { + "id": "meter-19080", + "maker": "Maker H", + "model": "Model 19080", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.984534843553554, + 28.897228327467428 + ] + }, + "properties": { + "id": "meter-19081", + "maker": "Maker B", + "model": "Model 19081", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.7343681967028, + 25.9394947954898 + ] + }, + "properties": { + "id": "meter-19082", + "maker": "Maker C", + "model": "Model 19082", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.36518390688128, + 21.09651596893087 + ] + }, + "properties": { + "id": "meter-19083", + "maker": "Maker H", + "model": "Model 19083", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.64113438978388, + 25.025691660099824 + ] + }, + "properties": { + "id": "meter-19084", + "maker": "Maker G", + "model": "Model 19084", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.54263060940923, + 24.887139822105603 + ] + }, + "properties": { + "id": "meter-19085", + "maker": "Maker C", + "model": "Model 19085", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.586857275244355, + 23.908558931852458 + ] + }, + "properties": { + "id": "meter-19086", + "maker": "Maker D", + "model": "Model 19086", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.5667708173368, + 26.426511623249727 + ] + }, + "properties": { + "id": "meter-19087", + "maker": "Maker D", + "model": "Model 19087", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.911970026470364, + 29.006248156729733 + ] + }, + "properties": { + "id": "meter-19088", + "maker": "Maker G", + "model": "Model 19088", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.1616786243947, + 20.867910981140714 + ] + }, + "properties": { + "id": "meter-19089", + "maker": "Maker D", + "model": "Model 19089", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.465257219560456, + 26.87894699111427 + ] + }, + "properties": { + "id": "meter-19090", + "maker": "Maker I", + "model": "Model 19090", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.971678167948056, + 22.14859722993274 + ] + }, + "properties": { + "id": "meter-19091", + "maker": "Maker G", + "model": "Model 19091", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.78811910919205, + 19.72568446545788 + ] + }, + "properties": { + "id": "meter-19092", + "maker": "Maker F", + "model": "Model 19092", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.012532581319135, + 25.672835708000385 + ] + }, + "properties": { + "id": "meter-19093", + "maker": "Maker A", + "model": "Model 19093", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.85044544848975, + 24.73516069499086 + ] + }, + "properties": { + "id": "meter-19094", + "maker": "Maker E", + "model": "Model 19094", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.88047042975015, + 24.812496751405753 + ] + }, + "properties": { + "id": "meter-19095", + "maker": "Maker C", + "model": "Model 19095", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.98561115927093, + 24.381855873097493 + ] + }, + "properties": { + "id": "meter-19096", + "maker": "Maker B", + "model": "Model 19096", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.85909448888852, + 24.341469763266176 + ] + }, + "properties": { + "id": "meter-19097", + "maker": "Maker I", + "model": "Model 19097", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.69516163584361, + 20.477211820346483 + ] + }, + "properties": { + "id": "meter-19098", + "maker": "Maker B", + "model": "Model 19098", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.871451853953076, + 23.49691649369945 + ] + }, + "properties": { + "id": "meter-19099", + "maker": "Maker E", + "model": "Model 19099", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.15656893121871, + 21.237919750395577 + ] + }, + "properties": { + "id": "meter-19100", + "maker": "Maker J", + "model": "Model 19100", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.64503303877349, + 21.57018340683304 + ] + }, + "properties": { + "id": "meter-19101", + "maker": "Maker G", + "model": "Model 19101", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.10964956668114, + 26.852945224522514 + ] + }, + "properties": { + "id": "meter-19102", + "maker": "Maker C", + "model": "Model 19102", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.27988755214263, + 28.669833224253818 + ] + }, + "properties": { + "id": "meter-19103", + "maker": "Maker D", + "model": "Model 19103", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.934734440837886, + 29.21552108606184 + ] + }, + "properties": { + "id": "meter-19104", + "maker": "Maker J", + "model": "Model 19104", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.02285552245723, + 25.755057593974726 + ] + }, + "properties": { + "id": "meter-19105", + "maker": "Maker D", + "model": "Model 19105", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.77112487995602, + 20.638038178896124 + ] + }, + "properties": { + "id": "meter-19106", + "maker": "Maker F", + "model": "Model 19106", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.58649542244764, + 28.92991460169271 + ] + }, + "properties": { + "id": "meter-19107", + "maker": "Maker B", + "model": "Model 19107", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.62421873124202, + 18.386959933301714 + ] + }, + "properties": { + "id": "meter-19108", + "maker": "Maker A", + "model": "Model 19108", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.6554283512304, + 22.03458630615085 + ] + }, + "properties": { + "id": "meter-19109", + "maker": "Maker C", + "model": "Model 19109", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.69415165491837, + 23.146581839804547 + ] + }, + "properties": { + "id": "meter-19110", + "maker": "Maker H", + "model": "Model 19110", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.53573864264614, + 26.918729185425512 + ] + }, + "properties": { + "id": "meter-19111", + "maker": "Maker F", + "model": "Model 19111", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.48433149082733, + 21.70146846184032 + ] + }, + "properties": { + "id": "meter-19112", + "maker": "Maker G", + "model": "Model 19112", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.99656823220906, + 24.72818213057785 + ] + }, + "properties": { + "id": "meter-19113", + "maker": "Maker C", + "model": "Model 19113", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.50838055681142, + 23.161204074817164 + ] + }, + "properties": { + "id": "meter-19114", + "maker": "Maker C", + "model": "Model 19114", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.42885743438416, + 22.478172093270516 + ] + }, + "properties": { + "id": "meter-19115", + "maker": "Maker I", + "model": "Model 19115", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.24023446224511, + 26.80306878681714 + ] + }, + "properties": { + "id": "meter-19116", + "maker": "Maker D", + "model": "Model 19116", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.223287890688276, + 30.371228013829427 + ] + }, + "properties": { + "id": "meter-19117", + "maker": "Maker A", + "model": "Model 19117", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03717743183596, + 28.563619328736873 + ] + }, + "properties": { + "id": "meter-19118", + "maker": "Maker B", + "model": "Model 19118", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.40592441111082, + 26.3936596409059 + ] + }, + "properties": { + "id": "meter-19119", + "maker": "Maker J", + "model": "Model 19119", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.27869409467055, + 19.173546168495562 + ] + }, + "properties": { + "id": "meter-19120", + "maker": "Maker B", + "model": "Model 19120", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.96675161341929, + 21.86765057448566 + ] + }, + "properties": { + "id": "meter-19121", + "maker": "Maker H", + "model": "Model 19121", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.12450248615057, + 27.523990286563468 + ] + }, + "properties": { + "id": "meter-19122", + "maker": "Maker G", + "model": "Model 19122", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.857956560605764, + 19.67399409934584 + ] + }, + "properties": { + "id": "meter-19123", + "maker": "Maker B", + "model": "Model 19123", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.84194714320316, + 20.87453635794058 + ] + }, + "properties": { + "id": "meter-19124", + "maker": "Maker E", + "model": "Model 19124", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.97433551616098, + 26.075217985528596 + ] + }, + "properties": { + "id": "meter-19125", + "maker": "Maker E", + "model": "Model 19125", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.47856059292339, + 24.34424101479522 + ] + }, + "properties": { + "id": "meter-19126", + "maker": "Maker B", + "model": "Model 19126", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.72310218200793, + 25.207051322329797 + ] + }, + "properties": { + "id": "meter-19127", + "maker": "Maker I", + "model": "Model 19127", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.69141144714777, + 27.47742778260759 + ] + }, + "properties": { + "id": "meter-19128", + "maker": "Maker H", + "model": "Model 19128", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.86209941088281, + 26.05120036582523 + ] + }, + "properties": { + "id": "meter-19129", + "maker": "Maker F", + "model": "Model 19129", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.441623797786875, + 29.111917676962268 + ] + }, + "properties": { + "id": "meter-19130", + "maker": "Maker D", + "model": "Model 19130", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.84233154359502, + 24.0619017782168 + ] + }, + "properties": { + "id": "meter-19131", + "maker": "Maker J", + "model": "Model 19131", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.000595441478666, + 21.2308106474271 + ] + }, + "properties": { + "id": "meter-19132", + "maker": "Maker D", + "model": "Model 19132", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.19451850808707, + 24.45895567180377 + ] + }, + "properties": { + "id": "meter-19133", + "maker": "Maker F", + "model": "Model 19133", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.90362152630561, + 29.05843602120054 + ] + }, + "properties": { + "id": "meter-19134", + "maker": "Maker D", + "model": "Model 19134", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.72536191016761, + 28.564894888619484 + ] + }, + "properties": { + "id": "meter-19135", + "maker": "Maker A", + "model": "Model 19135", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.01301237120156, + 22.521107802510606 + ] + }, + "properties": { + "id": "meter-19136", + "maker": "Maker G", + "model": "Model 19136", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.21976035694514, + 19.7750284603391 + ] + }, + "properties": { + "id": "meter-19137", + "maker": "Maker F", + "model": "Model 19137", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.194484717208766, + 17.74678668492472 + ] + }, + "properties": { + "id": "meter-19138", + "maker": "Maker E", + "model": "Model 19138", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.34086712896692, + 21.29552281106184 + ] + }, + "properties": { + "id": "meter-19139", + "maker": "Maker C", + "model": "Model 19139", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.343433553216606, + 28.277706527050604 + ] + }, + "properties": { + "id": "meter-19140", + "maker": "Maker E", + "model": "Model 19140", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.57835355388338, + 27.843818137840962 + ] + }, + "properties": { + "id": "meter-19141", + "maker": "Maker I", + "model": "Model 19141", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.34041000906009, + 20.451478402097962 + ] + }, + "properties": { + "id": "meter-19142", + "maker": "Maker A", + "model": "Model 19142", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.15162574215549, + 25.438364002839656 + ] + }, + "properties": { + "id": "meter-19143", + "maker": "Maker I", + "model": "Model 19143", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.49645581858412, + 20.617597839392598 + ] + }, + "properties": { + "id": "meter-19144", + "maker": "Maker F", + "model": "Model 19144", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.6879974075124, + 27.231706863992173 + ] + }, + "properties": { + "id": "meter-19145", + "maker": "Maker G", + "model": "Model 19145", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.46125452627554, + 26.86551029833334 + ] + }, + "properties": { + "id": "meter-19146", + "maker": "Maker I", + "model": "Model 19146", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.558665327987875, + 25.774563319746797 + ] + }, + "properties": { + "id": "meter-19147", + "maker": "Maker A", + "model": "Model 19147", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.49279624862588, + 17.71417575944574 + ] + }, + "properties": { + "id": "meter-19148", + "maker": "Maker I", + "model": "Model 19148", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.77690648369344, + 28.56367041751467 + ] + }, + "properties": { + "id": "meter-19149", + "maker": "Maker B", + "model": "Model 19149", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.19822436550683, + 26.59867474905603 + ] + }, + "properties": { + "id": "meter-19150", + "maker": "Maker A", + "model": "Model 19150", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.895607929062685, + 22.308698654317666 + ] + }, + "properties": { + "id": "meter-19151", + "maker": "Maker B", + "model": "Model 19151", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.37346280777507, + 20.167402129551636 + ] + }, + "properties": { + "id": "meter-19152", + "maker": "Maker E", + "model": "Model 19152", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.356369260257736, + 19.346261951841917 + ] + }, + "properties": { + "id": "meter-19153", + "maker": "Maker J", + "model": "Model 19153", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.65988983945065, + 29.57984673241016 + ] + }, + "properties": { + "id": "meter-19154", + "maker": "Maker F", + "model": "Model 19154", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.430890099798006, + 29.35735803460645 + ] + }, + "properties": { + "id": "meter-19155", + "maker": "Maker A", + "model": "Model 19155", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.32399245473248, + 21.222584119212215 + ] + }, + "properties": { + "id": "meter-19156", + "maker": "Maker G", + "model": "Model 19156", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.507900524895256, + 21.819706243745365 + ] + }, + "properties": { + "id": "meter-19157", + "maker": "Maker E", + "model": "Model 19157", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.56799545255734, + 28.587139045909762 + ] + }, + "properties": { + "id": "meter-19158", + "maker": "Maker A", + "model": "Model 19158", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.852002440113125, + 19.53472497733296 + ] + }, + "properties": { + "id": "meter-19159", + "maker": "Maker H", + "model": "Model 19159", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.75870444425238, + 22.372250182608234 + ] + }, + "properties": { + "id": "meter-19160", + "maker": "Maker E", + "model": "Model 19160", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.909823990492704, + 18.743715968854058 + ] + }, + "properties": { + "id": "meter-19161", + "maker": "Maker G", + "model": "Model 19161", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.5742227374935, + 25.05190924381273 + ] + }, + "properties": { + "id": "meter-19162", + "maker": "Maker H", + "model": "Model 19162", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.340201355647004, + 20.666674451367665 + ] + }, + "properties": { + "id": "meter-19163", + "maker": "Maker J", + "model": "Model 19163", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.26507795451996, + 27.46849556725215 + ] + }, + "properties": { + "id": "meter-19164", + "maker": "Maker J", + "model": "Model 19164", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.75473025446144, + 24.35599379690141 + ] + }, + "properties": { + "id": "meter-19165", + "maker": "Maker B", + "model": "Model 19165", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.665714551372226, + 23.289907510947135 + ] + }, + "properties": { + "id": "meter-19166", + "maker": "Maker B", + "model": "Model 19166", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.31778210054947, + 29.45743835196234 + ] + }, + "properties": { + "id": "meter-19167", + "maker": "Maker H", + "model": "Model 19167", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.2725559846846, + 25.454528809804636 + ] + }, + "properties": { + "id": "meter-19168", + "maker": "Maker F", + "model": "Model 19168", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.31493105663704, + 21.07096844863488 + ] + }, + "properties": { + "id": "meter-19169", + "maker": "Maker E", + "model": "Model 19169", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.49865040416829, + 26.74870515976486 + ] + }, + "properties": { + "id": "meter-19170", + "maker": "Maker I", + "model": "Model 19170", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.00130355274736, + 25.080831334067586 + ] + }, + "properties": { + "id": "meter-19171", + "maker": "Maker G", + "model": "Model 19171", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.27478283308406, + 28.73359591116357 + ] + }, + "properties": { + "id": "meter-19172", + "maker": "Maker C", + "model": "Model 19172", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.09269826756223, + 22.40802768438371 + ] + }, + "properties": { + "id": "meter-19173", + "maker": "Maker I", + "model": "Model 19173", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.74814277224449, + 30.01398236836473 + ] + }, + "properties": { + "id": "meter-19174", + "maker": "Maker J", + "model": "Model 19174", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.74384230793398, + 21.736268027095804 + ] + }, + "properties": { + "id": "meter-19175", + "maker": "Maker A", + "model": "Model 19175", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.67769907169435, + 25.52158570669355 + ] + }, + "properties": { + "id": "meter-19176", + "maker": "Maker B", + "model": "Model 19176", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.55407107099986, + 18.874546745219817 + ] + }, + "properties": { + "id": "meter-19177", + "maker": "Maker C", + "model": "Model 19177", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.82281431092234, + 27.3985971860478 + ] + }, + "properties": { + "id": "meter-19178", + "maker": "Maker C", + "model": "Model 19178", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.784781592703055, + 21.562499427233753 + ] + }, + "properties": { + "id": "meter-19179", + "maker": "Maker C", + "model": "Model 19179", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.295427632094714, + 19.580118758387822 + ] + }, + "properties": { + "id": "meter-19180", + "maker": "Maker J", + "model": "Model 19180", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.40079265105796, + 31.770898505357167 + ] + }, + "properties": { + "id": "meter-19181", + "maker": "Maker C", + "model": "Model 19181", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.57025747742648, + 31.74041288476691 + ] + }, + "properties": { + "id": "meter-19182", + "maker": "Maker B", + "model": "Model 19182", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.0470604513007, + 28.34556480087265 + ] + }, + "properties": { + "id": "meter-19183", + "maker": "Maker G", + "model": "Model 19183", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.00665395914554, + 29.49533753676223 + ] + }, + "properties": { + "id": "meter-19184", + "maker": "Maker F", + "model": "Model 19184", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.59589668491203, + 21.17778528954309 + ] + }, + "properties": { + "id": "meter-19185", + "maker": "Maker D", + "model": "Model 19185", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.69007832946447, + 24.468704984696107 + ] + }, + "properties": { + "id": "meter-19186", + "maker": "Maker H", + "model": "Model 19186", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.24315940883294, + 26.481265420420698 + ] + }, + "properties": { + "id": "meter-19187", + "maker": "Maker E", + "model": "Model 19187", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.96367279884511, + 31.300402283193304 + ] + }, + "properties": { + "id": "meter-19188", + "maker": "Maker D", + "model": "Model 19188", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.707811264349544, + 22.868965443594107 + ] + }, + "properties": { + "id": "meter-19189", + "maker": "Maker G", + "model": "Model 19189", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.02922984989229, + 22.016289023853922 + ] + }, + "properties": { + "id": "meter-19190", + "maker": "Maker C", + "model": "Model 19190", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.9708499789511, + 24.665838529148758 + ] + }, + "properties": { + "id": "meter-19191", + "maker": "Maker G", + "model": "Model 19191", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.12525775921506, + 19.653081628644472 + ] + }, + "properties": { + "id": "meter-19192", + "maker": "Maker C", + "model": "Model 19192", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.15784488089696, + 29.08690543715949 + ] + }, + "properties": { + "id": "meter-19193", + "maker": "Maker I", + "model": "Model 19193", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.61381217076524, + 30.027367684124187 + ] + }, + "properties": { + "id": "meter-19194", + "maker": "Maker E", + "model": "Model 19194", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.73788036739909, + 26.461239547620053 + ] + }, + "properties": { + "id": "meter-19195", + "maker": "Maker G", + "model": "Model 19195", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.77674407148136, + 20.724842636624988 + ] + }, + "properties": { + "id": "meter-19196", + "maker": "Maker A", + "model": "Model 19196", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.02479711733955, + 30.534433200335947 + ] + }, + "properties": { + "id": "meter-19197", + "maker": "Maker F", + "model": "Model 19197", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.943931475256655, + 27.12023164769363 + ] + }, + "properties": { + "id": "meter-19198", + "maker": "Maker D", + "model": "Model 19198", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.00716507464148, + 20.817519676695902 + ] + }, + "properties": { + "id": "meter-19199", + "maker": "Maker F", + "model": "Model 19199", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.283853826435404, + 26.616509942694705 + ] + }, + "properties": { + "id": "meter-19200", + "maker": "Maker A", + "model": "Model 19200", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.60669667193282, + 20.1101613036445 + ] + }, + "properties": { + "id": "meter-19201", + "maker": "Maker J", + "model": "Model 19201", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.65581765784608, + 20.67916642372656 + ] + }, + "properties": { + "id": "meter-19202", + "maker": "Maker B", + "model": "Model 19202", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.888729217297296, + 23.174998104645642 + ] + }, + "properties": { + "id": "meter-19203", + "maker": "Maker A", + "model": "Model 19203", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.119880243797766, + 20.400469648189816 + ] + }, + "properties": { + "id": "meter-19204", + "maker": "Maker E", + "model": "Model 19204", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.1684216525196, + 18.509260597584984 + ] + }, + "properties": { + "id": "meter-19205", + "maker": "Maker D", + "model": "Model 19205", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.716700028045956, + 21.006976272578317 + ] + }, + "properties": { + "id": "meter-19206", + "maker": "Maker C", + "model": "Model 19206", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.409145578270525, + 22.32727928005582 + ] + }, + "properties": { + "id": "meter-19207", + "maker": "Maker I", + "model": "Model 19207", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.69963326023834, + 27.828560327050404 + ] + }, + "properties": { + "id": "meter-19208", + "maker": "Maker F", + "model": "Model 19208", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.678186313204264, + 28.281919818342462 + ] + }, + "properties": { + "id": "meter-19209", + "maker": "Maker C", + "model": "Model 19209", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.263111243194736, + 30.01987523650368 + ] + }, + "properties": { + "id": "meter-19210", + "maker": "Maker I", + "model": "Model 19210", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.94540340865382, + 19.758180994674902 + ] + }, + "properties": { + "id": "meter-19211", + "maker": "Maker A", + "model": "Model 19211", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.37436821974443, + 21.857810495086525 + ] + }, + "properties": { + "id": "meter-19212", + "maker": "Maker A", + "model": "Model 19212", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.550141656439145, + 18.92665816112607 + ] + }, + "properties": { + "id": "meter-19213", + "maker": "Maker J", + "model": "Model 19213", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.16621940447654, + 25.174659270504243 + ] + }, + "properties": { + "id": "meter-19214", + "maker": "Maker F", + "model": "Model 19214", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.45111398969522, + 29.846651860264064 + ] + }, + "properties": { + "id": "meter-19215", + "maker": "Maker H", + "model": "Model 19215", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.77565628073519, + 27.23897536819936 + ] + }, + "properties": { + "id": "meter-19216", + "maker": "Maker H", + "model": "Model 19216", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.260225284484676, + 22.24725284584578 + ] + }, + "properties": { + "id": "meter-19217", + "maker": "Maker E", + "model": "Model 19217", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.69436592470721, + 24.029796946409824 + ] + }, + "properties": { + "id": "meter-19218", + "maker": "Maker I", + "model": "Model 19218", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.5341140605649, + 21.51145391743591 + ] + }, + "properties": { + "id": "meter-19219", + "maker": "Maker G", + "model": "Model 19219", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.999551712331474, + 31.997255902753434 + ] + }, + "properties": { + "id": "meter-19220", + "maker": "Maker D", + "model": "Model 19220", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.29248571822258, + 26.781571373447704 + ] + }, + "properties": { + "id": "meter-19221", + "maker": "Maker J", + "model": "Model 19221", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.06152272432234, + 25.448041496466498 + ] + }, + "properties": { + "id": "meter-19222", + "maker": "Maker C", + "model": "Model 19222", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.03133671183241, + 22.941435299041135 + ] + }, + "properties": { + "id": "meter-19223", + "maker": "Maker C", + "model": "Model 19223", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.34063936675655, + 26.55019044105966 + ] + }, + "properties": { + "id": "meter-19224", + "maker": "Maker B", + "model": "Model 19224", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.721261046269944, + 27.21551119458031 + ] + }, + "properties": { + "id": "meter-19225", + "maker": "Maker E", + "model": "Model 19225", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.36126328507039, + 24.45245248512785 + ] + }, + "properties": { + "id": "meter-19226", + "maker": "Maker H", + "model": "Model 19226", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.08236990417605, + 21.892252956323254 + ] + }, + "properties": { + "id": "meter-19227", + "maker": "Maker D", + "model": "Model 19227", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.87088255153439, + 22.685950584242327 + ] + }, + "properties": { + "id": "meter-19228", + "maker": "Maker F", + "model": "Model 19228", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.72490349325885, + 25.56504831337159 + ] + }, + "properties": { + "id": "meter-19229", + "maker": "Maker F", + "model": "Model 19229", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.58858667782778, + 24.7193780207465 + ] + }, + "properties": { + "id": "meter-19230", + "maker": "Maker D", + "model": "Model 19230", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.28105777386983, + 29.51336852982857 + ] + }, + "properties": { + "id": "meter-19231", + "maker": "Maker G", + "model": "Model 19231", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.50257104918344, + 30.533420669160964 + ] + }, + "properties": { + "id": "meter-19232", + "maker": "Maker I", + "model": "Model 19232", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.2302943997069, + 24.390557402716027 + ] + }, + "properties": { + "id": "meter-19233", + "maker": "Maker H", + "model": "Model 19233", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.58917475296168, + 26.754174424250486 + ] + }, + "properties": { + "id": "meter-19234", + "maker": "Maker B", + "model": "Model 19234", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.030683595461745, + 21.750915325914267 + ] + }, + "properties": { + "id": "meter-19235", + "maker": "Maker G", + "model": "Model 19235", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.8672612816423, + 20.189700760299353 + ] + }, + "properties": { + "id": "meter-19236", + "maker": "Maker B", + "model": "Model 19236", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.24578738703197, + 20.806274059532385 + ] + }, + "properties": { + "id": "meter-19237", + "maker": "Maker F", + "model": "Model 19237", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.11988372711873, + 20.576584793646727 + ] + }, + "properties": { + "id": "meter-19238", + "maker": "Maker B", + "model": "Model 19238", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.18564133695433, + 31.635388056683645 + ] + }, + "properties": { + "id": "meter-19239", + "maker": "Maker B", + "model": "Model 19239", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.93062210031744, + 17.606557086970824 + ] + }, + "properties": { + "id": "meter-19240", + "maker": "Maker I", + "model": "Model 19240", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.578494243182774, + 26.666210635872247 + ] + }, + "properties": { + "id": "meter-19241", + "maker": "Maker G", + "model": "Model 19241", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.30204647830171, + 25.027705808800278 + ] + }, + "properties": { + "id": "meter-19242", + "maker": "Maker H", + "model": "Model 19242", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.99616709733129, + 21.457171056433218 + ] + }, + "properties": { + "id": "meter-19243", + "maker": "Maker H", + "model": "Model 19243", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.78050311176561, + 20.690417561839837 + ] + }, + "properties": { + "id": "meter-19244", + "maker": "Maker I", + "model": "Model 19244", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.957917371455835, + 25.19581580839703 + ] + }, + "properties": { + "id": "meter-19245", + "maker": "Maker I", + "model": "Model 19245", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.1940286599602, + 22.940014300132805 + ] + }, + "properties": { + "id": "meter-19246", + "maker": "Maker J", + "model": "Model 19246", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.40720717504291, + 23.57208124227782 + ] + }, + "properties": { + "id": "meter-19247", + "maker": "Maker H", + "model": "Model 19247", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.81655630792548, + 22.325931148301187 + ] + }, + "properties": { + "id": "meter-19248", + "maker": "Maker A", + "model": "Model 19248", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.51383605568319, + 25.205948362011323 + ] + }, + "properties": { + "id": "meter-19249", + "maker": "Maker F", + "model": "Model 19249", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.73284396989548, + 27.54145175822369 + ] + }, + "properties": { + "id": "meter-19250", + "maker": "Maker F", + "model": "Model 19250", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.92722997092077, + 23.765060534878703 + ] + }, + "properties": { + "id": "meter-19251", + "maker": "Maker F", + "model": "Model 19251", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.667280845193645, + 21.149764059471103 + ] + }, + "properties": { + "id": "meter-19252", + "maker": "Maker B", + "model": "Model 19252", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.81740976457039, + 19.44180885627088 + ] + }, + "properties": { + "id": "meter-19253", + "maker": "Maker I", + "model": "Model 19253", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.09845682882638, + 28.80809932160056 + ] + }, + "properties": { + "id": "meter-19254", + "maker": "Maker J", + "model": "Model 19254", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.11536480250489, + 28.94351233395851 + ] + }, + "properties": { + "id": "meter-19255", + "maker": "Maker I", + "model": "Model 19255", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.71462223410133, + 28.080394539911453 + ] + }, + "properties": { + "id": "meter-19256", + "maker": "Maker J", + "model": "Model 19256", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.71321475083336, + 25.288484164458403 + ] + }, + "properties": { + "id": "meter-19257", + "maker": "Maker H", + "model": "Model 19257", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.77911482623962, + 19.920839276875363 + ] + }, + "properties": { + "id": "meter-19258", + "maker": "Maker F", + "model": "Model 19258", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23484739565919, + 30.06370512887497 + ] + }, + "properties": { + "id": "meter-19259", + "maker": "Maker A", + "model": "Model 19259", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.03974663257584, + 23.722253235966985 + ] + }, + "properties": { + "id": "meter-19260", + "maker": "Maker B", + "model": "Model 19260", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.154424111782845, + 29.920836978967188 + ] + }, + "properties": { + "id": "meter-19261", + "maker": "Maker J", + "model": "Model 19261", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.11088075853132, + 28.45382321884124 + ] + }, + "properties": { + "id": "meter-19262", + "maker": "Maker G", + "model": "Model 19262", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.17592053576597, + 25.37601548891269 + ] + }, + "properties": { + "id": "meter-19263", + "maker": "Maker D", + "model": "Model 19263", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.525869860090765, + 19.36835085655634 + ] + }, + "properties": { + "id": "meter-19264", + "maker": "Maker A", + "model": "Model 19264", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.88283720903413, + 19.95990269980863 + ] + }, + "properties": { + "id": "meter-19265", + "maker": "Maker I", + "model": "Model 19265", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.552402313997646, + 19.734464408887117 + ] + }, + "properties": { + "id": "meter-19266", + "maker": "Maker C", + "model": "Model 19266", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.345759453057624, + 23.578123517952687 + ] + }, + "properties": { + "id": "meter-19267", + "maker": "Maker I", + "model": "Model 19267", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.21041826775031, + 19.37832847801735 + ] + }, + "properties": { + "id": "meter-19268", + "maker": "Maker A", + "model": "Model 19268", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.36815545280845, + 26.37540069847161 + ] + }, + "properties": { + "id": "meter-19269", + "maker": "Maker I", + "model": "Model 19269", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.43922665854005, + 20.161955610990855 + ] + }, + "properties": { + "id": "meter-19270", + "maker": "Maker A", + "model": "Model 19270", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.55852615658905, + 30.59364057897963 + ] + }, + "properties": { + "id": "meter-19271", + "maker": "Maker I", + "model": "Model 19271", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.54631411251016, + 22.795035047660036 + ] + }, + "properties": { + "id": "meter-19272", + "maker": "Maker A", + "model": "Model 19272", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.62388469822587, + 19.64082536631852 + ] + }, + "properties": { + "id": "meter-19273", + "maker": "Maker B", + "model": "Model 19273", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.75058878061005, + 21.80499811823283 + ] + }, + "properties": { + "id": "meter-19274", + "maker": "Maker A", + "model": "Model 19274", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.322383755556615, + 17.606553972464567 + ] + }, + "properties": { + "id": "meter-19275", + "maker": "Maker J", + "model": "Model 19275", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.703775910399415, + 22.57867301907107 + ] + }, + "properties": { + "id": "meter-19276", + "maker": "Maker G", + "model": "Model 19276", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.68426914260669, + 24.288136397269355 + ] + }, + "properties": { + "id": "meter-19277", + "maker": "Maker D", + "model": "Model 19277", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.31833035052961, + 20.959317494741505 + ] + }, + "properties": { + "id": "meter-19278", + "maker": "Maker A", + "model": "Model 19278", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.695526611912754, + 27.672597256849883 + ] + }, + "properties": { + "id": "meter-19279", + "maker": "Maker C", + "model": "Model 19279", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.67688664814451, + 26.84269378844748 + ] + }, + "properties": { + "id": "meter-19280", + "maker": "Maker D", + "model": "Model 19280", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.6376537653118, + 26.56209788185309 + ] + }, + "properties": { + "id": "meter-19281", + "maker": "Maker B", + "model": "Model 19281", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.08515571287553, + 18.79891721097437 + ] + }, + "properties": { + "id": "meter-19282", + "maker": "Maker D", + "model": "Model 19282", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.33779392824697, + 24.185800452521725 + ] + }, + "properties": { + "id": "meter-19283", + "maker": "Maker G", + "model": "Model 19283", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.067008212019196, + 20.23419976081157 + ] + }, + "properties": { + "id": "meter-19284", + "maker": "Maker B", + "model": "Model 19284", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.73866899196213, + 19.21594032038667 + ] + }, + "properties": { + "id": "meter-19285", + "maker": "Maker B", + "model": "Model 19285", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.68168876250711, + 24.63423541484798 + ] + }, + "properties": { + "id": "meter-19286", + "maker": "Maker D", + "model": "Model 19286", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.324948171342726, + 27.517096545049483 + ] + }, + "properties": { + "id": "meter-19287", + "maker": "Maker J", + "model": "Model 19287", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.30343652116942, + 26.15729742471191 + ] + }, + "properties": { + "id": "meter-19288", + "maker": "Maker C", + "model": "Model 19288", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.55544365583675, + 23.12284922800849 + ] + }, + "properties": { + "id": "meter-19289", + "maker": "Maker E", + "model": "Model 19289", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.54679348276974, + 25.77530784826722 + ] + }, + "properties": { + "id": "meter-19290", + "maker": "Maker B", + "model": "Model 19290", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.024316452966076, + 25.155624726334178 + ] + }, + "properties": { + "id": "meter-19291", + "maker": "Maker F", + "model": "Model 19291", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.95924458271171, + 23.627996799373246 + ] + }, + "properties": { + "id": "meter-19292", + "maker": "Maker B", + "model": "Model 19292", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.12193272432417, + 27.199745728610228 + ] + }, + "properties": { + "id": "meter-19293", + "maker": "Maker I", + "model": "Model 19293", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.17972059338928, + 22.67522672473531 + ] + }, + "properties": { + "id": "meter-19294", + "maker": "Maker J", + "model": "Model 19294", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.45699105050496, + 20.297160354237235 + ] + }, + "properties": { + "id": "meter-19295", + "maker": "Maker C", + "model": "Model 19295", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.06113519906651, + 31.543775064981403 + ] + }, + "properties": { + "id": "meter-19296", + "maker": "Maker E", + "model": "Model 19296", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.83239451252892, + 19.232677595988008 + ] + }, + "properties": { + "id": "meter-19297", + "maker": "Maker D", + "model": "Model 19297", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.79798378090775, + 23.128336238303156 + ] + }, + "properties": { + "id": "meter-19298", + "maker": "Maker C", + "model": "Model 19298", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.55018725599314, + 22.91365857189851 + ] + }, + "properties": { + "id": "meter-19299", + "maker": "Maker E", + "model": "Model 19299", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.216471003702765, + 22.29462598803478 + ] + }, + "properties": { + "id": "meter-19300", + "maker": "Maker H", + "model": "Model 19300", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.87858250660763, + 25.168284574867627 + ] + }, + "properties": { + "id": "meter-19301", + "maker": "Maker B", + "model": "Model 19301", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.20068371086076, + 24.822469887161247 + ] + }, + "properties": { + "id": "meter-19302", + "maker": "Maker F", + "model": "Model 19302", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.57385319767137, + 23.05422337414689 + ] + }, + "properties": { + "id": "meter-19303", + "maker": "Maker J", + "model": "Model 19303", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.97064946664353, + 21.17082612892563 + ] + }, + "properties": { + "id": "meter-19304", + "maker": "Maker F", + "model": "Model 19304", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.423166698451205, + 20.31109112460013 + ] + }, + "properties": { + "id": "meter-19305", + "maker": "Maker A", + "model": "Model 19305", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.114140925805266, + 25.938892423204877 + ] + }, + "properties": { + "id": "meter-19306", + "maker": "Maker B", + "model": "Model 19306", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.29772300106879, + 27.87467133951153 + ] + }, + "properties": { + "id": "meter-19307", + "maker": "Maker J", + "model": "Model 19307", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.2587638719172, + 21.933813672238728 + ] + }, + "properties": { + "id": "meter-19308", + "maker": "Maker D", + "model": "Model 19308", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.777578763823406, + 23.38179535109017 + ] + }, + "properties": { + "id": "meter-19309", + "maker": "Maker C", + "model": "Model 19309", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.26199372161339, + 20.596353019368088 + ] + }, + "properties": { + "id": "meter-19310", + "maker": "Maker E", + "model": "Model 19310", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71225355723756, + 27.372441260231113 + ] + }, + "properties": { + "id": "meter-19311", + "maker": "Maker E", + "model": "Model 19311", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.852504906132054, + 19.04493198180065 + ] + }, + "properties": { + "id": "meter-19312", + "maker": "Maker B", + "model": "Model 19312", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.93306365599189, + 24.722326305592333 + ] + }, + "properties": { + "id": "meter-19313", + "maker": "Maker F", + "model": "Model 19313", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.772084373298384, + 19.832905121283133 + ] + }, + "properties": { + "id": "meter-19314", + "maker": "Maker H", + "model": "Model 19314", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.79144705425445, + 24.032032332300545 + ] + }, + "properties": { + "id": "meter-19315", + "maker": "Maker E", + "model": "Model 19315", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.79875144852369, + 26.707193819846818 + ] + }, + "properties": { + "id": "meter-19316", + "maker": "Maker B", + "model": "Model 19316", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.36196623824037, + 25.257991490248962 + ] + }, + "properties": { + "id": "meter-19317", + "maker": "Maker D", + "model": "Model 19317", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.49614205871786, + 24.300646727965923 + ] + }, + "properties": { + "id": "meter-19318", + "maker": "Maker J", + "model": "Model 19318", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.44452509746866, + 19.26933495976326 + ] + }, + "properties": { + "id": "meter-19319", + "maker": "Maker G", + "model": "Model 19319", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.21194293890205, + 20.809062474586426 + ] + }, + "properties": { + "id": "meter-19320", + "maker": "Maker E", + "model": "Model 19320", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.182552328735014, + 25.449443342442997 + ] + }, + "properties": { + "id": "meter-19321", + "maker": "Maker F", + "model": "Model 19321", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.83992949292353, + 25.588326745264634 + ] + }, + "properties": { + "id": "meter-19322", + "maker": "Maker F", + "model": "Model 19322", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.20225080976219, + 21.384651463211384 + ] + }, + "properties": { + "id": "meter-19323", + "maker": "Maker J", + "model": "Model 19323", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.92414515647883, + 27.097665395709992 + ] + }, + "properties": { + "id": "meter-19324", + "maker": "Maker A", + "model": "Model 19324", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.65181385813895, + 19.596826258772655 + ] + }, + "properties": { + "id": "meter-19325", + "maker": "Maker B", + "model": "Model 19325", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.102112396808764, + 19.422564590257437 + ] + }, + "properties": { + "id": "meter-19326", + "maker": "Maker E", + "model": "Model 19326", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.04869079061716, + 28.0326563144138 + ] + }, + "properties": { + "id": "meter-19327", + "maker": "Maker J", + "model": "Model 19327", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.232445512483714, + 27.942831804872824 + ] + }, + "properties": { + "id": "meter-19328", + "maker": "Maker D", + "model": "Model 19328", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.676010346538675, + 22.31845241170748 + ] + }, + "properties": { + "id": "meter-19329", + "maker": "Maker J", + "model": "Model 19329", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.712648671972275, + 20.26249427679527 + ] + }, + "properties": { + "id": "meter-19330", + "maker": "Maker G", + "model": "Model 19330", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.20560782992433, + 19.764540572803504 + ] + }, + "properties": { + "id": "meter-19331", + "maker": "Maker A", + "model": "Model 19331", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.82488831974592, + 27.995313186638093 + ] + }, + "properties": { + "id": "meter-19332", + "maker": "Maker E", + "model": "Model 19332", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.58086179547813, + 20.78951019973661 + ] + }, + "properties": { + "id": "meter-19333", + "maker": "Maker I", + "model": "Model 19333", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.336285915429166, + 19.13486486276407 + ] + }, + "properties": { + "id": "meter-19334", + "maker": "Maker J", + "model": "Model 19334", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89319021738193, + 25.596555636875 + ] + }, + "properties": { + "id": "meter-19335", + "maker": "Maker B", + "model": "Model 19335", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.142666212669994, + 21.490158458118437 + ] + }, + "properties": { + "id": "meter-19336", + "maker": "Maker B", + "model": "Model 19336", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.21599225698839, + 31.16948711152024 + ] + }, + "properties": { + "id": "meter-19337", + "maker": "Maker C", + "model": "Model 19337", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.22402847789692, + 18.901055975738373 + ] + }, + "properties": { + "id": "meter-19338", + "maker": "Maker H", + "model": "Model 19338", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.951768047984515, + 31.527155023020313 + ] + }, + "properties": { + "id": "meter-19339", + "maker": "Maker J", + "model": "Model 19339", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.6827043284451, + 29.29692803661216 + ] + }, + "properties": { + "id": "meter-19340", + "maker": "Maker E", + "model": "Model 19340", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.082299913470024, + 25.34555165724944 + ] + }, + "properties": { + "id": "meter-19341", + "maker": "Maker E", + "model": "Model 19341", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.8158450749405, + 19.511226697366737 + ] + }, + "properties": { + "id": "meter-19342", + "maker": "Maker F", + "model": "Model 19342", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.8139989156478, + 22.169961484656135 + ] + }, + "properties": { + "id": "meter-19343", + "maker": "Maker J", + "model": "Model 19343", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.30960507420212, + 29.02115129003508 + ] + }, + "properties": { + "id": "meter-19344", + "maker": "Maker E", + "model": "Model 19344", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.54236049312471, + 30.41419344433043 + ] + }, + "properties": { + "id": "meter-19345", + "maker": "Maker G", + "model": "Model 19345", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.95036998228358, + 24.596583320877436 + ] + }, + "properties": { + "id": "meter-19346", + "maker": "Maker E", + "model": "Model 19346", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.062657146311636, + 21.65849962125722 + ] + }, + "properties": { + "id": "meter-19347", + "maker": "Maker E", + "model": "Model 19347", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.78915709042636, + 24.15224573854356 + ] + }, + "properties": { + "id": "meter-19348", + "maker": "Maker D", + "model": "Model 19348", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.09875504902707, + 20.943082295781664 + ] + }, + "properties": { + "id": "meter-19349", + "maker": "Maker G", + "model": "Model 19349", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.41600508243202, + 23.35989671379038 + ] + }, + "properties": { + "id": "meter-19350", + "maker": "Maker H", + "model": "Model 19350", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.79157346210698, + 17.501789809461346 + ] + }, + "properties": { + "id": "meter-19351", + "maker": "Maker I", + "model": "Model 19351", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.5351877614627, + 20.42185777027211 + ] + }, + "properties": { + "id": "meter-19352", + "maker": "Maker H", + "model": "Model 19352", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.63598155241679, + 17.922974525579928 + ] + }, + "properties": { + "id": "meter-19353", + "maker": "Maker D", + "model": "Model 19353", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.286298638378796, + 22.460707386655994 + ] + }, + "properties": { + "id": "meter-19354", + "maker": "Maker C", + "model": "Model 19354", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.99383878599684, + 22.109925868595333 + ] + }, + "properties": { + "id": "meter-19355", + "maker": "Maker D", + "model": "Model 19355", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.51988972597791, + 20.13827487735076 + ] + }, + "properties": { + "id": "meter-19356", + "maker": "Maker D", + "model": "Model 19356", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.19488504898816, + 21.248979903101187 + ] + }, + "properties": { + "id": "meter-19357", + "maker": "Maker E", + "model": "Model 19357", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.28709962633548, + 18.345496346610137 + ] + }, + "properties": { + "id": "meter-19358", + "maker": "Maker B", + "model": "Model 19358", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.73684590097227, + 25.601805030171793 + ] + }, + "properties": { + "id": "meter-19359", + "maker": "Maker E", + "model": "Model 19359", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.628735159830015, + 26.700582958231713 + ] + }, + "properties": { + "id": "meter-19360", + "maker": "Maker G", + "model": "Model 19360", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.563814173480395, + 24.03908190108266 + ] + }, + "properties": { + "id": "meter-19361", + "maker": "Maker F", + "model": "Model 19361", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.67949650130679, + 22.292073544101505 + ] + }, + "properties": { + "id": "meter-19362", + "maker": "Maker H", + "model": "Model 19362", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.46466823437216, + 19.41910884910505 + ] + }, + "properties": { + "id": "meter-19363", + "maker": "Maker I", + "model": "Model 19363", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.71823646149064, + 31.289988902502856 + ] + }, + "properties": { + "id": "meter-19364", + "maker": "Maker E", + "model": "Model 19364", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.5859329167089, + 27.215740542572078 + ] + }, + "properties": { + "id": "meter-19365", + "maker": "Maker J", + "model": "Model 19365", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.70981046521545, + 26.183095264408834 + ] + }, + "properties": { + "id": "meter-19366", + "maker": "Maker E", + "model": "Model 19366", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.597582959022425, + 23.798025395436348 + ] + }, + "properties": { + "id": "meter-19367", + "maker": "Maker G", + "model": "Model 19367", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.05825812740093, + 21.05755504526261 + ] + }, + "properties": { + "id": "meter-19368", + "maker": "Maker F", + "model": "Model 19368", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.23639574365848, + 21.476086456576354 + ] + }, + "properties": { + "id": "meter-19369", + "maker": "Maker F", + "model": "Model 19369", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.64027833758282, + 27.17093444988949 + ] + }, + "properties": { + "id": "meter-19370", + "maker": "Maker G", + "model": "Model 19370", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.73305464249759, + 27.116115158983863 + ] + }, + "properties": { + "id": "meter-19371", + "maker": "Maker A", + "model": "Model 19371", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.16998483288552, + 17.987085202715047 + ] + }, + "properties": { + "id": "meter-19372", + "maker": "Maker A", + "model": "Model 19372", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.11273674666931, + 25.693980284664875 + ] + }, + "properties": { + "id": "meter-19373", + "maker": "Maker G", + "model": "Model 19373", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.67687298388361, + 28.841712070797865 + ] + }, + "properties": { + "id": "meter-19374", + "maker": "Maker F", + "model": "Model 19374", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.27835125412051, + 21.851509444173555 + ] + }, + "properties": { + "id": "meter-19375", + "maker": "Maker H", + "model": "Model 19375", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.069675414731236, + 18.71806039360687 + ] + }, + "properties": { + "id": "meter-19376", + "maker": "Maker D", + "model": "Model 19376", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.53679575351077, + 20.594511569804013 + ] + }, + "properties": { + "id": "meter-19377", + "maker": "Maker H", + "model": "Model 19377", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.645154428807956, + 20.404005343339044 + ] + }, + "properties": { + "id": "meter-19378", + "maker": "Maker G", + "model": "Model 19378", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.34993378098666, + 22.441803635423767 + ] + }, + "properties": { + "id": "meter-19379", + "maker": "Maker D", + "model": "Model 19379", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.09153482394619, + 17.076111290767678 + ] + }, + "properties": { + "id": "meter-19380", + "maker": "Maker E", + "model": "Model 19380", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.592905076548014, + 23.35747858547905 + ] + }, + "properties": { + "id": "meter-19381", + "maker": "Maker D", + "model": "Model 19381", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.514641305844634, + 20.337943292054973 + ] + }, + "properties": { + "id": "meter-19382", + "maker": "Maker J", + "model": "Model 19382", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.93716850414995, + 27.65811723722979 + ] + }, + "properties": { + "id": "meter-19383", + "maker": "Maker J", + "model": "Model 19383", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.33150636035511, + 24.05073586282627 + ] + }, + "properties": { + "id": "meter-19384", + "maker": "Maker B", + "model": "Model 19384", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.76334024723216, + 25.511497705330747 + ] + }, + "properties": { + "id": "meter-19385", + "maker": "Maker D", + "model": "Model 19385", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.53790659686824, + 19.724040056715836 + ] + }, + "properties": { + "id": "meter-19386", + "maker": "Maker F", + "model": "Model 19386", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.518768905877344, + 26.96463380586642 + ] + }, + "properties": { + "id": "meter-19387", + "maker": "Maker I", + "model": "Model 19387", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.62303454257382, + 27.672672453312014 + ] + }, + "properties": { + "id": "meter-19388", + "maker": "Maker F", + "model": "Model 19388", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.38884246438151, + 24.37809536781016 + ] + }, + "properties": { + "id": "meter-19389", + "maker": "Maker A", + "model": "Model 19389", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.725214481727456, + 23.950092168829478 + ] + }, + "properties": { + "id": "meter-19390", + "maker": "Maker C", + "model": "Model 19390", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.494179133984616, + 29.1330765238963 + ] + }, + "properties": { + "id": "meter-19391", + "maker": "Maker C", + "model": "Model 19391", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.90365000979793, + 19.81587480320542 + ] + }, + "properties": { + "id": "meter-19392", + "maker": "Maker C", + "model": "Model 19392", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.48955394167536, + 31.203692423578367 + ] + }, + "properties": { + "id": "meter-19393", + "maker": "Maker I", + "model": "Model 19393", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.00330675354022, + 31.965308404993767 + ] + }, + "properties": { + "id": "meter-19394", + "maker": "Maker H", + "model": "Model 19394", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.66848588900913, + 22.85423953181159 + ] + }, + "properties": { + "id": "meter-19395", + "maker": "Maker D", + "model": "Model 19395", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.42620055444408, + 27.105399045055023 + ] + }, + "properties": { + "id": "meter-19396", + "maker": "Maker I", + "model": "Model 19396", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.82522335941897, + 19.106609598774035 + ] + }, + "properties": { + "id": "meter-19397", + "maker": "Maker A", + "model": "Model 19397", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.841351892042105, + 19.63441993218874 + ] + }, + "properties": { + "id": "meter-19398", + "maker": "Maker E", + "model": "Model 19398", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.33900511961476, + 29.781231869626264 + ] + }, + "properties": { + "id": "meter-19399", + "maker": "Maker J", + "model": "Model 19399", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.265355168674866, + 27.55280815125945 + ] + }, + "properties": { + "id": "meter-19400", + "maker": "Maker G", + "model": "Model 19400", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.95945898770521, + 28.798194326192295 + ] + }, + "properties": { + "id": "meter-19401", + "maker": "Maker F", + "model": "Model 19401", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.61267846361272, + 30.56743581451757 + ] + }, + "properties": { + "id": "meter-19402", + "maker": "Maker D", + "model": "Model 19402", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.928077461786465, + 22.476735071028866 + ] + }, + "properties": { + "id": "meter-19403", + "maker": "Maker H", + "model": "Model 19403", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.713063017221636, + 19.436566580723074 + ] + }, + "properties": { + "id": "meter-19404", + "maker": "Maker G", + "model": "Model 19404", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.47460706334381, + 21.610522701405785 + ] + }, + "properties": { + "id": "meter-19405", + "maker": "Maker A", + "model": "Model 19405", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.26797752403214, + 26.884242216059874 + ] + }, + "properties": { + "id": "meter-19406", + "maker": "Maker G", + "model": "Model 19406", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.98749102517979, + 20.44854982399292 + ] + }, + "properties": { + "id": "meter-19407", + "maker": "Maker G", + "model": "Model 19407", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.49104471069066, + 22.198843766754457 + ] + }, + "properties": { + "id": "meter-19408", + "maker": "Maker E", + "model": "Model 19408", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.13440538799011, + 21.365891973677115 + ] + }, + "properties": { + "id": "meter-19409", + "maker": "Maker H", + "model": "Model 19409", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.47364515132804, + 19.087784846229532 + ] + }, + "properties": { + "id": "meter-19410", + "maker": "Maker A", + "model": "Model 19410", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7488616766021, + 26.00864190572204 + ] + }, + "properties": { + "id": "meter-19411", + "maker": "Maker D", + "model": "Model 19411", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.85211023083048, + 25.88925540523106 + ] + }, + "properties": { + "id": "meter-19412", + "maker": "Maker C", + "model": "Model 19412", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.99308373244148, + 17.537109837968256 + ] + }, + "properties": { + "id": "meter-19413", + "maker": "Maker G", + "model": "Model 19413", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.46585468147654, + 31.561463263568438 + ] + }, + "properties": { + "id": "meter-19414", + "maker": "Maker D", + "model": "Model 19414", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.11271517008769, + 19.656525385707386 + ] + }, + "properties": { + "id": "meter-19415", + "maker": "Maker C", + "model": "Model 19415", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.432540151697836, + 24.703414756573597 + ] + }, + "properties": { + "id": "meter-19416", + "maker": "Maker I", + "model": "Model 19416", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.50549348982502, + 24.21799917577069 + ] + }, + "properties": { + "id": "meter-19417", + "maker": "Maker J", + "model": "Model 19417", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.7601131950847, + 20.86554419408244 + ] + }, + "properties": { + "id": "meter-19418", + "maker": "Maker F", + "model": "Model 19418", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.35823354015358, + 20.435930173268453 + ] + }, + "properties": { + "id": "meter-19419", + "maker": "Maker E", + "model": "Model 19419", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.2157384713467, + 31.804352029624127 + ] + }, + "properties": { + "id": "meter-19420", + "maker": "Maker D", + "model": "Model 19420", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.34396098742762, + 26.09776919926948 + ] + }, + "properties": { + "id": "meter-19421", + "maker": "Maker A", + "model": "Model 19421", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.44697169135641, + 27.325422224031414 + ] + }, + "properties": { + "id": "meter-19422", + "maker": "Maker E", + "model": "Model 19422", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.80742720844291, + 23.472406934319203 + ] + }, + "properties": { + "id": "meter-19423", + "maker": "Maker E", + "model": "Model 19423", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.609734714004574, + 30.648654740631883 + ] + }, + "properties": { + "id": "meter-19424", + "maker": "Maker G", + "model": "Model 19424", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.56223721721459, + 22.550239329969003 + ] + }, + "properties": { + "id": "meter-19425", + "maker": "Maker E", + "model": "Model 19425", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.71253235590018, + 22.619035153775563 + ] + }, + "properties": { + "id": "meter-19426", + "maker": "Maker A", + "model": "Model 19426", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.27104394101012, + 21.695211249700357 + ] + }, + "properties": { + "id": "meter-19427", + "maker": "Maker F", + "model": "Model 19427", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.1728681601409, + 22.81728652864182 + ] + }, + "properties": { + "id": "meter-19428", + "maker": "Maker F", + "model": "Model 19428", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.23929782755688, + 23.647164771386503 + ] + }, + "properties": { + "id": "meter-19429", + "maker": "Maker A", + "model": "Model 19429", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.98153618999467, + 27.20566696244307 + ] + }, + "properties": { + "id": "meter-19430", + "maker": "Maker E", + "model": "Model 19430", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.12050115941064, + 23.30741875382258 + ] + }, + "properties": { + "id": "meter-19431", + "maker": "Maker B", + "model": "Model 19431", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.94758516380425, + 21.033129265013677 + ] + }, + "properties": { + "id": "meter-19432", + "maker": "Maker F", + "model": "Model 19432", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.69348176970384, + 26.560802595567306 + ] + }, + "properties": { + "id": "meter-19433", + "maker": "Maker G", + "model": "Model 19433", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.94370065032118, + 23.76277628795461 + ] + }, + "properties": { + "id": "meter-19434", + "maker": "Maker H", + "model": "Model 19434", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.55606884145357, + 26.695553739335573 + ] + }, + "properties": { + "id": "meter-19435", + "maker": "Maker E", + "model": "Model 19435", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.76031042575443, + 18.77706127235959 + ] + }, + "properties": { + "id": "meter-19436", + "maker": "Maker D", + "model": "Model 19436", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.46953507145442, + 21.276585551876906 + ] + }, + "properties": { + "id": "meter-19437", + "maker": "Maker A", + "model": "Model 19437", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.92155564232867, + 28.78361141919421 + ] + }, + "properties": { + "id": "meter-19438", + "maker": "Maker J", + "model": "Model 19438", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.21712875465971, + 20.319392280057706 + ] + }, + "properties": { + "id": "meter-19439", + "maker": "Maker E", + "model": "Model 19439", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.099061680230825, + 19.571377303019663 + ] + }, + "properties": { + "id": "meter-19440", + "maker": "Maker A", + "model": "Model 19440", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.31491286929461, + 21.086106088743204 + ] + }, + "properties": { + "id": "meter-19441", + "maker": "Maker J", + "model": "Model 19441", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.925684781513986, + 23.276569896530013 + ] + }, + "properties": { + "id": "meter-19442", + "maker": "Maker A", + "model": "Model 19442", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.52330260204948, + 18.72252164604072 + ] + }, + "properties": { + "id": "meter-19443", + "maker": "Maker I", + "model": "Model 19443", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.344783979978786, + 20.52789098534898 + ] + }, + "properties": { + "id": "meter-19444", + "maker": "Maker F", + "model": "Model 19444", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.60717947063209, + 21.46221192130106 + ] + }, + "properties": { + "id": "meter-19445", + "maker": "Maker B", + "model": "Model 19445", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.14053627510763, + 25.363279733638475 + ] + }, + "properties": { + "id": "meter-19446", + "maker": "Maker E", + "model": "Model 19446", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.42713482441651, + 23.878198079802736 + ] + }, + "properties": { + "id": "meter-19447", + "maker": "Maker H", + "model": "Model 19447", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.13451103133555, + 23.17814978492607 + ] + }, + "properties": { + "id": "meter-19448", + "maker": "Maker J", + "model": "Model 19448", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.68414058082705, + 20.89473775397803 + ] + }, + "properties": { + "id": "meter-19449", + "maker": "Maker I", + "model": "Model 19449", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.07656111945712, + 30.193109441698198 + ] + }, + "properties": { + "id": "meter-19450", + "maker": "Maker A", + "model": "Model 19450", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.11258173970738, + 21.865135478520653 + ] + }, + "properties": { + "id": "meter-19451", + "maker": "Maker A", + "model": "Model 19451", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.61893713163724, + 19.15798153156002 + ] + }, + "properties": { + "id": "meter-19452", + "maker": "Maker J", + "model": "Model 19452", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.86025812226667, + 21.18383971114486 + ] + }, + "properties": { + "id": "meter-19453", + "maker": "Maker E", + "model": "Model 19453", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.97248972667903, + 23.367484303829585 + ] + }, + "properties": { + "id": "meter-19454", + "maker": "Maker I", + "model": "Model 19454", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.32005142683607, + 18.58919724373634 + ] + }, + "properties": { + "id": "meter-19455", + "maker": "Maker F", + "model": "Model 19455", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.770488523203596, + 27.100570589977963 + ] + }, + "properties": { + "id": "meter-19456", + "maker": "Maker F", + "model": "Model 19456", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.57697621356127, + 29.10370197216603 + ] + }, + "properties": { + "id": "meter-19457", + "maker": "Maker G", + "model": "Model 19457", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.96522051828793, + 29.347816646449623 + ] + }, + "properties": { + "id": "meter-19458", + "maker": "Maker A", + "model": "Model 19458", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.354025295069796, + 24.750623721666475 + ] + }, + "properties": { + "id": "meter-19459", + "maker": "Maker H", + "model": "Model 19459", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.64192710867119, + 23.172240075139456 + ] + }, + "properties": { + "id": "meter-19460", + "maker": "Maker A", + "model": "Model 19460", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.94221151300815, + 25.949531640748297 + ] + }, + "properties": { + "id": "meter-19461", + "maker": "Maker G", + "model": "Model 19461", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.92075249076855, + 17.6467167680783 + ] + }, + "properties": { + "id": "meter-19462", + "maker": "Maker I", + "model": "Model 19462", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.276195222920265, + 26.451407464122106 + ] + }, + "properties": { + "id": "meter-19463", + "maker": "Maker E", + "model": "Model 19463", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.153529119330244, + 21.197094539024334 + ] + }, + "properties": { + "id": "meter-19464", + "maker": "Maker C", + "model": "Model 19464", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.22783500276575, + 31.322588079327286 + ] + }, + "properties": { + "id": "meter-19465", + "maker": "Maker A", + "model": "Model 19465", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.93471197212516, + 23.432110024485638 + ] + }, + "properties": { + "id": "meter-19466", + "maker": "Maker H", + "model": "Model 19466", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.44352626259581, + 28.150162306377148 + ] + }, + "properties": { + "id": "meter-19467", + "maker": "Maker I", + "model": "Model 19467", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.02992648210592, + 28.854058767845395 + ] + }, + "properties": { + "id": "meter-19468", + "maker": "Maker C", + "model": "Model 19468", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.16527448937626, + 29.043868490982618 + ] + }, + "properties": { + "id": "meter-19469", + "maker": "Maker H", + "model": "Model 19469", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.76585299145171, + 28.18708075185119 + ] + }, + "properties": { + "id": "meter-19470", + "maker": "Maker B", + "model": "Model 19470", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.66060765310068, + 27.925579978771474 + ] + }, + "properties": { + "id": "meter-19471", + "maker": "Maker E", + "model": "Model 19471", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.2104785268301, + 19.117969285604964 + ] + }, + "properties": { + "id": "meter-19472", + "maker": "Maker C", + "model": "Model 19472", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.33983660862796, + 26.849727685010304 + ] + }, + "properties": { + "id": "meter-19473", + "maker": "Maker E", + "model": "Model 19473", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.587967912170136, + 27.188634616680734 + ] + }, + "properties": { + "id": "meter-19474", + "maker": "Maker F", + "model": "Model 19474", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.337045115080926, + 28.56868305112416 + ] + }, + "properties": { + "id": "meter-19475", + "maker": "Maker H", + "model": "Model 19475", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.001688028757265, + 18.382522579873193 + ] + }, + "properties": { + "id": "meter-19476", + "maker": "Maker C", + "model": "Model 19476", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.1392300260882, + 29.254673143906924 + ] + }, + "properties": { + "id": "meter-19477", + "maker": "Maker A", + "model": "Model 19477", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.68521146382851, + 20.135685936620696 + ] + }, + "properties": { + "id": "meter-19478", + "maker": "Maker G", + "model": "Model 19478", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.045829864632005, + 28.4932306623778 + ] + }, + "properties": { + "id": "meter-19479", + "maker": "Maker H", + "model": "Model 19479", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.388983732322096, + 21.52614284372035 + ] + }, + "properties": { + "id": "meter-19480", + "maker": "Maker J", + "model": "Model 19480", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.63033955778134, + 25.630205653897853 + ] + }, + "properties": { + "id": "meter-19481", + "maker": "Maker I", + "model": "Model 19481", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.63237227216371, + 27.506692730187787 + ] + }, + "properties": { + "id": "meter-19482", + "maker": "Maker J", + "model": "Model 19482", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.72422324455619, + 22.601730114776153 + ] + }, + "properties": { + "id": "meter-19483", + "maker": "Maker G", + "model": "Model 19483", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.30233098641866, + 18.774973068223076 + ] + }, + "properties": { + "id": "meter-19484", + "maker": "Maker G", + "model": "Model 19484", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.57148267457166, + 18.811386865914084 + ] + }, + "properties": { + "id": "meter-19485", + "maker": "Maker G", + "model": "Model 19485", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.91158057306832, + 22.70252012783687 + ] + }, + "properties": { + "id": "meter-19486", + "maker": "Maker F", + "model": "Model 19486", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.96366161693382, + 26.892572485363097 + ] + }, + "properties": { + "id": "meter-19487", + "maker": "Maker E", + "model": "Model 19487", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.11318283977415, + 28.755169837063235 + ] + }, + "properties": { + "id": "meter-19488", + "maker": "Maker I", + "model": "Model 19488", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.351882691522036, + 28.764546595206113 + ] + }, + "properties": { + "id": "meter-19489", + "maker": "Maker C", + "model": "Model 19489", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.973120955226726, + 30.508178514430277 + ] + }, + "properties": { + "id": "meter-19490", + "maker": "Maker B", + "model": "Model 19490", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.5685940801734, + 24.4903507562624 + ] + }, + "properties": { + "id": "meter-19491", + "maker": "Maker A", + "model": "Model 19491", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.99858992439673, + 30.579527916439268 + ] + }, + "properties": { + "id": "meter-19492", + "maker": "Maker G", + "model": "Model 19492", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.03398046981226, + 18.215233681027396 + ] + }, + "properties": { + "id": "meter-19493", + "maker": "Maker G", + "model": "Model 19493", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.27228179662611, + 25.628835386697226 + ] + }, + "properties": { + "id": "meter-19494", + "maker": "Maker B", + "model": "Model 19494", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.108868027025835, + 23.528856421069914 + ] + }, + "properties": { + "id": "meter-19495", + "maker": "Maker D", + "model": "Model 19495", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.303820755608314, + 25.22469083430085 + ] + }, + "properties": { + "id": "meter-19496", + "maker": "Maker A", + "model": "Model 19496", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.067323262716144, + 24.2447342608132 + ] + }, + "properties": { + "id": "meter-19497", + "maker": "Maker E", + "model": "Model 19497", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.610742640819424, + 27.34609829575045 + ] + }, + "properties": { + "id": "meter-19498", + "maker": "Maker G", + "model": "Model 19498", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.44426661109688, + 22.82003865262857 + ] + }, + "properties": { + "id": "meter-19499", + "maker": "Maker G", + "model": "Model 19499", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.70620722267938, + 27.766442972159233 + ] + }, + "properties": { + "id": "meter-19500", + "maker": "Maker J", + "model": "Model 19500", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.6801776375618, + 20.415811086463208 + ] + }, + "properties": { + "id": "meter-19501", + "maker": "Maker F", + "model": "Model 19501", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.70190404718186, + 29.442864727727233 + ] + }, + "properties": { + "id": "meter-19502", + "maker": "Maker E", + "model": "Model 19502", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.62382924305202, + 26.70109397350846 + ] + }, + "properties": { + "id": "meter-19503", + "maker": "Maker C", + "model": "Model 19503", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.614017282199086, + 18.320423188786126 + ] + }, + "properties": { + "id": "meter-19504", + "maker": "Maker E", + "model": "Model 19504", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.32153110431308, + 30.627012557148653 + ] + }, + "properties": { + "id": "meter-19505", + "maker": "Maker J", + "model": "Model 19505", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.59766823318254, + 19.424839693084007 + ] + }, + "properties": { + "id": "meter-19506", + "maker": "Maker E", + "model": "Model 19506", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.097989862935684, + 20.87919589030649 + ] + }, + "properties": { + "id": "meter-19507", + "maker": "Maker E", + "model": "Model 19507", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.21974541085455, + 28.098009554302877 + ] + }, + "properties": { + "id": "meter-19508", + "maker": "Maker A", + "model": "Model 19508", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.040060004201095, + 26.114469180634863 + ] + }, + "properties": { + "id": "meter-19509", + "maker": "Maker H", + "model": "Model 19509", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.20039112938112, + 19.943729783562482 + ] + }, + "properties": { + "id": "meter-19510", + "maker": "Maker F", + "model": "Model 19510", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.77837312152442, + 29.39409092762396 + ] + }, + "properties": { + "id": "meter-19511", + "maker": "Maker D", + "model": "Model 19511", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.24063892722629, + 26.3222689279238 + ] + }, + "properties": { + "id": "meter-19512", + "maker": "Maker F", + "model": "Model 19512", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.782313273382, + 19.526889760139877 + ] + }, + "properties": { + "id": "meter-19513", + "maker": "Maker C", + "model": "Model 19513", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.6975961151769, + 29.226301987001577 + ] + }, + "properties": { + "id": "meter-19514", + "maker": "Maker H", + "model": "Model 19514", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.664555716695055, + 28.107437468064326 + ] + }, + "properties": { + "id": "meter-19515", + "maker": "Maker I", + "model": "Model 19515", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.46897049628479, + 25.655944543178567 + ] + }, + "properties": { + "id": "meter-19516", + "maker": "Maker A", + "model": "Model 19516", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.49009371680826, + 28.581604445273413 + ] + }, + "properties": { + "id": "meter-19517", + "maker": "Maker F", + "model": "Model 19517", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.90971286837693, + 19.260068756434958 + ] + }, + "properties": { + "id": "meter-19518", + "maker": "Maker I", + "model": "Model 19518", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.78403476676656, + 21.100045171835625 + ] + }, + "properties": { + "id": "meter-19519", + "maker": "Maker D", + "model": "Model 19519", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.188983285351114, + 17.73687626396123 + ] + }, + "properties": { + "id": "meter-19520", + "maker": "Maker G", + "model": "Model 19520", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.436277007081905, + 20.112392133640274 + ] + }, + "properties": { + "id": "meter-19521", + "maker": "Maker D", + "model": "Model 19521", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.18532843137152, + 29.293824353438588 + ] + }, + "properties": { + "id": "meter-19522", + "maker": "Maker J", + "model": "Model 19522", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.09086491816028, + 23.832585699527794 + ] + }, + "properties": { + "id": "meter-19523", + "maker": "Maker F", + "model": "Model 19523", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.584718012132114, + 21.904958485749642 + ] + }, + "properties": { + "id": "meter-19524", + "maker": "Maker J", + "model": "Model 19524", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.085526673404004, + 18.289954902154598 + ] + }, + "properties": { + "id": "meter-19525", + "maker": "Maker B", + "model": "Model 19525", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.636805654881705, + 22.517749930246783 + ] + }, + "properties": { + "id": "meter-19526", + "maker": "Maker I", + "model": "Model 19526", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.46199420711591, + 24.11252269983005 + ] + }, + "properties": { + "id": "meter-19527", + "maker": "Maker G", + "model": "Model 19527", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.552314823750336, + 27.887951329810495 + ] + }, + "properties": { + "id": "meter-19528", + "maker": "Maker H", + "model": "Model 19528", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.164591414548156, + 24.5829109208723 + ] + }, + "properties": { + "id": "meter-19529", + "maker": "Maker G", + "model": "Model 19529", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.64643290096285, + 19.19746053640622 + ] + }, + "properties": { + "id": "meter-19530", + "maker": "Maker F", + "model": "Model 19530", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.915972767492704, + 19.841339326017827 + ] + }, + "properties": { + "id": "meter-19531", + "maker": "Maker I", + "model": "Model 19531", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.09980732016791, + 27.817039838269885 + ] + }, + "properties": { + "id": "meter-19532", + "maker": "Maker B", + "model": "Model 19532", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.51824795092578, + 22.436480098400587 + ] + }, + "properties": { + "id": "meter-19533", + "maker": "Maker D", + "model": "Model 19533", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.73201027222277, + 31.37666960202678 + ] + }, + "properties": { + "id": "meter-19534", + "maker": "Maker F", + "model": "Model 19534", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.07568914240291, + 18.51792171663622 + ] + }, + "properties": { + "id": "meter-19535", + "maker": "Maker A", + "model": "Model 19535", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.794425526561916, + 25.625518571509396 + ] + }, + "properties": { + "id": "meter-19536", + "maker": "Maker H", + "model": "Model 19536", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.858073816126435, + 28.17366317052567 + ] + }, + "properties": { + "id": "meter-19537", + "maker": "Maker F", + "model": "Model 19537", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.15079374918406, + 22.770178520774376 + ] + }, + "properties": { + "id": "meter-19538", + "maker": "Maker B", + "model": "Model 19538", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.50011055964761, + 25.572445182280347 + ] + }, + "properties": { + "id": "meter-19539", + "maker": "Maker A", + "model": "Model 19539", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.78623248806839, + 25.73128927008093 + ] + }, + "properties": { + "id": "meter-19540", + "maker": "Maker H", + "model": "Model 19540", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.82899704897102, + 18.610386321412957 + ] + }, + "properties": { + "id": "meter-19541", + "maker": "Maker D", + "model": "Model 19541", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.3492663842236, + 19.344760159302393 + ] + }, + "properties": { + "id": "meter-19542", + "maker": "Maker E", + "model": "Model 19542", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.69888014949292, + 24.525197321256208 + ] + }, + "properties": { + "id": "meter-19543", + "maker": "Maker J", + "model": "Model 19543", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.57501609806455, + 22.44911939662265 + ] + }, + "properties": { + "id": "meter-19544", + "maker": "Maker D", + "model": "Model 19544", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.852206645615645, + 22.43726611796609 + ] + }, + "properties": { + "id": "meter-19545", + "maker": "Maker A", + "model": "Model 19545", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.439466522042416, + 28.07598678558761 + ] + }, + "properties": { + "id": "meter-19546", + "maker": "Maker G", + "model": "Model 19546", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.48280112975772, + 21.127845734516864 + ] + }, + "properties": { + "id": "meter-19547", + "maker": "Maker B", + "model": "Model 19547", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.409362005010415, + 31.520034469999153 + ] + }, + "properties": { + "id": "meter-19548", + "maker": "Maker B", + "model": "Model 19548", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.11260592716917, + 29.671692321425404 + ] + }, + "properties": { + "id": "meter-19549", + "maker": "Maker G", + "model": "Model 19549", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.40224010125887, + 22.80212969247736 + ] + }, + "properties": { + "id": "meter-19550", + "maker": "Maker E", + "model": "Model 19550", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.47857288780586, + 27.901477583837572 + ] + }, + "properties": { + "id": "meter-19551", + "maker": "Maker E", + "model": "Model 19551", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.96413314195513, + 21.315956426707565 + ] + }, + "properties": { + "id": "meter-19552", + "maker": "Maker C", + "model": "Model 19552", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.16569855319293, + 27.186638578175668 + ] + }, + "properties": { + "id": "meter-19553", + "maker": "Maker F", + "model": "Model 19553", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.331228627188096, + 26.08067928092776 + ] + }, + "properties": { + "id": "meter-19554", + "maker": "Maker E", + "model": "Model 19554", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.474607272270774, + 30.362115914715403 + ] + }, + "properties": { + "id": "meter-19555", + "maker": "Maker I", + "model": "Model 19555", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.38456570818505, + 30.75669787004473 + ] + }, + "properties": { + "id": "meter-19556", + "maker": "Maker I", + "model": "Model 19556", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.49478561854444, + 21.23108489409401 + ] + }, + "properties": { + "id": "meter-19557", + "maker": "Maker A", + "model": "Model 19557", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.38261729455486, + 22.712879941010634 + ] + }, + "properties": { + "id": "meter-19558", + "maker": "Maker H", + "model": "Model 19558", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.712231299049904, + 24.90489991039679 + ] + }, + "properties": { + "id": "meter-19559", + "maker": "Maker A", + "model": "Model 19559", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.26128182220437, + 26.92858287313227 + ] + }, + "properties": { + "id": "meter-19560", + "maker": "Maker C", + "model": "Model 19560", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.66584411963987, + 26.087839443974282 + ] + }, + "properties": { + "id": "meter-19561", + "maker": "Maker E", + "model": "Model 19561", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.416380627310076, + 29.73729122905015 + ] + }, + "properties": { + "id": "meter-19562", + "maker": "Maker C", + "model": "Model 19562", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.02963186128996, + 24.468678538446984 + ] + }, + "properties": { + "id": "meter-19563", + "maker": "Maker J", + "model": "Model 19563", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.9572005056029, + 25.0421442221704 + ] + }, + "properties": { + "id": "meter-19564", + "maker": "Maker I", + "model": "Model 19564", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.572976462761574, + 24.243861906650352 + ] + }, + "properties": { + "id": "meter-19565", + "maker": "Maker E", + "model": "Model 19565", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.79890723049721, + 22.77605578916149 + ] + }, + "properties": { + "id": "meter-19566", + "maker": "Maker D", + "model": "Model 19566", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.755432317216275, + 25.93689110463225 + ] + }, + "properties": { + "id": "meter-19567", + "maker": "Maker E", + "model": "Model 19567", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.235129320221645, + 28.00322843328405 + ] + }, + "properties": { + "id": "meter-19568", + "maker": "Maker H", + "model": "Model 19568", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.26763793588453, + 28.69468364934835 + ] + }, + "properties": { + "id": "meter-19569", + "maker": "Maker J", + "model": "Model 19569", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.83910590307828, + 28.916364953626083 + ] + }, + "properties": { + "id": "meter-19570", + "maker": "Maker F", + "model": "Model 19570", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.95883782836998, + 25.397239405129362 + ] + }, + "properties": { + "id": "meter-19571", + "maker": "Maker E", + "model": "Model 19571", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.228769690990816, + 21.084952598991606 + ] + }, + "properties": { + "id": "meter-19572", + "maker": "Maker A", + "model": "Model 19572", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.60536353918516, + 22.731830819073974 + ] + }, + "properties": { + "id": "meter-19573", + "maker": "Maker F", + "model": "Model 19573", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.81998516913226, + 21.849935731691044 + ] + }, + "properties": { + "id": "meter-19574", + "maker": "Maker A", + "model": "Model 19574", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.722439000791326, + 26.678267005039004 + ] + }, + "properties": { + "id": "meter-19575", + "maker": "Maker I", + "model": "Model 19575", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.22759906408636, + 27.990700656295104 + ] + }, + "properties": { + "id": "meter-19576", + "maker": "Maker E", + "model": "Model 19576", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.14839928238181, + 30.161334706494614 + ] + }, + "properties": { + "id": "meter-19577", + "maker": "Maker F", + "model": "Model 19577", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.718722645874564, + 27.81976149647848 + ] + }, + "properties": { + "id": "meter-19578", + "maker": "Maker J", + "model": "Model 19578", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.102204212789616, + 22.017276023961294 + ] + }, + "properties": { + "id": "meter-19579", + "maker": "Maker E", + "model": "Model 19579", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.4387494909207, + 19.93775556588966 + ] + }, + "properties": { + "id": "meter-19580", + "maker": "Maker I", + "model": "Model 19580", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.60788481459211, + 19.059494222896966 + ] + }, + "properties": { + "id": "meter-19581", + "maker": "Maker I", + "model": "Model 19581", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.365312355911385, + 27.235349222152486 + ] + }, + "properties": { + "id": "meter-19582", + "maker": "Maker G", + "model": "Model 19582", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.467789670741155, + 20.86048442779952 + ] + }, + "properties": { + "id": "meter-19583", + "maker": "Maker E", + "model": "Model 19583", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.73515056933951, + 28.514104905538563 + ] + }, + "properties": { + "id": "meter-19584", + "maker": "Maker A", + "model": "Model 19584", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.336938868315514, + 22.862757964301835 + ] + }, + "properties": { + "id": "meter-19585", + "maker": "Maker C", + "model": "Model 19585", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.15471103684934, + 22.414307886926764 + ] + }, + "properties": { + "id": "meter-19586", + "maker": "Maker E", + "model": "Model 19586", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.11144940988437, + 19.88971851338161 + ] + }, + "properties": { + "id": "meter-19587", + "maker": "Maker A", + "model": "Model 19587", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.75740746114355, + 23.27174012598669 + ] + }, + "properties": { + "id": "meter-19588", + "maker": "Maker C", + "model": "Model 19588", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.134801408376894, + 26.050485634849796 + ] + }, + "properties": { + "id": "meter-19589", + "maker": "Maker E", + "model": "Model 19589", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.11174859621865, + 27.607082352047247 + ] + }, + "properties": { + "id": "meter-19590", + "maker": "Maker J", + "model": "Model 19590", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.953579753261025, + 23.960084856154126 + ] + }, + "properties": { + "id": "meter-19591", + "maker": "Maker I", + "model": "Model 19591", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.200216040027954, + 28.131182343563886 + ] + }, + "properties": { + "id": "meter-19592", + "maker": "Maker A", + "model": "Model 19592", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.17132679109359, + 23.602496161750295 + ] + }, + "properties": { + "id": "meter-19593", + "maker": "Maker J", + "model": "Model 19593", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.04702154513048, + 28.103062910070143 + ] + }, + "properties": { + "id": "meter-19594", + "maker": "Maker J", + "model": "Model 19594", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.18755672457788, + 25.071324957850308 + ] + }, + "properties": { + "id": "meter-19595", + "maker": "Maker G", + "model": "Model 19595", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.425133134309036, + 19.316944403136805 + ] + }, + "properties": { + "id": "meter-19596", + "maker": "Maker F", + "model": "Model 19596", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.20124463937745, + 24.743796970310456 + ] + }, + "properties": { + "id": "meter-19597", + "maker": "Maker F", + "model": "Model 19597", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.36518879228289, + 20.584468143079874 + ] + }, + "properties": { + "id": "meter-19598", + "maker": "Maker I", + "model": "Model 19598", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.64611558383657, + 21.754093684402836 + ] + }, + "properties": { + "id": "meter-19599", + "maker": "Maker A", + "model": "Model 19599", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.11864525542481, + 27.021589681674183 + ] + }, + "properties": { + "id": "meter-19600", + "maker": "Maker A", + "model": "Model 19600", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.38588841141334, + 23.076130038277203 + ] + }, + "properties": { + "id": "meter-19601", + "maker": "Maker G", + "model": "Model 19601", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.09746618591634, + 19.969545357369604 + ] + }, + "properties": { + "id": "meter-19602", + "maker": "Maker I", + "model": "Model 19602", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.51601560401039, + 28.084924655184558 + ] + }, + "properties": { + "id": "meter-19603", + "maker": "Maker J", + "model": "Model 19603", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.451801594936846, + 17.369778937206842 + ] + }, + "properties": { + "id": "meter-19604", + "maker": "Maker C", + "model": "Model 19604", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.751983871397336, + 18.442709607715106 + ] + }, + "properties": { + "id": "meter-19605", + "maker": "Maker F", + "model": "Model 19605", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.74923947118707, + 24.91074171267243 + ] + }, + "properties": { + "id": "meter-19606", + "maker": "Maker D", + "model": "Model 19606", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.3176953132252, + 23.48247056962224 + ] + }, + "properties": { + "id": "meter-19607", + "maker": "Maker H", + "model": "Model 19607", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.02082805268703, + 28.64945505318987 + ] + }, + "properties": { + "id": "meter-19608", + "maker": "Maker D", + "model": "Model 19608", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.62129174608326, + 25.114813821961736 + ] + }, + "properties": { + "id": "meter-19609", + "maker": "Maker G", + "model": "Model 19609", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.28145892810538, + 19.5488715988028 + ] + }, + "properties": { + "id": "meter-19610", + "maker": "Maker G", + "model": "Model 19610", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.753322793957416, + 20.447495339888583 + ] + }, + "properties": { + "id": "meter-19611", + "maker": "Maker H", + "model": "Model 19611", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.46054628962719, + 24.344068658612755 + ] + }, + "properties": { + "id": "meter-19612", + "maker": "Maker J", + "model": "Model 19612", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.95999984589858, + 20.027613893739133 + ] + }, + "properties": { + "id": "meter-19613", + "maker": "Maker E", + "model": "Model 19613", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.65647488482516, + 27.190658802864057 + ] + }, + "properties": { + "id": "meter-19614", + "maker": "Maker D", + "model": "Model 19614", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.0506694978373, + 24.88584740604632 + ] + }, + "properties": { + "id": "meter-19615", + "maker": "Maker B", + "model": "Model 19615", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.11195855111254, + 21.29046732679503 + ] + }, + "properties": { + "id": "meter-19616", + "maker": "Maker C", + "model": "Model 19616", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.80712839485777, + 26.006006028400478 + ] + }, + "properties": { + "id": "meter-19617", + "maker": "Maker E", + "model": "Model 19617", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.08188646547834, + 19.42412280791993 + ] + }, + "properties": { + "id": "meter-19618", + "maker": "Maker B", + "model": "Model 19618", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.99779309038328, + 21.938986703928528 + ] + }, + "properties": { + "id": "meter-19619", + "maker": "Maker C", + "model": "Model 19619", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.140365896015844, + 27.656010532206878 + ] + }, + "properties": { + "id": "meter-19620", + "maker": "Maker D", + "model": "Model 19620", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.749698246712114, + 25.652322710018215 + ] + }, + "properties": { + "id": "meter-19621", + "maker": "Maker A", + "model": "Model 19621", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.03915955077159, + 27.316934841977897 + ] + }, + "properties": { + "id": "meter-19622", + "maker": "Maker H", + "model": "Model 19622", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.048817982367055, + 21.850358716078098 + ] + }, + "properties": { + "id": "meter-19623", + "maker": "Maker A", + "model": "Model 19623", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.67343339852299, + 25.705672425778065 + ] + }, + "properties": { + "id": "meter-19624", + "maker": "Maker B", + "model": "Model 19624", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.743233603104436, + 24.106444148697488 + ] + }, + "properties": { + "id": "meter-19625", + "maker": "Maker D", + "model": "Model 19625", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.81746021622111, + 26.907984175161985 + ] + }, + "properties": { + "id": "meter-19626", + "maker": "Maker H", + "model": "Model 19626", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.324999254035696, + 27.887101050137897 + ] + }, + "properties": { + "id": "meter-19627", + "maker": "Maker I", + "model": "Model 19627", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.82981861576421, + 20.441517508251607 + ] + }, + "properties": { + "id": "meter-19628", + "maker": "Maker H", + "model": "Model 19628", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.05990404553704, + 19.839257623196673 + ] + }, + "properties": { + "id": "meter-19629", + "maker": "Maker D", + "model": "Model 19629", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.313994198270834, + 25.634728299549696 + ] + }, + "properties": { + "id": "meter-19630", + "maker": "Maker J", + "model": "Model 19630", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.33071081819625, + 27.779083456962287 + ] + }, + "properties": { + "id": "meter-19631", + "maker": "Maker B", + "model": "Model 19631", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.18462960785494, + 23.02444156877351 + ] + }, + "properties": { + "id": "meter-19632", + "maker": "Maker I", + "model": "Model 19632", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.388079581998596, + 19.540615382858704 + ] + }, + "properties": { + "id": "meter-19633", + "maker": "Maker B", + "model": "Model 19633", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.43311576391103, + 25.704938427569225 + ] + }, + "properties": { + "id": "meter-19634", + "maker": "Maker B", + "model": "Model 19634", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.32727293662468, + 20.57257496744495 + ] + }, + "properties": { + "id": "meter-19635", + "maker": "Maker A", + "model": "Model 19635", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.7005415453342, + 22.704284557769903 + ] + }, + "properties": { + "id": "meter-19636", + "maker": "Maker I", + "model": "Model 19636", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.79659958835541, + 25.850659181672167 + ] + }, + "properties": { + "id": "meter-19637", + "maker": "Maker D", + "model": "Model 19637", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.1206822441776, + 25.66379076518903 + ] + }, + "properties": { + "id": "meter-19638", + "maker": "Maker C", + "model": "Model 19638", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.38729782592059, + 20.899884169512454 + ] + }, + "properties": { + "id": "meter-19639", + "maker": "Maker D", + "model": "Model 19639", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.76626234034731, + 25.006107650405763 + ] + }, + "properties": { + "id": "meter-19640", + "maker": "Maker J", + "model": "Model 19640", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.50409661869767, + 20.385464458355735 + ] + }, + "properties": { + "id": "meter-19641", + "maker": "Maker A", + "model": "Model 19641", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.33695405236067, + 23.114132502352085 + ] + }, + "properties": { + "id": "meter-19642", + "maker": "Maker F", + "model": "Model 19642", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.732389056271586, + 20.11277226918312 + ] + }, + "properties": { + "id": "meter-19643", + "maker": "Maker B", + "model": "Model 19643", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.67448083992238, + 27.192965776174084 + ] + }, + "properties": { + "id": "meter-19644", + "maker": "Maker D", + "model": "Model 19644", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.448694807996425, + 24.608864763429267 + ] + }, + "properties": { + "id": "meter-19645", + "maker": "Maker I", + "model": "Model 19645", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.14114716457109, + 20.171665896535345 + ] + }, + "properties": { + "id": "meter-19646", + "maker": "Maker C", + "model": "Model 19646", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.10886905826683, + 26.190952347137475 + ] + }, + "properties": { + "id": "meter-19647", + "maker": "Maker E", + "model": "Model 19647", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.622851377082725, + 20.76065341918847 + ] + }, + "properties": { + "id": "meter-19648", + "maker": "Maker I", + "model": "Model 19648", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.89727122814211, + 23.984838655706287 + ] + }, + "properties": { + "id": "meter-19649", + "maker": "Maker E", + "model": "Model 19649", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.79455150741327, + 21.4475518715562 + ] + }, + "properties": { + "id": "meter-19650", + "maker": "Maker A", + "model": "Model 19650", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.07621890791458, + 20.12410521039473 + ] + }, + "properties": { + "id": "meter-19651", + "maker": "Maker J", + "model": "Model 19651", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.976257428522956, + 17.78856478810656 + ] + }, + "properties": { + "id": "meter-19652", + "maker": "Maker G", + "model": "Model 19652", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9107010486847, + 26.107595091175533 + ] + }, + "properties": { + "id": "meter-19653", + "maker": "Maker B", + "model": "Model 19653", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.95282649244067, + 25.259805209353107 + ] + }, + "properties": { + "id": "meter-19654", + "maker": "Maker D", + "model": "Model 19654", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.54113872146527, + 17.611918023668395 + ] + }, + "properties": { + "id": "meter-19655", + "maker": "Maker G", + "model": "Model 19655", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.75679792382775, + 25.37598649621896 + ] + }, + "properties": { + "id": "meter-19656", + "maker": "Maker A", + "model": "Model 19656", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.52025843079252, + 18.219783889520517 + ] + }, + "properties": { + "id": "meter-19657", + "maker": "Maker D", + "model": "Model 19657", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.20096885131542, + 24.136887794166363 + ] + }, + "properties": { + "id": "meter-19658", + "maker": "Maker F", + "model": "Model 19658", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.17582854530975, + 21.979377963471123 + ] + }, + "properties": { + "id": "meter-19659", + "maker": "Maker I", + "model": "Model 19659", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.87578285414371, + 22.610996769505494 + ] + }, + "properties": { + "id": "meter-19660", + "maker": "Maker J", + "model": "Model 19660", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.54942092191293, + 25.126115572300982 + ] + }, + "properties": { + "id": "meter-19661", + "maker": "Maker G", + "model": "Model 19661", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.4665800103688, + 23.84101180634755 + ] + }, + "properties": { + "id": "meter-19662", + "maker": "Maker D", + "model": "Model 19662", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.03253208383307, + 25.851997380286353 + ] + }, + "properties": { + "id": "meter-19663", + "maker": "Maker I", + "model": "Model 19663", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.10661623248262, + 23.31288694951776 + ] + }, + "properties": { + "id": "meter-19664", + "maker": "Maker C", + "model": "Model 19664", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.15207153506314, + 26.994217894481878 + ] + }, + "properties": { + "id": "meter-19665", + "maker": "Maker B", + "model": "Model 19665", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.51634587145766, + 19.497575552951524 + ] + }, + "properties": { + "id": "meter-19666", + "maker": "Maker I", + "model": "Model 19666", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.69355687642087, + 22.72038514346421 + ] + }, + "properties": { + "id": "meter-19667", + "maker": "Maker H", + "model": "Model 19667", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.67115657915859, + 26.12841751388812 + ] + }, + "properties": { + "id": "meter-19668", + "maker": "Maker D", + "model": "Model 19668", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.81627143181375, + 29.674508407439617 + ] + }, + "properties": { + "id": "meter-19669", + "maker": "Maker E", + "model": "Model 19669", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.31411045949655, + 21.2685455713463 + ] + }, + "properties": { + "id": "meter-19670", + "maker": "Maker E", + "model": "Model 19670", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.34464620220762, + 22.935657503585745 + ] + }, + "properties": { + "id": "meter-19671", + "maker": "Maker C", + "model": "Model 19671", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.90537915513394, + 28.68904126529543 + ] + }, + "properties": { + "id": "meter-19672", + "maker": "Maker H", + "model": "Model 19672", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.384226880515655, + 19.776358189326395 + ] + }, + "properties": { + "id": "meter-19673", + "maker": "Maker A", + "model": "Model 19673", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.34030889936079, + 29.69271483271033 + ] + }, + "properties": { + "id": "meter-19674", + "maker": "Maker A", + "model": "Model 19674", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.79246056066697, + 20.389530394679436 + ] + }, + "properties": { + "id": "meter-19675", + "maker": "Maker B", + "model": "Model 19675", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.49703049826513, + 18.648032357939485 + ] + }, + "properties": { + "id": "meter-19676", + "maker": "Maker B", + "model": "Model 19676", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.57705462845297, + 22.777118099107682 + ] + }, + "properties": { + "id": "meter-19677", + "maker": "Maker B", + "model": "Model 19677", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.64109935727346, + 20.212728389349135 + ] + }, + "properties": { + "id": "meter-19678", + "maker": "Maker J", + "model": "Model 19678", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.50516251420657, + 18.54723659542425 + ] + }, + "properties": { + "id": "meter-19679", + "maker": "Maker C", + "model": "Model 19679", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.16736602224141, + 21.539519948838752 + ] + }, + "properties": { + "id": "meter-19680", + "maker": "Maker J", + "model": "Model 19680", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.746736735545, + 28.543648823465276 + ] + }, + "properties": { + "id": "meter-19681", + "maker": "Maker H", + "model": "Model 19681", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.520454425139185, + 27.390252937214772 + ] + }, + "properties": { + "id": "meter-19682", + "maker": "Maker D", + "model": "Model 19682", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.21770745400577, + 27.249233594055084 + ] + }, + "properties": { + "id": "meter-19683", + "maker": "Maker J", + "model": "Model 19683", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.83194936918119, + 20.614973528610854 + ] + }, + "properties": { + "id": "meter-19684", + "maker": "Maker J", + "model": "Model 19684", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.68622255174445, + 31.018020109590516 + ] + }, + "properties": { + "id": "meter-19685", + "maker": "Maker G", + "model": "Model 19685", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.255051568534455, + 22.864344956400615 + ] + }, + "properties": { + "id": "meter-19686", + "maker": "Maker I", + "model": "Model 19686", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.92883372080163, + 21.22023050526138 + ] + }, + "properties": { + "id": "meter-19687", + "maker": "Maker J", + "model": "Model 19687", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.894903249360915, + 23.37864894926797 + ] + }, + "properties": { + "id": "meter-19688", + "maker": "Maker D", + "model": "Model 19688", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.97960905252276, + 25.070655315004913 + ] + }, + "properties": { + "id": "meter-19689", + "maker": "Maker D", + "model": "Model 19689", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.14392387632241, + 27.913459373696522 + ] + }, + "properties": { + "id": "meter-19690", + "maker": "Maker F", + "model": "Model 19690", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.65442842784117, + 29.341427907843453 + ] + }, + "properties": { + "id": "meter-19691", + "maker": "Maker E", + "model": "Model 19691", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.69108889444271, + 26.851900331404842 + ] + }, + "properties": { + "id": "meter-19692", + "maker": "Maker J", + "model": "Model 19692", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.115817540088614, + 18.718870920307573 + ] + }, + "properties": { + "id": "meter-19693", + "maker": "Maker G", + "model": "Model 19693", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.93152790360081, + 19.17909485564058 + ] + }, + "properties": { + "id": "meter-19694", + "maker": "Maker J", + "model": "Model 19694", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.939894836625754, + 23.855343815928464 + ] + }, + "properties": { + "id": "meter-19695", + "maker": "Maker D", + "model": "Model 19695", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.367782783220036, + 29.4146305415325 + ] + }, + "properties": { + "id": "meter-19696", + "maker": "Maker J", + "model": "Model 19696", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.190295256511064, + 26.284024937764936 + ] + }, + "properties": { + "id": "meter-19697", + "maker": "Maker I", + "model": "Model 19697", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.70355614504927, + 19.293899644118657 + ] + }, + "properties": { + "id": "meter-19698", + "maker": "Maker H", + "model": "Model 19698", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.34281767156564, + 28.98160570988069 + ] + }, + "properties": { + "id": "meter-19699", + "maker": "Maker F", + "model": "Model 19699", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.737823458841774, + 27.790289408262908 + ] + }, + "properties": { + "id": "meter-19700", + "maker": "Maker C", + "model": "Model 19700", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.00596472710486, + 21.739468746291852 + ] + }, + "properties": { + "id": "meter-19701", + "maker": "Maker D", + "model": "Model 19701", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.25081241581694, + 19.690067164287978 + ] + }, + "properties": { + "id": "meter-19702", + "maker": "Maker J", + "model": "Model 19702", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.02538965753085, + 24.602897010468197 + ] + }, + "properties": { + "id": "meter-19703", + "maker": "Maker H", + "model": "Model 19703", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.86557229791892, + 18.86710443220172 + ] + }, + "properties": { + "id": "meter-19704", + "maker": "Maker F", + "model": "Model 19704", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.697533569137235, + 24.169638312454005 + ] + }, + "properties": { + "id": "meter-19705", + "maker": "Maker I", + "model": "Model 19705", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.87972014330062, + 28.72194247447887 + ] + }, + "properties": { + "id": "meter-19706", + "maker": "Maker J", + "model": "Model 19706", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.228661384900796, + 28.76060392089044 + ] + }, + "properties": { + "id": "meter-19707", + "maker": "Maker F", + "model": "Model 19707", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.0941715070645, + 22.422716854986447 + ] + }, + "properties": { + "id": "meter-19708", + "maker": "Maker H", + "model": "Model 19708", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.00411854891779, + 22.247424168511053 + ] + }, + "properties": { + "id": "meter-19709", + "maker": "Maker D", + "model": "Model 19709", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.828804464179385, + 19.75982182707324 + ] + }, + "properties": { + "id": "meter-19710", + "maker": "Maker F", + "model": "Model 19710", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.33788837605263, + 18.73475727216194 + ] + }, + "properties": { + "id": "meter-19711", + "maker": "Maker A", + "model": "Model 19711", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.93357348509555, + 20.0506188453846 + ] + }, + "properties": { + "id": "meter-19712", + "maker": "Maker D", + "model": "Model 19712", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.16493123619745, + 24.72326044211215 + ] + }, + "properties": { + "id": "meter-19713", + "maker": "Maker F", + "model": "Model 19713", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.39290495272227, + 20.64624881139559 + ] + }, + "properties": { + "id": "meter-19714", + "maker": "Maker A", + "model": "Model 19714", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.93953717713376, + 31.1376657922661 + ] + }, + "properties": { + "id": "meter-19715", + "maker": "Maker H", + "model": "Model 19715", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.76012709767761, + 26.15958457570839 + ] + }, + "properties": { + "id": "meter-19716", + "maker": "Maker J", + "model": "Model 19716", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.72239762688432, + 23.6717451649074 + ] + }, + "properties": { + "id": "meter-19717", + "maker": "Maker H", + "model": "Model 19717", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.40109609193725, + 23.71240142327232 + ] + }, + "properties": { + "id": "meter-19718", + "maker": "Maker G", + "model": "Model 19718", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.73206970933564, + 26.73021322632775 + ] + }, + "properties": { + "id": "meter-19719", + "maker": "Maker E", + "model": "Model 19719", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.40136591362301, + 23.27669335682269 + ] + }, + "properties": { + "id": "meter-19720", + "maker": "Maker E", + "model": "Model 19720", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.10614562892078, + 21.768712676799474 + ] + }, + "properties": { + "id": "meter-19721", + "maker": "Maker D", + "model": "Model 19721", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.61366389474402, + 20.86602799884633 + ] + }, + "properties": { + "id": "meter-19722", + "maker": "Maker H", + "model": "Model 19722", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.64331372112573, + 24.110588955016382 + ] + }, + "properties": { + "id": "meter-19723", + "maker": "Maker D", + "model": "Model 19723", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.15209875252984, + 29.86285677488462 + ] + }, + "properties": { + "id": "meter-19724", + "maker": "Maker I", + "model": "Model 19724", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.33438543126432, + 28.829666583327118 + ] + }, + "properties": { + "id": "meter-19725", + "maker": "Maker A", + "model": "Model 19725", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.40952012689721, + 20.948481265727985 + ] + }, + "properties": { + "id": "meter-19726", + "maker": "Maker E", + "model": "Model 19726", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.285643703388565, + 20.996212231339666 + ] + }, + "properties": { + "id": "meter-19727", + "maker": "Maker D", + "model": "Model 19727", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.26169690285115, + 19.801808926466677 + ] + }, + "properties": { + "id": "meter-19728", + "maker": "Maker D", + "model": "Model 19728", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.77437913407055, + 27.356206893152162 + ] + }, + "properties": { + "id": "meter-19729", + "maker": "Maker B", + "model": "Model 19729", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.89255020555076, + 19.518602600771597 + ] + }, + "properties": { + "id": "meter-19730", + "maker": "Maker G", + "model": "Model 19730", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.822766855704636, + 28.320061074694948 + ] + }, + "properties": { + "id": "meter-19731", + "maker": "Maker E", + "model": "Model 19731", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.995653869341275, + 29.654158937741922 + ] + }, + "properties": { + "id": "meter-19732", + "maker": "Maker D", + "model": "Model 19732", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.552130938109606, + 22.21075365639213 + ] + }, + "properties": { + "id": "meter-19733", + "maker": "Maker F", + "model": "Model 19733", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.52485029827773, + 19.250101175266714 + ] + }, + "properties": { + "id": "meter-19734", + "maker": "Maker B", + "model": "Model 19734", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.50730996831504, + 21.270867510956855 + ] + }, + "properties": { + "id": "meter-19735", + "maker": "Maker E", + "model": "Model 19735", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.5433957922333, + 20.23881244020578 + ] + }, + "properties": { + "id": "meter-19736", + "maker": "Maker D", + "model": "Model 19736", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.75260061007031, + 24.88045457173966 + ] + }, + "properties": { + "id": "meter-19737", + "maker": "Maker B", + "model": "Model 19737", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.293058048185614, + 27.82875057782355 + ] + }, + "properties": { + "id": "meter-19738", + "maker": "Maker B", + "model": "Model 19738", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.10391295406402, + 29.25789356111001 + ] + }, + "properties": { + "id": "meter-19739", + "maker": "Maker F", + "model": "Model 19739", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.246064477522765, + 28.636351868525082 + ] + }, + "properties": { + "id": "meter-19740", + "maker": "Maker I", + "model": "Model 19740", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.3160948755488, + 27.22126016803466 + ] + }, + "properties": { + "id": "meter-19741", + "maker": "Maker A", + "model": "Model 19741", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.0649118301131, + 22.625378262302156 + ] + }, + "properties": { + "id": "meter-19742", + "maker": "Maker J", + "model": "Model 19742", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.07949020639925, + 28.530836952929448 + ] + }, + "properties": { + "id": "meter-19743", + "maker": "Maker G", + "model": "Model 19743", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.87473941487094, + 29.09819520537792 + ] + }, + "properties": { + "id": "meter-19744", + "maker": "Maker I", + "model": "Model 19744", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.083196244216154, + 30.19705747435718 + ] + }, + "properties": { + "id": "meter-19745", + "maker": "Maker G", + "model": "Model 19745", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.40003343235462, + 26.489119848976387 + ] + }, + "properties": { + "id": "meter-19746", + "maker": "Maker C", + "model": "Model 19746", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.6055693218545, + 25.83551888139942 + ] + }, + "properties": { + "id": "meter-19747", + "maker": "Maker G", + "model": "Model 19747", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.37884331123449, + 21.202425174193785 + ] + }, + "properties": { + "id": "meter-19748", + "maker": "Maker J", + "model": "Model 19748", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.834257812851725, + 23.63599191593703 + ] + }, + "properties": { + "id": "meter-19749", + "maker": "Maker I", + "model": "Model 19749", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.69879031422842, + 21.56922400649914 + ] + }, + "properties": { + "id": "meter-19750", + "maker": "Maker I", + "model": "Model 19750", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.3975478378465, + 27.861897232284953 + ] + }, + "properties": { + "id": "meter-19751", + "maker": "Maker F", + "model": "Model 19751", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.04593902161386, + 26.986735602046988 + ] + }, + "properties": { + "id": "meter-19752", + "maker": "Maker B", + "model": "Model 19752", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.06666320104293, + 27.32940168868938 + ] + }, + "properties": { + "id": "meter-19753", + "maker": "Maker I", + "model": "Model 19753", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.45926608558825, + 23.683588442292283 + ] + }, + "properties": { + "id": "meter-19754", + "maker": "Maker E", + "model": "Model 19754", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.79578232278948, + 21.258749713214193 + ] + }, + "properties": { + "id": "meter-19755", + "maker": "Maker B", + "model": "Model 19755", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.818484210130705, + 21.667727062538418 + ] + }, + "properties": { + "id": "meter-19756", + "maker": "Maker H", + "model": "Model 19756", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.241671229386945, + 17.41413753833665 + ] + }, + "properties": { + "id": "meter-19757", + "maker": "Maker F", + "model": "Model 19757", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.425380571136465, + 22.894888891677024 + ] + }, + "properties": { + "id": "meter-19758", + "maker": "Maker G", + "model": "Model 19758", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.45128633789545, + 21.611594261907268 + ] + }, + "properties": { + "id": "meter-19759", + "maker": "Maker D", + "model": "Model 19759", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.311907439903095, + 25.69620543887207 + ] + }, + "properties": { + "id": "meter-19760", + "maker": "Maker D", + "model": "Model 19760", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.66508195604075, + 20.43747743450718 + ] + }, + "properties": { + "id": "meter-19761", + "maker": "Maker B", + "model": "Model 19761", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.898403657991, + 23.672221593595147 + ] + }, + "properties": { + "id": "meter-19762", + "maker": "Maker A", + "model": "Model 19762", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.01675480903013, + 19.464501372680186 + ] + }, + "properties": { + "id": "meter-19763", + "maker": "Maker A", + "model": "Model 19763", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.94308790005549, + 24.86868330023283 + ] + }, + "properties": { + "id": "meter-19764", + "maker": "Maker F", + "model": "Model 19764", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.28787544528158, + 29.45663864684762 + ] + }, + "properties": { + "id": "meter-19765", + "maker": "Maker G", + "model": "Model 19765", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.73411294562685, + 21.20619139804345 + ] + }, + "properties": { + "id": "meter-19766", + "maker": "Maker C", + "model": "Model 19766", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.702872053732065, + 25.301683348953784 + ] + }, + "properties": { + "id": "meter-19767", + "maker": "Maker G", + "model": "Model 19767", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.28148834783265, + 20.925128889068738 + ] + }, + "properties": { + "id": "meter-19768", + "maker": "Maker E", + "model": "Model 19768", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.27606268102468, + 21.902585532531404 + ] + }, + "properties": { + "id": "meter-19769", + "maker": "Maker C", + "model": "Model 19769", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.18916924094419, + 24.217640169645154 + ] + }, + "properties": { + "id": "meter-19770", + "maker": "Maker F", + "model": "Model 19770", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.76604206855629, + 28.25642724325268 + ] + }, + "properties": { + "id": "meter-19771", + "maker": "Maker C", + "model": "Model 19771", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.34879929894312, + 18.7472307187692 + ] + }, + "properties": { + "id": "meter-19772", + "maker": "Maker F", + "model": "Model 19772", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.84563281003049, + 18.444966410917704 + ] + }, + "properties": { + "id": "meter-19773", + "maker": "Maker C", + "model": "Model 19773", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.082366841586456, + 20.747857258566594 + ] + }, + "properties": { + "id": "meter-19774", + "maker": "Maker B", + "model": "Model 19774", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.21451069941534, + 18.929637268575696 + ] + }, + "properties": { + "id": "meter-19775", + "maker": "Maker J", + "model": "Model 19775", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.84729015927816, + 30.422614804958794 + ] + }, + "properties": { + "id": "meter-19776", + "maker": "Maker I", + "model": "Model 19776", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.78439940957549, + 19.883293274737632 + ] + }, + "properties": { + "id": "meter-19777", + "maker": "Maker H", + "model": "Model 19777", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.929991858064376, + 24.54106830108162 + ] + }, + "properties": { + "id": "meter-19778", + "maker": "Maker F", + "model": "Model 19778", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.43500404695459, + 26.85400061997671 + ] + }, + "properties": { + "id": "meter-19779", + "maker": "Maker J", + "model": "Model 19779", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.126731726727535, + 29.82956903059627 + ] + }, + "properties": { + "id": "meter-19780", + "maker": "Maker I", + "model": "Model 19780", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.73938222741181, + 29.39377400784412 + ] + }, + "properties": { + "id": "meter-19781", + "maker": "Maker A", + "model": "Model 19781", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.57387592621766, + 28.716001537636902 + ] + }, + "properties": { + "id": "meter-19782", + "maker": "Maker J", + "model": "Model 19782", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.406827770790784, + 25.520946133931638 + ] + }, + "properties": { + "id": "meter-19783", + "maker": "Maker A", + "model": "Model 19783", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.71354214986762, + 18.284781572071008 + ] + }, + "properties": { + "id": "meter-19784", + "maker": "Maker E", + "model": "Model 19784", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.249249959808395, + 24.90378192149799 + ] + }, + "properties": { + "id": "meter-19785", + "maker": "Maker A", + "model": "Model 19785", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.62172341121655, + 28.926565163119868 + ] + }, + "properties": { + "id": "meter-19786", + "maker": "Maker D", + "model": "Model 19786", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.90240433559828, + 28.724326587347644 + ] + }, + "properties": { + "id": "meter-19787", + "maker": "Maker C", + "model": "Model 19787", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.697953632184365, + 20.73367562175782 + ] + }, + "properties": { + "id": "meter-19788", + "maker": "Maker D", + "model": "Model 19788", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.99147285075252, + 20.146265226948145 + ] + }, + "properties": { + "id": "meter-19789", + "maker": "Maker F", + "model": "Model 19789", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.73379648751716, + 19.75240369794267 + ] + }, + "properties": { + "id": "meter-19790", + "maker": "Maker G", + "model": "Model 19790", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.17781267823266, + 22.156862025910918 + ] + }, + "properties": { + "id": "meter-19791", + "maker": "Maker G", + "model": "Model 19791", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.042253329962456, + 23.747321485477375 + ] + }, + "properties": { + "id": "meter-19792", + "maker": "Maker J", + "model": "Model 19792", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.99948086244571, + 20.69889879075021 + ] + }, + "properties": { + "id": "meter-19793", + "maker": "Maker F", + "model": "Model 19793", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.800823639914576, + 21.11603466900296 + ] + }, + "properties": { + "id": "meter-19794", + "maker": "Maker F", + "model": "Model 19794", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.47602784927476, + 25.992463750556304 + ] + }, + "properties": { + "id": "meter-19795", + "maker": "Maker G", + "model": "Model 19795", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.683366733840835, + 28.82208051059409 + ] + }, + "properties": { + "id": "meter-19796", + "maker": "Maker E", + "model": "Model 19796", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.807900458096256, + 19.91871874372317 + ] + }, + "properties": { + "id": "meter-19797", + "maker": "Maker C", + "model": "Model 19797", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.91795881218983, + 27.41241480000266 + ] + }, + "properties": { + "id": "meter-19798", + "maker": "Maker H", + "model": "Model 19798", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.479797768865254, + 26.935618963089315 + ] + }, + "properties": { + "id": "meter-19799", + "maker": "Maker G", + "model": "Model 19799", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.781263867327496, + 28.24235576771176 + ] + }, + "properties": { + "id": "meter-19800", + "maker": "Maker I", + "model": "Model 19800", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.215626975077434, + 27.5124963374533 + ] + }, + "properties": { + "id": "meter-19801", + "maker": "Maker A", + "model": "Model 19801", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.24201075496942, + 21.833169355700235 + ] + }, + "properties": { + "id": "meter-19802", + "maker": "Maker C", + "model": "Model 19802", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.147406432603994, + 24.758121503582895 + ] + }, + "properties": { + "id": "meter-19803", + "maker": "Maker I", + "model": "Model 19803", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.44715004272875, + 27.883658430967103 + ] + }, + "properties": { + "id": "meter-19804", + "maker": "Maker I", + "model": "Model 19804", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.24007574964907, + 23.466901353625353 + ] + }, + "properties": { + "id": "meter-19805", + "maker": "Maker I", + "model": "Model 19805", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.41720026017728, + 19.116750495734436 + ] + }, + "properties": { + "id": "meter-19806", + "maker": "Maker E", + "model": "Model 19806", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.36781094409027, + 27.047870273770986 + ] + }, + "properties": { + "id": "meter-19807", + "maker": "Maker D", + "model": "Model 19807", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.049245472994485, + 19.46329449255568 + ] + }, + "properties": { + "id": "meter-19808", + "maker": "Maker H", + "model": "Model 19808", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.767626529601976, + 19.234653043619538 + ] + }, + "properties": { + "id": "meter-19809", + "maker": "Maker B", + "model": "Model 19809", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.31858110377303, + 17.740235443812683 + ] + }, + "properties": { + "id": "meter-19810", + "maker": "Maker C", + "model": "Model 19810", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.36619770318463, + 23.752965593036787 + ] + }, + "properties": { + "id": "meter-19811", + "maker": "Maker B", + "model": "Model 19811", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.85472130437657, + 28.360839366088452 + ] + }, + "properties": { + "id": "meter-19812", + "maker": "Maker I", + "model": "Model 19812", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.39080779826358, + 21.81134538682649 + ] + }, + "properties": { + "id": "meter-19813", + "maker": "Maker C", + "model": "Model 19813", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.90868499233881, + 26.942390776795254 + ] + }, + "properties": { + "id": "meter-19814", + "maker": "Maker I", + "model": "Model 19814", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.773185092676535, + 17.610878517199417 + ] + }, + "properties": { + "id": "meter-19815", + "maker": "Maker I", + "model": "Model 19815", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.43154588136454, + 19.621729847200548 + ] + }, + "properties": { + "id": "meter-19816", + "maker": "Maker C", + "model": "Model 19816", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.830444817706294, + 26.8720471871752 + ] + }, + "properties": { + "id": "meter-19817", + "maker": "Maker F", + "model": "Model 19817", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.28213796373567, + 24.6838441498855 + ] + }, + "properties": { + "id": "meter-19818", + "maker": "Maker G", + "model": "Model 19818", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.658430210065774, + 26.518320381120798 + ] + }, + "properties": { + "id": "meter-19819", + "maker": "Maker E", + "model": "Model 19819", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.80766874731288, + 20.470374766726696 + ] + }, + "properties": { + "id": "meter-19820", + "maker": "Maker J", + "model": "Model 19820", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.213958453485795, + 21.357726432237577 + ] + }, + "properties": { + "id": "meter-19821", + "maker": "Maker H", + "model": "Model 19821", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.37079941975969, + 26.935568089554515 + ] + }, + "properties": { + "id": "meter-19822", + "maker": "Maker D", + "model": "Model 19822", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.19175014659983, + 28.668454527233102 + ] + }, + "properties": { + "id": "meter-19823", + "maker": "Maker C", + "model": "Model 19823", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.800868878309416, + 24.68375654283352 + ] + }, + "properties": { + "id": "meter-19824", + "maker": "Maker J", + "model": "Model 19824", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.565968300780746, + 22.106062751968338 + ] + }, + "properties": { + "id": "meter-19825", + "maker": "Maker C", + "model": "Model 19825", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.619393878302404, + 20.20040280316448 + ] + }, + "properties": { + "id": "meter-19826", + "maker": "Maker C", + "model": "Model 19826", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.29868630884402, + 19.655308046465922 + ] + }, + "properties": { + "id": "meter-19827", + "maker": "Maker G", + "model": "Model 19827", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.46948913262393, + 19.71669038541326 + ] + }, + "properties": { + "id": "meter-19828", + "maker": "Maker D", + "model": "Model 19828", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.63758001851901, + 21.88476594354904 + ] + }, + "properties": { + "id": "meter-19829", + "maker": "Maker C", + "model": "Model 19829", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.39859450504977, + 21.920570795488747 + ] + }, + "properties": { + "id": "meter-19830", + "maker": "Maker I", + "model": "Model 19830", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.16616982383983, + 25.9365713295522 + ] + }, + "properties": { + "id": "meter-19831", + "maker": "Maker E", + "model": "Model 19831", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.20512444487952, + 25.803703706041667 + ] + }, + "properties": { + "id": "meter-19832", + "maker": "Maker I", + "model": "Model 19832", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.57746086377756, + 20.597236550026366 + ] + }, + "properties": { + "id": "meter-19833", + "maker": "Maker F", + "model": "Model 19833", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.44617156673188, + 22.429192709776576 + ] + }, + "properties": { + "id": "meter-19834", + "maker": "Maker B", + "model": "Model 19834", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.513892021713936, + 24.61673401511117 + ] + }, + "properties": { + "id": "meter-19835", + "maker": "Maker C", + "model": "Model 19835", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.72476201311737, + 20.100595653917143 + ] + }, + "properties": { + "id": "meter-19836", + "maker": "Maker A", + "model": "Model 19836", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.09294029390421, + 27.110649525619344 + ] + }, + "properties": { + "id": "meter-19837", + "maker": "Maker I", + "model": "Model 19837", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.88480639206201, + 26.12939267635376 + ] + }, + "properties": { + "id": "meter-19838", + "maker": "Maker E", + "model": "Model 19838", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.30769970732321, + 18.45222492870969 + ] + }, + "properties": { + "id": "meter-19839", + "maker": "Maker D", + "model": "Model 19839", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.97216829434198, + 28.582812000455277 + ] + }, + "properties": { + "id": "meter-19840", + "maker": "Maker D", + "model": "Model 19840", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.271085211304936, + 24.13878252790356 + ] + }, + "properties": { + "id": "meter-19841", + "maker": "Maker E", + "model": "Model 19841", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.398104205207595, + 25.120092167665817 + ] + }, + "properties": { + "id": "meter-19842", + "maker": "Maker H", + "model": "Model 19842", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.805326714116056, + 21.337432046384826 + ] + }, + "properties": { + "id": "meter-19843", + "maker": "Maker B", + "model": "Model 19843", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.08057484966465, + 29.63036628975013 + ] + }, + "properties": { + "id": "meter-19844", + "maker": "Maker E", + "model": "Model 19844", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.10462120670765, + 21.07694767531381 + ] + }, + "properties": { + "id": "meter-19845", + "maker": "Maker A", + "model": "Model 19845", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.200879376221074, + 22.72691247625862 + ] + }, + "properties": { + "id": "meter-19846", + "maker": "Maker F", + "model": "Model 19846", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.380267982591754, + 25.2395515538784 + ] + }, + "properties": { + "id": "meter-19847", + "maker": "Maker C", + "model": "Model 19847", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.14948950043305, + 25.30066769431655 + ] + }, + "properties": { + "id": "meter-19848", + "maker": "Maker E", + "model": "Model 19848", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.933163236276286, + 23.470390715250307 + ] + }, + "properties": { + "id": "meter-19849", + "maker": "Maker C", + "model": "Model 19849", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.752260066143975, + 22.3865079177956 + ] + }, + "properties": { + "id": "meter-19850", + "maker": "Maker I", + "model": "Model 19850", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.72972489887279, + 21.587612169329905 + ] + }, + "properties": { + "id": "meter-19851", + "maker": "Maker I", + "model": "Model 19851", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.48645942215546, + 21.91547112503671 + ] + }, + "properties": { + "id": "meter-19852", + "maker": "Maker I", + "model": "Model 19852", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.063495939207804, + 27.18414185558424 + ] + }, + "properties": { + "id": "meter-19853", + "maker": "Maker I", + "model": "Model 19853", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.788163089009316, + 21.77072794775485 + ] + }, + "properties": { + "id": "meter-19854", + "maker": "Maker G", + "model": "Model 19854", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.483019661527436, + 25.258502312904596 + ] + }, + "properties": { + "id": "meter-19855", + "maker": "Maker B", + "model": "Model 19855", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.06991850301005, + 28.93210177934796 + ] + }, + "properties": { + "id": "meter-19856", + "maker": "Maker I", + "model": "Model 19856", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.40199943209811, + 27.38179211127771 + ] + }, + "properties": { + "id": "meter-19857", + "maker": "Maker J", + "model": "Model 19857", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.48599367380065, + 29.739349273438783 + ] + }, + "properties": { + "id": "meter-19858", + "maker": "Maker B", + "model": "Model 19858", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.60054434879444, + 24.40090247439067 + ] + }, + "properties": { + "id": "meter-19859", + "maker": "Maker D", + "model": "Model 19859", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.23490913745275, + 23.264196093831153 + ] + }, + "properties": { + "id": "meter-19860", + "maker": "Maker H", + "model": "Model 19860", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.48802644787408, + 21.581870390245548 + ] + }, + "properties": { + "id": "meter-19861", + "maker": "Maker J", + "model": "Model 19861", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.84549754866153, + 20.990106435113713 + ] + }, + "properties": { + "id": "meter-19862", + "maker": "Maker J", + "model": "Model 19862", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.473946714885784, + 20.853246724187496 + ] + }, + "properties": { + "id": "meter-19863", + "maker": "Maker H", + "model": "Model 19863", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.42518488900461, + 30.461662013847803 + ] + }, + "properties": { + "id": "meter-19864", + "maker": "Maker G", + "model": "Model 19864", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.85329459497035, + 20.832105739623405 + ] + }, + "properties": { + "id": "meter-19865", + "maker": "Maker E", + "model": "Model 19865", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.470785023300984, + 23.924842734833998 + ] + }, + "properties": { + "id": "meter-19866", + "maker": "Maker H", + "model": "Model 19866", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.1036578128229, + 17.80192130471988 + ] + }, + "properties": { + "id": "meter-19867", + "maker": "Maker E", + "model": "Model 19867", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.607893016766724, + 27.722019652830653 + ] + }, + "properties": { + "id": "meter-19868", + "maker": "Maker J", + "model": "Model 19868", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.137695712178726, + 25.015770944200533 + ] + }, + "properties": { + "id": "meter-19869", + "maker": "Maker A", + "model": "Model 19869", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.41878277712852, + 21.261310334517393 + ] + }, + "properties": { + "id": "meter-19870", + "maker": "Maker G", + "model": "Model 19870", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.401247139997054, + 22.17446615991809 + ] + }, + "properties": { + "id": "meter-19871", + "maker": "Maker H", + "model": "Model 19871", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.33052068891666, + 23.44857187376929 + ] + }, + "properties": { + "id": "meter-19872", + "maker": "Maker J", + "model": "Model 19872", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.851144743428414, + 21.122421577012467 + ] + }, + "properties": { + "id": "meter-19873", + "maker": "Maker J", + "model": "Model 19873", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0333302170661, + 28.71235210603908 + ] + }, + "properties": { + "id": "meter-19874", + "maker": "Maker A", + "model": "Model 19874", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.4083836082765, + 25.919904719133672 + ] + }, + "properties": { + "id": "meter-19875", + "maker": "Maker B", + "model": "Model 19875", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.966641238078, + 20.73451604198059 + ] + }, + "properties": { + "id": "meter-19876", + "maker": "Maker D", + "model": "Model 19876", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.89066638046978, + 24.114627877934215 + ] + }, + "properties": { + "id": "meter-19877", + "maker": "Maker B", + "model": "Model 19877", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.34340644818035, + 25.807417158840835 + ] + }, + "properties": { + "id": "meter-19878", + "maker": "Maker A", + "model": "Model 19878", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.20396471803333, + 28.547982289833108 + ] + }, + "properties": { + "id": "meter-19879", + "maker": "Maker A", + "model": "Model 19879", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.991353410783844, + 17.44920485714818 + ] + }, + "properties": { + "id": "meter-19880", + "maker": "Maker H", + "model": "Model 19880", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.54886143267116, + 19.058820531129477 + ] + }, + "properties": { + "id": "meter-19881", + "maker": "Maker C", + "model": "Model 19881", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.96161875097097, + 21.709983280753775 + ] + }, + "properties": { + "id": "meter-19882", + "maker": "Maker H", + "model": "Model 19882", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.37197533206103, + 19.123844736036563 + ] + }, + "properties": { + "id": "meter-19883", + "maker": "Maker D", + "model": "Model 19883", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.795669632311025, + 20.239412119122818 + ] + }, + "properties": { + "id": "meter-19884", + "maker": "Maker J", + "model": "Model 19884", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.13333067072483, + 22.132222078343926 + ] + }, + "properties": { + "id": "meter-19885", + "maker": "Maker F", + "model": "Model 19885", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.472867546077026, + 21.43421863123857 + ] + }, + "properties": { + "id": "meter-19886", + "maker": "Maker A", + "model": "Model 19886", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.33542891762028, + 20.63315681700833 + ] + }, + "properties": { + "id": "meter-19887", + "maker": "Maker A", + "model": "Model 19887", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.68129761966864, + 23.750887301275966 + ] + }, + "properties": { + "id": "meter-19888", + "maker": "Maker I", + "model": "Model 19888", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.98705365678049, + 21.825437077852083 + ] + }, + "properties": { + "id": "meter-19889", + "maker": "Maker D", + "model": "Model 19889", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.00306505498658, + 26.70674761120847 + ] + }, + "properties": { + "id": "meter-19890", + "maker": "Maker J", + "model": "Model 19890", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.48202270061966, + 26.985887166359426 + ] + }, + "properties": { + "id": "meter-19891", + "maker": "Maker H", + "model": "Model 19891", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.01584495458116, + 22.373179127957588 + ] + }, + "properties": { + "id": "meter-19892", + "maker": "Maker D", + "model": "Model 19892", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.267816731981235, + 24.93094827202588 + ] + }, + "properties": { + "id": "meter-19893", + "maker": "Maker J", + "model": "Model 19893", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.90510563094304, + 27.751448859362338 + ] + }, + "properties": { + "id": "meter-19894", + "maker": "Maker I", + "model": "Model 19894", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.758028783648, + 17.688772458057073 + ] + }, + "properties": { + "id": "meter-19895", + "maker": "Maker I", + "model": "Model 19895", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.64717894516588, + 28.218195034692354 + ] + }, + "properties": { + "id": "meter-19896", + "maker": "Maker H", + "model": "Model 19896", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.612982110596995, + 27.098273038510442 + ] + }, + "properties": { + "id": "meter-19897", + "maker": "Maker B", + "model": "Model 19897", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.62913684159291, + 25.795151234566305 + ] + }, + "properties": { + "id": "meter-19898", + "maker": "Maker I", + "model": "Model 19898", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.670436015159765, + 25.84813702012358 + ] + }, + "properties": { + "id": "meter-19899", + "maker": "Maker A", + "model": "Model 19899", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.1906336817895, + 27.67858873597338 + ] + }, + "properties": { + "id": "meter-19900", + "maker": "Maker E", + "model": "Model 19900", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.132936956804826, + 26.669603672334844 + ] + }, + "properties": { + "id": "meter-19901", + "maker": "Maker G", + "model": "Model 19901", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.28760766372406, + 27.214168192827053 + ] + }, + "properties": { + "id": "meter-19902", + "maker": "Maker J", + "model": "Model 19902", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.034955055616464, + 19.84586860887198 + ] + }, + "properties": { + "id": "meter-19903", + "maker": "Maker I", + "model": "Model 19903", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.18064339424238, + 28.63064853809933 + ] + }, + "properties": { + "id": "meter-19904", + "maker": "Maker H", + "model": "Model 19904", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.283938791635414, + 28.279329219211103 + ] + }, + "properties": { + "id": "meter-19905", + "maker": "Maker C", + "model": "Model 19905", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.33881562954207, + 24.902685919372804 + ] + }, + "properties": { + "id": "meter-19906", + "maker": "Maker A", + "model": "Model 19906", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.638724140123244, + 30.5904029569678 + ] + }, + "properties": { + "id": "meter-19907", + "maker": "Maker H", + "model": "Model 19907", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.28364136200737, + 21.621283553228096 + ] + }, + "properties": { + "id": "meter-19908", + "maker": "Maker D", + "model": "Model 19908", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.89582056544381, + 19.92539906929126 + ] + }, + "properties": { + "id": "meter-19909", + "maker": "Maker I", + "model": "Model 19909", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.39437472490764, + 23.008699249830094 + ] + }, + "properties": { + "id": "meter-19910", + "maker": "Maker G", + "model": "Model 19910", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.390782226658175, + 22.097578542967895 + ] + }, + "properties": { + "id": "meter-19911", + "maker": "Maker A", + "model": "Model 19911", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.29663268018781, + 21.316040454958944 + ] + }, + "properties": { + "id": "meter-19912", + "maker": "Maker J", + "model": "Model 19912", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.24551591750358, + 28.802124367518672 + ] + }, + "properties": { + "id": "meter-19913", + "maker": "Maker E", + "model": "Model 19913", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.91079132995186, + 29.64968487846112 + ] + }, + "properties": { + "id": "meter-19914", + "maker": "Maker G", + "model": "Model 19914", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.08644185173502, + 24.13582470295512 + ] + }, + "properties": { + "id": "meter-19915", + "maker": "Maker A", + "model": "Model 19915", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.19064462620739, + 19.856297857746824 + ] + }, + "properties": { + "id": "meter-19916", + "maker": "Maker G", + "model": "Model 19916", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.00099735291535, + 20.133768280385585 + ] + }, + "properties": { + "id": "meter-19917", + "maker": "Maker H", + "model": "Model 19917", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.026115141436165, + 20.706289305032403 + ] + }, + "properties": { + "id": "meter-19918", + "maker": "Maker B", + "model": "Model 19918", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.79891038788966, + 28.773120708209724 + ] + }, + "properties": { + "id": "meter-19919", + "maker": "Maker F", + "model": "Model 19919", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.497327478547305, + 20.199477034595773 + ] + }, + "properties": { + "id": "meter-19920", + "maker": "Maker F", + "model": "Model 19920", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.57386076847268, + 29.608727336781357 + ] + }, + "properties": { + "id": "meter-19921", + "maker": "Maker A", + "model": "Model 19921", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.363987455151474, + 24.6950971272472 + ] + }, + "properties": { + "id": "meter-19922", + "maker": "Maker I", + "model": "Model 19922", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.49814292722553, + 23.403462691968045 + ] + }, + "properties": { + "id": "meter-19923", + "maker": "Maker D", + "model": "Model 19923", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.31456264008925, + 23.500168563196766 + ] + }, + "properties": { + "id": "meter-19924", + "maker": "Maker G", + "model": "Model 19924", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.14246211992893, + 27.129361242813495 + ] + }, + "properties": { + "id": "meter-19925", + "maker": "Maker B", + "model": "Model 19925", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.198004763850754, + 24.26972391877841 + ] + }, + "properties": { + "id": "meter-19926", + "maker": "Maker B", + "model": "Model 19926", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.725907859706965, + 30.250788237531694 + ] + }, + "properties": { + "id": "meter-19927", + "maker": "Maker G", + "model": "Model 19927", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.75706790610742, + 21.45308735505735 + ] + }, + "properties": { + "id": "meter-19928", + "maker": "Maker I", + "model": "Model 19928", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.70028267763939, + 17.784147587478163 + ] + }, + "properties": { + "id": "meter-19929", + "maker": "Maker H", + "model": "Model 19929", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.388384435270055, + 20.177598665248752 + ] + }, + "properties": { + "id": "meter-19930", + "maker": "Maker D", + "model": "Model 19930", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.37523887858663, + 28.349573439191545 + ] + }, + "properties": { + "id": "meter-19931", + "maker": "Maker J", + "model": "Model 19931", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.47020096548813, + 25.006109059466414 + ] + }, + "properties": { + "id": "meter-19932", + "maker": "Maker H", + "model": "Model 19932", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.3776460367608, + 26.179813359717173 + ] + }, + "properties": { + "id": "meter-19933", + "maker": "Maker H", + "model": "Model 19933", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.4225208301174, + 22.136947511004276 + ] + }, + "properties": { + "id": "meter-19934", + "maker": "Maker E", + "model": "Model 19934", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.98639199703544, + 19.773467762383014 + ] + }, + "properties": { + "id": "meter-19935", + "maker": "Maker D", + "model": "Model 19935", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.813984494223305, + 23.20977116473282 + ] + }, + "properties": { + "id": "meter-19936", + "maker": "Maker I", + "model": "Model 19936", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.48082196069011, + 25.719729198594038 + ] + }, + "properties": { + "id": "meter-19937", + "maker": "Maker C", + "model": "Model 19937", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.4341420007579, + 22.265600864408427 + ] + }, + "properties": { + "id": "meter-19938", + "maker": "Maker F", + "model": "Model 19938", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.86002077591588, + 24.254541291739997 + ] + }, + "properties": { + "id": "meter-19939", + "maker": "Maker J", + "model": "Model 19939", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.45865041571773, + 27.35794420155252 + ] + }, + "properties": { + "id": "meter-19940", + "maker": "Maker D", + "model": "Model 19940", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.17090268411105, + 22.86889068004917 + ] + }, + "properties": { + "id": "meter-19941", + "maker": "Maker H", + "model": "Model 19941", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.07485504416404, + 24.11501521763408 + ] + }, + "properties": { + "id": "meter-19942", + "maker": "Maker E", + "model": "Model 19942", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.95485053621056, + 24.38778864491725 + ] + }, + "properties": { + "id": "meter-19943", + "maker": "Maker F", + "model": "Model 19943", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.08115889775444, + 27.021083826766805 + ] + }, + "properties": { + "id": "meter-19944", + "maker": "Maker B", + "model": "Model 19944", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.22518322406151, + 19.962092764741207 + ] + }, + "properties": { + "id": "meter-19945", + "maker": "Maker C", + "model": "Model 19945", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.48436769633945, + 21.619993955728624 + ] + }, + "properties": { + "id": "meter-19946", + "maker": "Maker I", + "model": "Model 19946", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.63893690058343, + 19.595431044221428 + ] + }, + "properties": { + "id": "meter-19947", + "maker": "Maker G", + "model": "Model 19947", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.35964828903666, + 28.38433073071939 + ] + }, + "properties": { + "id": "meter-19948", + "maker": "Maker G", + "model": "Model 19948", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.370709293240886, + 26.185280778269593 + ] + }, + "properties": { + "id": "meter-19949", + "maker": "Maker C", + "model": "Model 19949", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.420802040834076, + 21.54500107406311 + ] + }, + "properties": { + "id": "meter-19950", + "maker": "Maker D", + "model": "Model 19950", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.14495662525728, + 24.069259488171923 + ] + }, + "properties": { + "id": "meter-19951", + "maker": "Maker G", + "model": "Model 19951", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04664546796983, + 28.982589978552138 + ] + }, + "properties": { + "id": "meter-19952", + "maker": "Maker D", + "model": "Model 19952", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.03524603481053, + 26.967602427310045 + ] + }, + "properties": { + "id": "meter-19953", + "maker": "Maker A", + "model": "Model 19953", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 47.69656332489383, + 24.62756603984853 + ] + }, + "properties": { + "id": "meter-19954", + "maker": "Maker G", + "model": "Model 19954", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.33453452726551, + 20.249635128294532 + ] + }, + "properties": { + "id": "meter-19955", + "maker": "Maker H", + "model": "Model 19955", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.63419880873463, + 18.40342729813366 + ] + }, + "properties": { + "id": "meter-19956", + "maker": "Maker B", + "model": "Model 19956", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.13584079102818, + 28.222288324984632 + ] + }, + "properties": { + "id": "meter-19957", + "maker": "Maker E", + "model": "Model 19957", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.55946990745101, + 25.431656168348475 + ] + }, + "properties": { + "id": "meter-19958", + "maker": "Maker F", + "model": "Model 19958", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.320786977036946, + 18.110414271465633 + ] + }, + "properties": { + "id": "meter-19959", + "maker": "Maker J", + "model": "Model 19959", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.324677802058176, + 21.490165487066946 + ] + }, + "properties": { + "id": "meter-19960", + "maker": "Maker E", + "model": "Model 19960", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.58715027914933, + 26.270796384606804 + ] + }, + "properties": { + "id": "meter-19961", + "maker": "Maker G", + "model": "Model 19961", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.951337100279204, + 22.03341501619725 + ] + }, + "properties": { + "id": "meter-19962", + "maker": "Maker J", + "model": "Model 19962", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.548456665279325, + 28.35665563901329 + ] + }, + "properties": { + "id": "meter-19963", + "maker": "Maker B", + "model": "Model 19963", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.218359849589234, + 23.369560598729162 + ] + }, + "properties": { + "id": "meter-19964", + "maker": "Maker E", + "model": "Model 19964", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.23944250551948, + 23.974713456581664 + ] + }, + "properties": { + "id": "meter-19965", + "maker": "Maker C", + "model": "Model 19965", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.333306238606006, + 19.620522727918555 + ] + }, + "properties": { + "id": "meter-19966", + "maker": "Maker J", + "model": "Model 19966", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.50818570575851, + 17.61106029771216 + ] + }, + "properties": { + "id": "meter-19967", + "maker": "Maker J", + "model": "Model 19967", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.634211695167814, + 26.413100590009424 + ] + }, + "properties": { + "id": "meter-19968", + "maker": "Maker J", + "model": "Model 19968", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.66334744078469, + 18.52760638195929 + ] + }, + "properties": { + "id": "meter-19969", + "maker": "Maker F", + "model": "Model 19969", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.04423198631021, + 18.797120538926876 + ] + }, + "properties": { + "id": "meter-19970", + "maker": "Maker A", + "model": "Model 19970", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 53.731191816383884, + 21.475415353171567 + ] + }, + "properties": { + "id": "meter-19971", + "maker": "Maker E", + "model": "Model 19971", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.27132573296158, + 24.13993951331418 + ] + }, + "properties": { + "id": "meter-19972", + "maker": "Maker H", + "model": "Model 19972", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.782043862336174, + 20.322705041350883 + ] + }, + "properties": { + "id": "meter-19973", + "maker": "Maker J", + "model": "Model 19973", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.112921999264735, + 25.42696735669336 + ] + }, + "properties": { + "id": "meter-19974", + "maker": "Maker D", + "model": "Model 19974", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.088506226034895, + 19.84562658309747 + ] + }, + "properties": { + "id": "meter-19975", + "maker": "Maker C", + "model": "Model 19975", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.527989058667174, + 21.116770905989682 + ] + }, + "properties": { + "id": "meter-19976", + "maker": "Maker A", + "model": "Model 19976", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 54.15073505218615, + 19.885049770909646 + ] + }, + "properties": { + "id": "meter-19977", + "maker": "Maker E", + "model": "Model 19977", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.64083952361878, + 22.519456156422066 + ] + }, + "properties": { + "id": "meter-19978", + "maker": "Maker B", + "model": "Model 19978", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.79927955423361, + 22.674589154819657 + ] + }, + "properties": { + "id": "meter-19979", + "maker": "Maker A", + "model": "Model 19979", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.870967906442765, + 26.383946169699257 + ] + }, + "properties": { + "id": "meter-19980", + "maker": "Maker D", + "model": "Model 19980", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.55946350977625, + 31.38840203307661 + ] + }, + "properties": { + "id": "meter-19981", + "maker": "Maker J", + "model": "Model 19981", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 49.71083970674239, + 24.474202740352776 + ] + }, + "properties": { + "id": "meter-19982", + "maker": "Maker G", + "model": "Model 19982", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.790818699192954, + 18.25912716558242 + ] + }, + "properties": { + "id": "meter-19983", + "maker": "Maker A", + "model": "Model 19983", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.90078716208701, + 28.71197353256247 + ] + }, + "properties": { + "id": "meter-19984", + "maker": "Maker D", + "model": "Model 19984", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.426571528366416, + 23.47910378926001 + ] + }, + "properties": { + "id": "meter-19985", + "maker": "Maker H", + "model": "Model 19985", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 44.85353422394541, + 18.77003957189567 + ] + }, + "properties": { + "id": "meter-19986", + "maker": "Maker A", + "model": "Model 19986", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 41.26391201157392, + 26.66598634336112 + ] + }, + "properties": { + "id": "meter-19987", + "maker": "Maker J", + "model": "Model 19987", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.304004538116246, + 31.524390955731036 + ] + }, + "properties": { + "id": "meter-19988", + "maker": "Maker B", + "model": "Model 19988", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 46.19146576690649, + 23.260285589080702 + ] + }, + "properties": { + "id": "meter-19989", + "maker": "Maker A", + "model": "Model 19989", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.773786008580686, + 29.228739747741827 + ] + }, + "properties": { + "id": "meter-19990", + "maker": "Maker C", + "model": "Model 19990", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 50.85823196188656, + 21.384909686879524 + ] + }, + "properties": { + "id": "meter-19991", + "maker": "Maker D", + "model": "Model 19991", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.6442808272627, + 25.048763543189978 + ] + }, + "properties": { + "id": "meter-19992", + "maker": "Maker B", + "model": "Model 19992", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.83756247031789, + 20.929009023237803 + ] + }, + "properties": { + "id": "meter-19993", + "maker": "Maker H", + "model": "Model 19993", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 37.64713148201824, + 25.780803528791715 + ] + }, + "properties": { + "id": "meter-19994", + "maker": "Maker I", + "model": "Model 19994", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 45.69121553028714, + 21.118607427508746 + ] + }, + "properties": { + "id": "meter-19995", + "maker": "Maker I", + "model": "Model 19995", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 43.05295612435675, + 22.83290342339709 + ] + }, + "properties": { + "id": "meter-19996", + "maker": "Maker E", + "model": "Model 19996", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 51.78851877437554, + 23.544006648102847 + ] + }, + "properties": { + "id": "meter-19997", + "maker": "Maker E", + "model": "Model 19997", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 42.754785679406375, + 17.518008115923905 + ] + }, + "properties": { + "id": "meter-19998", + "maker": "Maker H", + "model": "Model 19998", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.39589719209303, + 20.225484144811297 + ] + }, + "properties": { + "id": "meter-19999", + "maker": "Maker C", + "model": "Model 19999", + "timestamp": "2025-08-13T11:47:00Z" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.57092232150454, + 21.281010938954694 + ] + }, + "properties": { + "id": "meter-20000", + "maker": "Maker C", + "model": "Model 20000", + "timestamp": "2025-08-13T11:47:00Z" + } + } + ] +} \ No newline at end of file diff --git a/test-backend/tsconfig.json b/test-backend/tsconfig.json new file mode 100644 index 0000000..c3a42b9 --- /dev/null +++ b/test-backend/tsconfig.json @@ -0,0 +1,34 @@ +{ + "compilerOptions": { + "target": "ES2020", + "module": "ES2020", + "lib": [ + "ES2020" + ], + "outDir": "./dist", + "strict": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "moduleResolution": "node", + "declaration": true, + "declarationMap": true, + "sourceMap": true, + "baseUrl": "./", + "paths": { + "shared-types/*": [ + "../types/*" + ] + } + }, + "include": [ + "*.ts", + "../types/**/*.ts" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/tsconfig.app.json b/tsconfig.app.json new file mode 100644 index 0000000..195c4a8 --- /dev/null +++ b/tsconfig.app.json @@ -0,0 +1,23 @@ +{ + "extends": "@vue/tsconfig/tsconfig.dom.json", + "include": [ + "env.d.ts", + "src/**/*", + "src/**/*.vue", + "types/**/*.ts" + ], + "exclude": [ + "src/**/__tests__/*" + ], + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", + "paths": { + "@/*": [ + "./src/*" + ], + "shared-types/*": [ + "./types/*" + ] + } + } +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..66b5e57 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,11 @@ +{ + "files": [], + "references": [ + { + "path": "./tsconfig.node.json" + }, + { + "path": "./tsconfig.app.json" + } + ] +} diff --git a/tsconfig.node.json b/tsconfig.node.json new file mode 100644 index 0000000..a83dfc9 --- /dev/null +++ b/tsconfig.node.json @@ -0,0 +1,19 @@ +{ + "extends": "@tsconfig/node22/tsconfig.json", + "include": [ + "vite.config.*", + "vitest.config.*", + "cypress.config.*", + "nightwatch.conf.*", + "playwright.config.*", + "eslint.config.*" + ], + "compilerOptions": { + "noEmit": true, + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", + + "module": "ESNext", + "moduleResolution": "Bundler", + "types": ["node"] + } +} diff --git a/types/index.ts b/types/index.ts new file mode 100644 index 0000000..937eeab --- /dev/null +++ b/types/index.ts @@ -0,0 +1,6 @@ +/** + * Shared types index + * Re-exports all type definitions for easy importing + */ + +export * from "./meters" diff --git a/types/meters.ts b/types/meters.ts new file mode 100644 index 0000000..f7fd56f --- /dev/null +++ b/types/meters.ts @@ -0,0 +1,28 @@ +/** + * Shared type definitions for Saudi Meters data + * Used by both frontend and backend projects + */ + +export interface MeterProperties { + id: string + maker: string + model: string + timestamp: string +} + +export interface MeterFeature { + type: "Feature" + geometry: { + type: "Point" + coordinates: [number, number] + } + properties: MeterProperties +} + +export interface MetersCollection { + type: "FeatureCollection" + features: MeterFeature[] +} + +// Type alias for convenience +export type GeoJSONMeterData = MetersCollection diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 0000000..a82c903 --- /dev/null +++ b/vite.config.ts @@ -0,0 +1,16 @@ +import { fileURLToPath, URL } from "node:url" + +import { defineConfig } from "vite" +import vue from "@vitejs/plugin-vue" +import vueDevTools from "vite-plugin-vue-devtools" + +// https://vite.dev/config/ +export default defineConfig({ + plugins: [vue(), vueDevTools()], + resolve: { + alias: { + "@": fileURLToPath(new URL("./src", import.meta.url)), + "shared-types": fileURLToPath(new URL("./types", import.meta.url)), + }, + }, +})